remove into int references (#3499)

This commit is contained in:
Darren Schroeder 2021-05-27 11:35:25 -05:00 committed by GitHub
parent 3a5ee1aed0
commit bcdf74562b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -240,17 +240,19 @@ pub fn action(
.to_vec(),
_ => {
return Err(ShellError::unimplemented(
"'into int' for non-numeric primitives",
"'into binary' for non-numeric primitives",
))
}
})
.into_value(&tag)),
UntaggedValue::Row(_) => Err(ShellError::labeled_error(
"specify column name to use, with 'into int COLUMN'",
"specify column name to use, with 'into binary COLUMN'",
"found table",
tag,
)),
_ => Err(ShellError::unimplemented("'into int' for unsupported type")),
_ => Err(ShellError::unimplemented(
"'into binary' for unsupported type",
)),
}
}