Skip to content

Commit

Permalink
Fix column name for protocol
Browse files Browse the repository at this point in the history
  • Loading branch information
OussamaSaoudi-db committed Sep 18, 2024
1 parent f6b8942 commit 3c627d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/src/snapshot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ impl LogSegment {
use Expression as Expr;
let filter = Some(Expr::or(
Expr::not(Expr::is_null(Expr::column("metaData.id"))),
Expr::not(Expr::is_null(Expr::column("protocol.min_reader_version"))),
Expr::not(Expr::is_null(Expr::column("protocol.minReaderVersion"))),
));
// read the same protocol and metadata schema for both commits and checkpoints
let data_batches = self.replay(engine, schema.clone(), schema, filter)?;
Expand Down

0 comments on commit 3c627d6

Please sign in to comment.