feat: simple read write new json type values (#7175)

feat: basic json read and write

Signed-off-by: luofucong <luofc@foxmail.com>
This commit is contained in:
LFC
2025-11-27 20:40:35 +08:00
committed by GitHub
parent 4c07d2d5de
commit fdab75ce27
35 changed files with 1049 additions and 289 deletions

View File

@@ -118,6 +118,10 @@ impl Table {
self.table_info.meta.schema.clone()
}
pub fn schema_ref(&self) -> &SchemaRef {
&self.table_info.meta.schema
}
/// Get a reference to the table info.
pub fn table_info(&self) -> TableInfoRef {
self.table_info.clone()