Change select to match 0.44 (#4792)

This commit is contained in:
JT 2022-03-09 07:05:55 -05:00 committed by GitHub
parent fac086c826
commit e0fac7bc72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -147,9 +147,9 @@ fn select(
cols.push(path.into_string());
vals.push(value);
}
Err(error) => {
Err(_) => {
cols.push(path.into_string());
vals.push(Value::Error { error });
vals.push(Value::Nothing { span });
}
}
}