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


The following commit(s) were added to refs/heads/master by this push:
     new 43a4ff9c5 IMPALA-14648: Fix typo in ToSqlUtilsTest method name
43a4ff9c5 is described below

commit 43a4ff9c54e4fad933692c81cdcec5039ccdd81d
Author: woosuk.no <[email protected]>
AuthorDate: Mon Dec 29 17:54:32 2025 +0900

    IMPALA-14648: Fix typo in ToSqlUtilsTest method name
    
    tesToIdentSql -> testToIdentSql
    
    Change-Id: I8d13054ca92f4c7fde09c16ca1bb588ab0cf8c27
    Reviewed-on: http://gerrit.cloudera.org:8080/23809
    Reviewed-by: Impala Public Jenkins <[email protected]>
    Tested-by: Impala Public Jenkins <[email protected]>
---
 fe/src/test/java/org/apache/impala/analysis/ToSqlUtilsTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fe/src/test/java/org/apache/impala/analysis/ToSqlUtilsTest.java 
b/fe/src/test/java/org/apache/impala/analysis/ToSqlUtilsTest.java
index 093df28b5..ca8ca4f4b 100644
--- a/fe/src/test/java/org/apache/impala/analysis/ToSqlUtilsTest.java
+++ b/fe/src/test/java/org/apache/impala/analysis/ToSqlUtilsTest.java
@@ -230,7 +230,7 @@ public class ToSqlUtilsTest extends FrontendTestBase {
   }
 
   @Test
-  public void tesToIdentSql() {
+  public void testToIdentSql() {
     // Normal quoting
     assertEquals("`create`", ToSqlUtils.identSql("create"));
     assertEquals("foo", ToSqlUtils.identSql("foo"));

Reply via email to