synchronize the db commands with file names (#6565)

This commit is contained in:
Darren Schroeder 2022-09-15 14:39:36 -05:00 committed by GitHub
parent 02e3f49bce
commit 10b9c65cb7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 12 additions and 12 deletions

View File

@ -1,45 +1,45 @@
// Conversions between value and sqlparser objects // Conversions between value and sqlparser objects
pub mod conversions; pub mod conversions;
mod alias;
mod and; mod and;
mod as_;
mod collect; mod collect;
mod describe; mod describe;
mod from; mod from_table;
mod group_by; mod group_by;
mod into_db;
mod into_sqlite; mod into_sqlite;
mod join; mod join;
mod limit; mod limit;
mod open; mod open_db;
mod or; mod or;
mod order_by; mod order_by;
mod query; mod query_db;
mod schema; mod schema;
mod select; mod select;
mod to_db;
mod where_; mod where_;
// Temporal module to create Query objects // Temporal module to create Query objects
mod testing; mod testing_db;
use testing::TestingDb; use testing_db::TestingDb;
use alias::AliasDb;
use and::AndDb; use and::AndDb;
use as_::AliasDb;
use collect::CollectDb; use collect::CollectDb;
pub(crate) use describe::DescribeDb; pub(crate) use describe::DescribeDb;
pub(crate) use from::FromDb; pub(crate) use from_table::FromDb;
use group_by::GroupByDb; use group_by::GroupByDb;
pub(crate) use into_db::ToDataBase;
use into_sqlite::IntoSqliteDb; use into_sqlite::IntoSqliteDb;
use join::JoinDb; use join::JoinDb;
use limit::LimitDb; use limit::LimitDb;
use nu_protocol::engine::StateWorkingSet; use nu_protocol::engine::StateWorkingSet;
use open::OpenDb; use open_db::OpenDb;
use or::OrDb; use or::OrDb;
use order_by::OrderByDb; use order_by::OrderByDb;
use query::QueryDb; use query_db::QueryDb;
use schema::SchemaDb; use schema::SchemaDb;
pub(crate) use select::ProjectionDb; pub(crate) use select::ProjectionDb;
pub(crate) use to_db::ToDataBase;
use where_::WhereDb; use where_::WhereDb;
pub fn add_commands_decls(working_set: &mut StateWorkingSet) { pub fn add_commands_decls(working_set: &mut StateWorkingSet) {