We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bff4a2a commit 7e36243Copy full SHA for 7e36243
crates/iceberg/src/puffin/blob.rs
@@ -19,6 +19,8 @@ use std::collections::HashMap;
19
20
/// A serialized form of a "compact" Theta sketch produced by the Apache DataSketches library.
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";
24
25
/// The blob
26
#[derive(Debug, PartialEq, Clone)]
crates/iceberg/src/puffin/mod.rs
@@ -20,7 +20,7 @@
#![deny(missing_docs)]
mod blob;
-pub use blob::{Blob, APACHE_DATASKETCHES_THETA_V1};
+pub use blob::{Blob, APACHE_DATASKETCHES_THETA_V1, DELETION_VECTOR_V1};
mod compression;
pub use compression::CompressionCodec;
0 commit comments