You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by tl...@apache.org on 2021/03/04 09:49:27 UTC

[ignite] branch sql-calcite updated: IGNITE-14157 minor

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

tledkov pushed a commit to branch sql-calcite
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/sql-calcite by this push:
     new 8271bc0  IGNITE-14157 minor
8271bc0 is described below

commit 8271bc028418fc79ea3aa3fff7fe5f17debf836b
Author: tledkov <tl...@gridgain.com>
AuthorDate: Thu Mar 4 12:49:14 2021 +0300

    IGNITE-14157 minor
---
 .../internal/processors/query/calcite/MetadataIntegrationTest.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/MetadataIntegrationTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/MetadataIntegrationTest.java
index 26f4749..ab84800 100644
--- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/MetadataIntegrationTest.java
+++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/MetadataIntegrationTest.java
@@ -49,7 +49,7 @@ public class MetadataIntegrationTest extends AbstractBasicIntegrationTest {
             .columnNames("SUBQUERY").check();
 
         assertQuery("select salary*2, salary/2, salary+2, salary-2, mod(salary, 2)  from person")
-            .columnNames("SALARY * 2", "SALARY / 2", "SALARY + 2", "SALARY - 2",  "MOD(SALARY, 2)").check();
+            .columnNames("SALARY * 2", "SALARY / 2", "SALARY + 2", "SALARY - 2", "MOD(SALARY, 2)").check();
         assertQuery("select salary*2 as first, salary/2 as secOND from person").columnNames("FIRST", "SECOND").check();
 
         assertQuery("select trim(name) tr_name from person").columnNames("TR_NAME").check();