You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by jo...@apache.org on 2019/08/06 21:42:45 UTC

[impala] 01/02: IMPALA-8600: AnalyzerTest.TestAnalyzeTransactional() test fix

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 972104b6d6611ba0c1667671f9c25061fbe19b55
Author: Gabor Kaszab <ga...@cloudera.com>
AuthorDate: Tue Aug 6 14:02:51 2019 +0200

    IMPALA-8600: AnalyzerTest.TestAnalyzeTransactional() test fix
    
    Adjusts expected error message in
    AnalyzerTest.TestAnalyzeTransactional() after rewriting the message.
    
    Change-Id: I7f1ed5da8cd3511eae4db12fb5ce1235aee50fd6
    Reviewed-on: http://gerrit.cloudera.org:8080/14017
    Reviewed-by: Impala Public Jenkins <im...@cloudera.com>
    Tested-by: Impala Public Jenkins <im...@cloudera.com>
---
 fe/src/test/java/org/apache/impala/analysis/AnalyzerTest.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fe/src/test/java/org/apache/impala/analysis/AnalyzerTest.java b/fe/src/test/java/org/apache/impala/analysis/AnalyzerTest.java
index 909708c..57803f1 100644
--- a/fe/src/test/java/org/apache/impala/analysis/AnalyzerTest.java
+++ b/fe/src/test/java/org/apache/impala/analysis/AnalyzerTest.java
@@ -615,10 +615,10 @@ public class AnalyzerTest extends FrontendTestBase {
     AnalyzesOk("refresh functional.insert_only_transactional_table");
     AnalyzesOk("refresh functional_orc_def.full_transactional_table");
     AnalysisError("refresh functional.insert_only_transactional_table partition (j=1)",
-        "Refresh a partition is not allowed on transactional tables. Try to refresh " +
+        "Refreshing a partition is not allowed on transactional tables. Try to refresh " +
         "the whole table instead.");
     AnalysisError("refresh functional_orc_def.full_transactional_table partition (j=1)",
-        "Refresh a partition is not allowed on transactional tables. Try to refresh " +
+        "Refreshing a partition is not allowed on transactional tables. Try to refresh " +
         "the whole table instead.");
   }