We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2801d63 commit a82b0b7Copy full SHA for a82b0b7
2 files changed
vortex-test/compat-gen/src/fixtures/arrays/synthetic/encodings/mod.rs
@@ -43,7 +43,8 @@ pub fn fixtures() -> Vec<Box<dyn FlatLayoutFixture>> {
43
Box::new(dict::DictFixture),
44
Box::new(fsst::FsstFixture),
45
Box::new(for_::FoRFixture),
46
- Box::new(patched::PatchedFixture),
+ // TODO(aduffy): add back once we stabilized Patched array
47
+ // Box::new(patched::PatchedFixture),
48
Box::new(pco::PcoFixture),
49
Box::new(rle::RleFixture),
50
Box::new(runend::RunEndFixture),
vortex-test/compat-gen/src/fixtures/arrays/synthetic/encodings/patched.rs
@@ -1,6 +1,8 @@
1
// SPDX-License-Identifier: Apache-2.0
2
// SPDX-FileCopyrightText: Copyright the Vortex contributors
3
4
+#![allow(dead_code)]
5
+
6
use vortex_array::ArrayId;
7
use vortex_array::ArrayRef;
8
use vortex_array::ExecutionCtx;
0 commit comments