Fix order of I/O types in take until

This commit is contained in:
Devyn Cairns 2024-07-11 17:45:22 -07:00
parent acd4cb83e8
commit aa8686c889

View File

@ -12,11 +12,11 @@ impl Command for TakeUntil {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build(self.name()) Signature::build(self.name())
.input_output_types(vec![ .input_output_types(vec![
(Type::table(), Type::table()),
( (
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
), ),
(Type::table(), Type::table()),
]) ])
.required( .required(
"predicate", "predicate",