Skip to content

Commit 44ff0e5

Browse files
committed
fix
Signed-off-by: Joe Isaacs <joe.isaacs@live.co.uk>
1 parent 82c0236 commit 44ff0e5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • vortex-test/compat-gen/src/fixtures

vortex-test/compat-gen/src/fixtures/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use vortex_error::vortex_bail;
1616
use 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

0 commit comments

Comments
 (0)