Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/common/src/types/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,9 @@ pub const DEBEZIUM_UNAVAILABLE_VALUE: &str = "__debezium_unavailable_value";
// Pre-built JSON value for Debezium unavailable value to avoid rebuilding it every time
pub static DEBEZIUM_UNAVAILABLE_JSON: std::sync::LazyLock<JsonbVal> =
std::sync::LazyLock::new(|| {
let mut builder = jsonbb::Builder::default();
builder.add_string(DEBEZIUM_UNAVAILABLE_VALUE);
JsonbVal(builder.finish())
let mut b = jsonbb::Builder::default();
b.add_string(DEBEZIUM_UNAVAILABLE_VALUE);
JsonbVal(b.finish())
});

/// The set of datatypes that are supported in RisingWave.
Expand Down
Loading