File tree Expand file tree Collapse file tree
vortex-test/compat-gen/src/fixtures Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ use vortex_error::vortex_bail;
1616use crate :: manifest:: FixtureEntry ;
1717
1818/// Top-level trait that the runner (compat-gen / compat-validate) interacts with.
19- pub trait Fixture : Send + Sync {
19+ pub trait Fixture {
2020 /// Filename for this fixture, e.g. "primitives.vortex" or "tpch_lineitem.regular.vortex".
2121 fn name ( & self ) -> & str ;
2222
@@ -28,7 +28,7 @@ pub trait Fixture: Send + Sync {
2828}
2929
3030/// A deterministic fixture that produces a single array written via flat layout (no compression).
31- pub trait FlatLayoutFixture : Send + Sync {
31+ pub trait FlatLayoutFixture {
3232 /// The filename for this fixture, e.g. "primitives.vortex".
3333 fn name ( & self ) -> & str ;
3434
@@ -53,7 +53,7 @@ pub trait FlatLayoutFixture: Send + Sync {
5353///
5454/// Each dataset fixture is written twice: once with the default (BtrBlocks) compressor
5555/// and once with compact encodings (Pco + Zstd).
56- pub trait DatasetFixture : Send + Sync {
56+ pub trait DatasetFixture {
5757 /// Base name without strategy suffix, e.g. "tpch_lineitem".
5858 fn name ( & self ) -> & str ;
5959
You can’t perform that action at this time.
0 commit comments