From 878e08cfa4c8ad83ea42e6a99c809cbbccc7574d Mon Sep 17 00:00:00 2001 From: Reilly Wood <26268125+rgwood@users.noreply.github.com> Date: Thu, 9 Mar 2023 20:49:29 -0800 Subject: [PATCH] Fix the SQLite feature name in `version` (#8381) A tiny fix: make the naming of the `sqlite` feature consistent across both `Cargo.toml` and the `version` command's output. Previously `version` displayed it as `database`, a user was asking about that the other day. --- crates/nu-cmd-lang/src/core_commands/version.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-cmd-lang/src/core_commands/version.rs b/crates/nu-cmd-lang/src/core_commands/version.rs index b3fb618d0d..a4e77920ad 100644 --- a/crates/nu-cmd-lang/src/core_commands/version.rs +++ b/crates/nu-cmd-lang/src/core_commands/version.rs @@ -164,7 +164,7 @@ fn features_enabled() -> Vec { #[cfg(feature = "sqlite")] { - names.push("database".to_string()); + names.push("sqlite".to_string()); } #[cfg(feature = "dataframe")]