Skip to content

Commit

Permalink
fix: export self::zstd (#4747)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse authored Sep 23, 2023
1 parent c24a6b2 commit b7a6eed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/storage/nippy-jar/src/compression/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use serde::{Deserialize, Serialize};
use std::io::Write;

mod zstd;
pub use zstd::{Zstd, ZstdState};
pub use self::zstd::{Zstd, ZstdState};

/// Trait that will compress column values
pub trait Compression: Serialize + for<'a> Deserialize<'a> {
Expand Down

0 comments on commit b7a6eed

Please sign in to comment.