File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -333,6 +333,8 @@ def test_write_schema_validation(self):
333
333
with self .assertRaises (ValueError ):
334
334
self .round_trip (data , Schema (schema ))
335
335
336
+
337
+
336
338
def test_date_types (self ):
337
339
schema , data = self ._create_data ()
338
340
self .round_trip (data , Schema (schema ))
@@ -415,6 +417,10 @@ def inner(i):
415
417
raw_data ["nested" ] = [inner (i ) for i in range (3 )]
416
418
return schema , Table .from_pydict (raw_data , ArrowSchema (schema ))
417
419
420
+ def test_write_nested_schema_validation (self ):
421
+ schema , data = self ._create_nested_data (nested_elem = True )
422
+ self .round_trip (data , Schema (schema ))
423
+
418
424
def test_parquet (self ):
419
425
schema , data = self ._create_nested_data ()
420
426
with tempfile .NamedTemporaryFile (suffix = ".parquet" ) as f :
You can’t perform that action at this time.
0 commit comments