@@ -856,7 +856,6 @@ statement ok
856856drop table tt;
857857
858858# Test for issue with NULL map values
859- # When a map column contains NULL values (not null keys/values within maps),
860859
861860statement ok
862861CREATE TABLE test_null_map AS VALUES
@@ -934,15 +933,15 @@ CREATE TABLE test_map_parquet_temp AS VALUES
934933 ('1', MAP {'a': 'ab'});
935934
936935statement ok
937- COPY test_map_parquet_temp TO '/tmp /test_map_parquet.parquet';
936+ COPY test_map_parquet_temp TO 'test_files/scratch /test_map_parquet.parquet' STORED AS PARQUET ;
938937
939938statement ok
940939DROP TABLE test_map_parquet_temp;
941940
942941statement ok
943942CREATE EXTERNAL TABLE test_map_parquet
944943STORED AS PARQUET
945- LOCATION '/tmp /test_map_parquet.parquet';
944+ LOCATION 'test_files/scratch /test_map_parquet.parquet';
946945
947946query T?
948947SELECT * FROM test_map_parquet;
@@ -955,15 +954,15 @@ CREATE TABLE test_map_parquet_null_temp AS VALUES
955954 ('1', NULL);
956955
957956statement ok
958- COPY test_map_parquet_null_temp TO '/tmp /test_map_parquet_null.parquet';
957+ COPY test_map_parquet_null_temp TO 'test_files/scratch /test_map_parquet_null.parquet' STORED AS PARQUET ;
959958
960959statement ok
961960DROP TABLE test_map_parquet_null_temp;
962961
963962statement ok
964963CREATE EXTERNAL TABLE test_map_parquet_null
965964STORED AS PARQUET
966- LOCATION '/tmp /test_map_parquet_null.parquet';
965+ LOCATION 'test_files/scratch /test_map_parquet_null.parquet';
967966
968967query T?
969968SELECT * FROM test_map_parquet_null;
@@ -978,15 +977,15 @@ CREATE TABLE test_map_parquet_mixed_temp AS VALUES
978977 ('3', MAP {'c': 'cd'});
979978
980979statement ok
981- COPY test_map_parquet_mixed_temp TO '/tmp /test_map_parquet_mixed.parquet';
980+ COPY test_map_parquet_mixed_temp TO 'test_files/scratch /test_map_parquet_mixed.parquet' STORED AS PARQUET ;
982981
983982statement ok
984983DROP TABLE test_map_parquet_mixed_temp;
985984
986985statement ok
987986CREATE EXTERNAL TABLE test_map_parquet_mixed
988987STORED AS PARQUET
989- LOCATION '/tmp /test_map_parquet_mixed.parquet';
988+ LOCATION 'test_files/scratch /test_map_parquet_mixed.parquet';
990989
991990query T?
992991SELECT * FROM test_map_parquet_mixed ORDER BY column1;
0 commit comments