forked from extern/nushell
make ++
append lists (#6766)
* make `++` append lists * fmt * fix for database
This commit is contained in:
@ -124,7 +124,8 @@ impl CustomValue for ExprDb {
|
||||
| Operator::ShiftLeft
|
||||
| Operator::ShiftRight
|
||||
| Operator::StartsWith
|
||||
| Operator::EndsWith => Err(ShellError::UnsupportedOperator(operator, op)),
|
||||
| Operator::EndsWith
|
||||
| Operator::Append => Err(ShellError::UnsupportedOperator(operator, op)),
|
||||
}?;
|
||||
|
||||
let expr = Expr::BinaryOp {
|
||||
|
Reference in New Issue
Block a user