Skip to content

Commit b5d73ab

Browse files
committed
update
1 parent e3ef12e commit b5d73ab

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

docker/thirdparties/docker-compose/hive/scripts/create_preinstalled_scripts/run83.hpl

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
create database if not exists test_varbinary;
2-
use test_varbinary;
3-
4-
SET hive.merge.mapfiles=false;
5-
SET hive.merge.mapredfiles=false;
1+
use `default`;
62

73
DROP TABLE IF EXISTS test_hive_binary_orc;
84
DROP TABLE IF EXISTS test_hive_binary_parquet;

regression-test/suites/external_table_p0/hive/test_hive_varbinary_type.groovy

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ suite("test_hive_varbinary_type","p0,external,tvf,hive,external_docker,external_
4747
);"""
4848

4949
// no mapping
50-
sql """ use `${catalog_name_no_mapping}`.`test_varbinary` """
50+
sql """ switch ${catalog_name_no_mapping}"""
51+
sql """ use `default` """
5152
qt_select1 """ select * from test_hive_binary_orc order by id; """
5253
qt_select2 """ select * from test_hive_binary_parquet order by id; """
5354
qt_select3 """ select * from test_hive_uuid_fixed_orc order by id; """
@@ -67,7 +68,8 @@ suite("test_hive_varbinary_type","p0,external,tvf,hive,external_docker,external_
6768
qt_select13 """ select * from test_hive_binary_parquet_write_no_mapping order by id; """
6869

6970
// with mapping
70-
sql """ use `${catalog_name_with_mapping}`.`test_varbinary` """
71+
sql """ switch ${catalog_name_with_mapping} """
72+
sql """ use `default` """
7173
qt_select14 """ select * from test_hive_binary_orc order by id; """
7274
qt_select15 """ select * from test_hive_binary_parquet order by id; """
7375
qt_select16 """ select * from test_hive_uuid_fixed_orc order by id; """

0 commit comments

Comments
 (0)