diff --git a/crates/nu-command/tests/format_conversions/sqlite.rs b/crates/nu-command/tests/format_conversions/sqlite.rs index ac13675c29..de6ce8ccfa 100644 --- a/crates/nu-command/tests/format_conversions/sqlite.rs +++ b/crates/nu-command/tests/format_conversions/sqlite.rs @@ -18,3 +18,19 @@ fn table_to_sqlite_and_back_into_table() { assert_eq!(actual.out, "hello"); } + +#[cfg(feature = "sqlite")] +#[test] +fn table_to_sqlite_and_back_into_table_select_table() { + let actual = nu!( + cwd: "tests/fixtures/formats", pipeline( + r#" + open sample.db + | to sqlite + | from sqlite -t [strings] + | get table_names + "# + )); + + assert_eq!(actual.out, "strings"); +}