diff --git a/testdata/datasets/functional/functional_schema_template.sql b/testdata/datasets/functional/functional_schema_template.sql index 3f0bc62a9..2278f5fa3 100644 --- a/testdata/datasets/functional/functional_schema_template.sql +++ b/testdata/datasets/functional/functional_schema_template.sql @@ -1694,7 +1694,7 @@ functional ---- BASE_TABLE_NAME avro_unicode_nulls ---- CREATE_HIVE -create external table {db_name}{db_suffix}.{table_name} like {db_name}.liketbl stored as avro LOCATION '/test-warehouse/avro_null_char'; +create external table if not exists {db_name}{db_suffix}.{table_name} like {db_name}.liketbl stored as avro LOCATION '/test-warehouse/avro_null_char'; ---- LOAD `hdfs dfs -mkdir -p /test-warehouse/avro_null_char && \ hdfs dfs -put -f ${IMPALA_HOME}/testdata/avro_null_char/000000_0 /test-warehouse/avro_null_char/ diff --git a/testdata/datasets/tpcds/tpcds_schema_template.sql b/testdata/datasets/tpcds/tpcds_schema_template.sql index 64717d467..72a0f5d3a 100644 --- a/testdata/datasets/tpcds/tpcds_schema_template.sql +++ b/testdata/datasets/tpcds/tpcds_schema_template.sql @@ -463,8 +463,6 @@ WHERE 2452184 <= ss_sold_date_sk; ---- LOAD USE {db_name}; --- Disable auto.convert.join due to HIVE-5068 -set hive.auto.convert.join=false; set hive.exec.max.dynamic.partitions.pernode=10000; set hive.exec.max.dynamic.partitions=10000; set hive.exec.dynamic.partition.mode=nonstrict; @@ -499,8 +497,6 @@ distribute by ss_sold_date_sk; ---- LOAD_LOCAL USE {db_name}; --- Disable auto.convert.join due to HIVE-5068 -set hive.auto.convert.join=false; set hive.exec.max.dynamic.partitions.pernode=10000; set hive.exec.max.dynamic.partitions=10000; set hive.exec.dynamic.partition.mode=nonstrict;