File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff 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} ) ;
Original file line number Diff line number Diff line change @@ -30,7 +30,8 @@ fn like_pattern_str(value: &Expression) -> VortexResult<Option<String>> {
3030#[ allow( clippy:: cognitive_complexity) ]
3131pub 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
You can’t perform that action at this time.
0 commit comments