We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 053e1dd commit 2b5e32eCopy full SHA for 2b5e32e
1 file changed
vortex-duckdb/src/e2e_test/object_cache_test.rs
@@ -5,8 +5,10 @@
5
6
use std::ffi::CString;
7
8
+use vortex::dtype::DType;
9
use vortex::error::VortexResult;
10
use vortex::error::vortex_err;
11
+use vortex_array::stats::StatsSet;
12
13
use crate::cpp::DUCKDB_TYPE;
14
use crate::duckdb::BindInputRef;
@@ -112,6 +114,14 @@ impl TableFunction for TestTableFunction {
112
114
) -> VortexResult<u64> {
113
115
Ok(0)
116
}
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
+ }
125
126
127
use crate::duckdb::Database;
0 commit comments