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

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 });
}
}
}