You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by al...@apache.org on 2022/10/21 12:44:54 UTC

[ignite] branch master updated: IGNITE-15609 SQL Calcite: Remove erroneous test with WHERE clause - Fixes #10340.

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

alexpl pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new d29eff65d1f IGNITE-15609 SQL Calcite: Remove erroneous test with WHERE clause - Fixes #10340.
d29eff65d1f is described below

commit d29eff65d1fb1dbe8b1aadd3dc97b5cab3239123
Author: vladsz83 <vl...@gmail.com>
AuthorDate: Fri Oct 21 15:44:05 2022 +0300

    IGNITE-15609 SQL Calcite: Remove erroneous test with WHERE clause - Fixes #10340.
    
    Signed-off-by: Aleksey Plekhanov <pl...@gmail.com>
---
 .../scalar/test_tpcds_correlated_subquery.test_ignore    | 16 ----------------
 1 file changed, 16 deletions(-)

diff --git a/modules/calcite/src/test/sql/subquery/scalar/test_tpcds_correlated_subquery.test_ignore b/modules/calcite/src/test/sql/subquery/scalar/test_tpcds_correlated_subquery.test_ignore
deleted file mode 100644
index 0e96ef37ccb..00000000000
--- a/modules/calcite/src/test/sql/subquery/scalar/test_tpcds_correlated_subquery.test_ignore
+++ /dev/null
@@ -1,16 +0,0 @@
-# name: test/sql/subquery/scalar/test_tpcds_correlated_subquery.test
-# description: Test correlated subqueries based on TPC-DS
-# group: [scalar]
-# Ignore https://issues.apache.org/jira/browse/IGNITE-15609
-
-statement ok
-CREATE TABLE item(i_manufact INTEGER)
-
-query I
-SELECT * FROM item i1 WHERE (SELECT count(*) AS item_cnt FROM item WHERE (i_manufact = i1.i_manufact AND i_manufact=3) OR (i_manufact = i1.i_manufact AND i_manufact=3)) > 0 ORDER BY 1 LIMIT 100;
-----
-
-query I
-SELECT * FROM item i1 WHERE (SELECT count(*) AS item_cnt FROM item WHERE (i_manufact = i1.i_manufact AND i_manufact=3) OR (i_manufact = i1.i_manufact AND i_manufact=3)) ORDER BY 1 LIMIT 100;
-----
-