From 5d8a735aafa7f5924e03ab9d3e16ccc8f608b57e Mon Sep 17 00:00:00 2001 From: PThorpe92 Date: Fri, 26 Sep 2025 18:06:09 -0400 Subject: [PATCH] fix clippy error --- core/schema.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/schema.rs b/core/schema.rs index b1aece65a..20ae6380e 100644 --- a/core/schema.rs +++ b/core/schema.rs @@ -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(())