Database commands (#5307)

* database commands

* db commands

* filesystem opens sqlite file

* clippy error

* corrected error in ci file

* removes matrix flag from ci

* flax matrix for clippy

* add conditional compile for tests

* add conditional compile for tests

* correct order of command

* correct error msg

* correct typo
This commit is contained in:
Fernando Herrera
2022-04-24 10:29:21 +01:00
committed by GitHub
parent c20ba95885
commit e94d13da1b
25 changed files with 845 additions and 223 deletions

View File

@ -1,6 +1,5 @@
mod conversions;
mod core_commands;
mod database;
mod date;
mod default_context;
mod deprecated;
@ -16,7 +15,6 @@ mod math;
mod network;
mod path;
mod platform;
mod query;
mod random;
mod shells;
mod strings;
@ -25,7 +23,6 @@ mod viewers;
pub use conversions::*;
pub use core_commands::*;
pub use database::*;
pub use date::*;
pub use default_context::*;
pub use deprecated::*;
@ -42,7 +39,6 @@ pub use math::*;
pub use network::*;
pub use path::*;
pub use platform::*;
pub use query::*;
pub use random::*;
pub use shells::*;
pub use strings::*;
@ -54,3 +50,9 @@ mod dataframe;
#[cfg(feature = "dataframe")]
pub use dataframe::*;
#[cfg(feature = "database")]
mod database;
#[cfg(feature = "database")]
pub use database::*;