This is an automated email from the ASF dual-hosted git repository. joemcdonnell pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/impala.git
commit 74c192c969e6bf00761cc28b916af0da9c3e7111 Author: Mihaly Szjatinya <[email protected]> AuthorDate: Tue Dec 10 14:17:05 2024 +0100 IMPALA-13544: Addendum: fixed assert message. Change-Id: I77a0c8b0612845596f7c0e153453d3f45b5efb61 Reviewed-on: http://gerrit.cloudera.org:8080/22190 Reviewed-by: Gabor Kaszab <[email protected]> Tested-by: Impala Public Jenkins <[email protected]> --- fe/src/test/java/org/apache/impala/catalog/local/LocalCatalogTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fe/src/test/java/org/apache/impala/catalog/local/LocalCatalogTest.java b/fe/src/test/java/org/apache/impala/catalog/local/LocalCatalogTest.java index ef82a0b8d..f6baa7e86 100644 --- a/fe/src/test/java/org/apache/impala/catalog/local/LocalCatalogTest.java +++ b/fe/src/test/java/org/apache/impala/catalog/local/LocalCatalogTest.java @@ -413,7 +413,7 @@ public class LocalCatalogTest { // tblproperties substring separately Assert.assertTrue("Synchronized Kudu tables in Hive-3 must contain external.table" + ".purge table property", output.contains("'external.table.purge'='TRUE'")); - Assert.assertTrue("Found internal property TRANSLATED_TO_EXTERNAL in table " + Assert.assertTrue("Internal property TRANSLATED_TO_EXTERNAL not found in table " + "properties", output.contains("TRANSLATED_TO_EXTERNAL")); } else { // Assert on the generated SQL for the table, but not the table properties, since
