This is an automated email from the ASF dual-hosted git repository.
amashenkov pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new a301884dd3 IGNITE-18625 Sql. Code cleanup. Unmute tests.
a301884dd3 is described below
commit a301884dd3f4ba856a1600801d9db5385b4be50c
Author: amashenkov <[email protected]>
AuthorDate: Wed Feb 1 19:17:11 2023 +0300
IGNITE-18625 Sql. Code cleanup. Unmute tests.
---
.../apache/ignite/internal/sql/engine/ItMixedQueriesTest.java | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git
a/modules/runner/src/integrationTest/java/org/apache/ignite/internal/sql/engine/ItMixedQueriesTest.java
b/modules/runner/src/integrationTest/java/org/apache/ignite/internal/sql/engine/ItMixedQueriesTest.java
index 3ae1c212ca..c991831b62 100644
---
a/modules/runner/src/integrationTest/java/org/apache/ignite/internal/sql/engine/ItMixedQueriesTest.java
+++
b/modules/runner/src/integrationTest/java/org/apache/ignite/internal/sql/engine/ItMixedQueriesTest.java
@@ -291,17 +291,17 @@ public class ItMixedQueriesTest extends
AbstractBasicIntegrationTest {
*/
@Test
public void testSelectWithOrdering() throws InterruptedException {
- sql("drop table if exists test_tbl", true);
- sql("create table test_tbl (k1 int primary key, c1 int)", true);
+ sql("drop table if exists test_tbl");
+ sql("create table test_tbl (k1 int primary key, c1 int)");
- sql("create index idx_asc on test_tbl (c1)", true);
- sql("create index idx_desc on test_tbl (c1 desc)", true);
+ sql("create index idx_asc on test_tbl (c1)");
+ sql("create index idx_desc on test_tbl (c1 desc)");
// FIXME: https://issues.apache.org/jira/browse/IGNITE-18203
waitForIndex("idx_asc");
waitForIndex("idx_desc");
- sql("insert into test_tbl values (1, 1), (2, 2), (3, 3), (4, null)",
true);
+ sql("insert into test_tbl values (1, 1), (2, 2), (3, 3), (4, null)");
assertQuery("select c1 from test_tbl ORDER BY c1")
.matches(containsIndexScan("PUBLIC", "TEST_TBL", "IDX_ASC"))