This is an automated email from the ASF dual-hosted git repository.

csringhofer pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git

commit f12bb87d421bd197ad27da9686a138db84a4bcc3
Author: Csaba Ringhofer <[email protected]>
AuthorDate: Thu Nov 20 21:27:45 2025 +0100

    IMPALA-14081: (addendum) add ';' to CREATE part in dataload
    
    The missing ';' can cause problems for the next created
    table.
    
    Change-Id: I719872de23941bf81289340ce246d25ee113223a
    Reviewed-on: http://gerrit.cloudera.org:8080/23704
    Reviewed-by: Daniel Vanko <[email protected]>
    Reviewed-by: Noemi Pap-Takacs <[email protected]>
    Tested-by: Csaba Ringhofer <[email protected]>
---
 testdata/datasets/functional/functional_schema_template.sql | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/testdata/datasets/functional/functional_schema_template.sql 
b/testdata/datasets/functional/functional_schema_template.sql
index b372fcce0..d23e03fe1 100644
--- a/testdata/datasets/functional/functional_schema_template.sql
+++ b/testdata/datasets/functional/functional_schema_template.sql
@@ -4834,7 +4834,7 @@ paimon_non_partitioned
 ---- CREATE
 CREATE EXTERNAL TABLE IF NOT EXISTS {db_name}{db_suffix}.{table_name}
 STORED AS PAIMON
-LOCATION 
'/test-warehouse/paimon_test/paimon_catalog/warehouse/functional.db/paimon_non_partitioned'
+LOCATION 
'/test-warehouse/paimon_test/paimon_catalog/warehouse/functional.db/paimon_non_partitioned';
 ---- DEPENDENT_LOAD
 `hadoop fs -mkdir -p 
/test-warehouse/paimon_test/paimon_catalog/warehouse/functional.db && \
 hadoop fs -put -f 
${IMPALA_HOME}//testdata/data/paimon_test/paimon_catalog/warehouse/functional.db/paimon_non_partitioned
 /test-warehouse/paimon_test/paimon_catalog/warehouse/functional.db

Reply via email to