You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let schema = Arc::new(Schema::new(vec![Field::new(
788
+
"map_array",
789
+
map_array.data_type().clone(),
790
+
true,
791
+
)]));
792
+
let rb = RecordBatch::try_new(Arc::clone(&schema),vec![Arc::new(map_array)])
793
+
.expect("Failed to created arrow Map array record batch");
794
+
(rb, schema)
795
+
}
796
+
797
+
// Custom Test Case for Sqlite <-> Arrow Decimal Roundtrip
798
+
// SQLite supports up to 16 precision for decimal numbers through REAL type, conforming to IEEE 754 Binary-64 format - https://www.sqlite.org/floatingpoint.html
0 commit comments