Skip to content

Commit da3d63d

Browse files
authored
chore: bump duckdb to 1.4.1 (#5041)
Signed-off-by: Alexander Droste <[email protected]>
1 parent 684ed94 commit da3d63d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

vortex-duckdb/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ static DUCKDB_VERSION: Lazy<String> = Lazy::new(|| {
1717
// This is to ensure that we don't implicitly build against a different DuckDB version during
1818
// an extension build which might lead to subtle ABI breaks, e.g. reordering fields in C++ structs.
1919
env::var("DUCKDB_VERSION")
20-
.unwrap_or_else(|_| "1.4.0".to_owned())
20+
.unwrap_or_else(|_| "1.4.1".to_owned())
2121
.trim_start_matches("v")
2222
.to_owned()
2323
});

vortex-duckdb/src/convert/expr.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ fn like_pattern_str(value: &Expression) -> VortexResult<Option<String>> {
3030
#[allow(clippy::cognitive_complexity)]
3131
pub fn try_from_bound_expression(value: &Expression) -> VortexResult<Option<ExprRef>> {
3232
let Some(value) = value.as_class() else {
33-
vortex_bail!("no expression class id {:?}", value.as_class_id())
33+
log::debug!("no expression class id {:?}", value.as_class_id());
34+
return Ok(None);
3435
};
3536
Ok(Some(match value {
3637
ExpressionClass::BoundColumnRef(col_ref) => col(col_ref

0 commit comments

Comments
 (0)