We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdf413a commit 0c487b4Copy full SHA for 0c487b4
1 file changed
src/transform/src/normalize_lets.rs
@@ -304,7 +304,7 @@ mod support {
304
{
305
if let Some(new_type) = types.get(i) {
306
// Assert that the column length has not changed.
307
- if !new_type.column_types.len() == typ.column_types.len() {
+ if new_type.column_types.len() != typ.column_types.len() {
308
Err(crate::TransformError::Internal(format!(
309
"column lengths do not match: {:?} v {:?}",
310
new_type.column_types, typ.column_types
0 commit comments