Database commands (#5343)

* dabase access commands

* select expression

* select using expressions

* cargo fmt
This commit is contained in:
Fernando Herrera
2022-04-27 11:52:31 +01:00
committed by GitHub
parent cd5199de31
commit 5c9fe85ec4
26 changed files with 745 additions and 154 deletions

View File

@ -545,6 +545,15 @@ Either make sure {0} is a string, or add a 'to_string' entry for it in ENV_CONVE
#[error("No file to be copied")]
NoFileToBeCopied(),
/// Error while trying to read a file
///
/// ## Resolution
///
/// The error will show the result from a file operation
#[error("Error trying to read file")]
#[diagnostic(code(nu::shell::error_reading_file), url(docsrs))]
ReadingFile(String, #[label("{0}")] Span),
/// A name was not found. Did you mean a different name?
///
/// ## Resolution