feat: mark str to-datetime as deprecated command (#4448)

This commit is contained in:
Justin Ma
2022-02-13 10:30:37 +08:00
committed by GitHub
parent c5e7bccee5
commit 560be6e73e
3 changed files with 39 additions and 0 deletions

View File

@ -1,6 +1,7 @@
mod insert;
mod nth;
mod pivot;
mod str_datetime;
mod str_decimal;
mod str_int;
mod unalias;
@ -8,6 +9,7 @@ mod unalias;
pub use insert::InsertDeprecated;
pub use nth::NthDeprecated;
pub use pivot::PivotDeprecated;
pub use str_datetime::StrDatetimeDeprecated;
pub use str_decimal::StrDecimalDeprecated;
pub use str_int::StrIntDeprecated;
pub use unalias::UnaliasDeprecated;