We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 591e85b commit 4662a2cCopy full SHA for 4662a2c
src/core/databend/util.rs
@@ -68,7 +68,7 @@ impl<'a> JsonbItem<'a> {
68
}
69
70
impl<'a> RawJsonb<'a> {
71
- pub(crate) fn jsonb_item_type(&self) -> Result<JsonbItemType> {
+ pub fn jsonb_item_type(&self) -> Result<JsonbItemType> {
72
let mut index = 0;
73
let (header_type, header_len) = self.read_header(index)?;
74
index += 4;
src/core/item.rs
@@ -23,7 +23,7 @@ use crate::RawJsonb;
23
24
/// The value type of JSONB data.
25
#[derive(Debug, Clone, Copy)]
26
-pub(crate) enum JsonbItemType {
+pub enum JsonbItemType {
27
/// The Null JSONB type.
28
Null,
29
/// The Boolean JSONB type.
0 commit comments