deprecated commands (#4405)

* deprecated commands

* deprecated insert command
This commit is contained in:
Fernando Herrera
2022-02-10 12:55:19 +00:00
committed by GitHub
parent 28947ff9a9
commit 5cf91cb30d
11 changed files with 257 additions and 0 deletions

View File

@ -0,0 +1,17 @@
mod insert;
mod nth;
mod pivot;
mod str_decimal;
mod str_int;
pub use insert::InsertDeprecated;
pub use nth::NthDeprecated;
pub use pivot::PivotDeprecated;
pub use str_decimal::StrDecimalDeprecated;
pub use str_int::StrIntDeprecated;
#[cfg(feature = "dataframe")]
mod dataframe;
#[cfg(feature = "dataframe")]
pub use dataframe::DataframeDeprecated;