File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
crates/iceberg/src/puffin Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ use std::collections::HashMap;
19
19
20
20
/// A serialized form of a "compact" Theta sketch produced by the Apache DataSketches library.
21
21
pub const APACHE_DATASKETCHES_THETA_V1 : & str = "apache-datasketches-theta-v1" ;
22
+ /// A serialized form of a deletion vector.
23
+ pub const DELETION_VECTOR_V1 : & str = "deletion-vector-v1" ;
22
24
23
25
/// The blob
24
26
#[ derive( Debug , PartialEq , Clone ) ]
Original file line number Diff line number Diff line change 20
20
#![ deny( missing_docs) ]
21
21
22
22
mod blob;
23
- pub use blob:: { Blob , APACHE_DATASKETCHES_THETA_V1 } ;
23
+ pub use blob:: { Blob , APACHE_DATASKETCHES_THETA_V1 , DELETION_VECTOR_V1 } ;
24
24
25
25
mod compression;
26
26
pub use compression:: CompressionCodec ;
You can’t perform that action at this time.
0 commit comments