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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 39 additions and 0 deletions

View File

@ -354,6 +354,7 @@ pub fn create_default_context(cwd: impl AsRef<Path>) -> EngineState {
bind_command! {
InsertDeprecated,
PivotDeprecated,
StrDatetimeDeprecated,
StrDecimalDeprecated,
StrIntDeprecated,
NthDeprecated,

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;

View File

@ -0,0 +1,36 @@
use nu_protocol::{
ast::Call,
engine::{Command, EngineState, Stack},
Category, PipelineData, Signature,
};
#[derive(Clone)]
pub struct StrDatetimeDeprecated;
impl Command for StrDatetimeDeprecated {
fn name(&self) -> &str {
"str to-datetime"
}
fn signature(&self) -> Signature {
Signature::build(self.name()).category(Category::Deprecated)
}
fn usage(&self) -> &str {
"Deprecated command"
}
fn run(
&self,
_engine_state: &EngineState,
_stack: &mut Stack,
call: &Call,
_input: PipelineData,
) -> Result<nu_protocol::PipelineData, nu_protocol::ShellError> {
Err(nu_protocol::ShellError::DeprecatedCommand(
self.name().to_string(),
"into datetime".to_string(),
call.head,
))
}
}