Skip to content

Commit

Permalink
feat: implement incremental query for COW tables (#236)
Browse files Browse the repository at this point in the history
  • Loading branch information
xushiyan authored Jan 8, 2025
1 parent d04b9ab commit a396f6c
Show file tree
Hide file tree
Showing 11 changed files with 902 additions and 248 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ datafusion-physical-expr = { version = "= 43.0.0" }

# serde
percent-encoding = { version = "2.3.1" }
serde = { version = "1.0.203", features = ["derive"] }
serde_json = { version = "1" }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }

# "stdlib"
thiserror = { version = "2.0.3" }
Expand Down
3 changes: 3 additions & 0 deletions crates/core/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ pub enum CoreError {
#[error("Config error: {0}")]
Config(#[from] ConfigError),

#[error("Commit metadata error: {0}")]
CommitMetadata(String),

#[error("Data type error: {0}")]
Schema(String),

Expand Down
Loading

0 comments on commit a396f6c

Please sign in to comment.