MCPcopy Create free account
hub / github.com/apache/paimon-rust / test_blob_table_schema

Function test_blob_table_schema

crates/paimon/src/table/table_write.rs:757–765  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

755 }
756
757 fn test_blob_table_schema() -> TableSchema {
758 let schema = Schema::builder()
759 .column("id", DataType::Int(IntType::new()))
760 .column("payload", DataType::Blob(BlobType::new()))
761 .option("data-evolution.enabled", "true")
762 .build()
763 .unwrap();
764 TableSchema::new(0, &schema)
765 }
766
767 async fn setup_dirs(file_io: &FileIO, table_path: &str) {
768 file_io

Callers 2

Calls 3

optionMethod · 0.80
columnMethod · 0.80
buildMethod · 0.45

Tested by

no test coverage detected