fix clippy error

This commit is contained in:
PThorpe92
2025-09-26 18:06:09 -04:00
parent abab04dac9
commit 5d8a735aaf

View File

@@ -2055,7 +2055,7 @@ mod tests {
let table = BTreeTable::from_sql(sql, 0)?;
let column = table.get_column("a").unwrap().1;
assert!(
!column,
!column.is_rowid_alias,
"column 'a´ shouldn't be a rowid alias because table has no rowid"
);
Ok(())