Skip to content

Commit 2b5e32e

Browse files
committed
fix
1 parent 053e1dd commit 2b5e32e

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

vortex-duckdb/src/e2e_test/object_cache_test.rs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@
55
66
use std::ffi::CString;
77

8+
use vortex::dtype::DType;
89
use vortex::error::VortexResult;
910
use vortex::error::vortex_err;
11+
use vortex_array::stats::StatsSet;
1012

1113
use crate::cpp::DUCKDB_TYPE;
1214
use crate::duckdb::BindInputRef;
@@ -112,6 +114,14 @@ impl TableFunction for TestTableFunction {
112114
) -> VortexResult<u64> {
113115
Ok(0)
114116
}
117+
118+
fn statistics(
119+
_client_context: &ClientContextRef,
120+
_bind_data: &Self::BindData,
121+
_column_index: usize,
122+
) -> crate::duckdb::ColumnStatistics {
123+
crate::duckdb::ColumnStatistics::new(&StatsSet::default(), DType::Null)
124+
}
115125
}
116126

117127
use crate::duckdb::Database;

0 commit comments

Comments
 (0)