Skip to content

Commit b1d0765

Browse files
committed
clear
1 parent 81b63a5 commit b1d0765

File tree

1 file changed

+8
-0
lines changed
  • rust/cubestore/cubestore-sql-tests/src

1 file changed

+8
-0
lines changed

rust/cubestore/cubestore-sql-tests/src/tests.rs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8009,6 +8009,10 @@ async fn limit_pushdown_without_group(service: Box<dyn SqlClient>) {
80098009
.exec_query("CREATE TABLE foo.pushdown_where_group3_with_alias (a_alias int, b_alias int, c_alias int) index ind1 (c_alias, b_alias)")
80108010
.await
80118011
.unwrap();
8012+
service
8013+
.exec_query("CREATE TABLE foo.pushdown_where_group4_with_alias (a_alias_2 int, b_alias_2 int, c_alias_2 int) index ind1 (c_alias_2, b_alias_2)")
8014+
.await
8015+
.unwrap();
80128016
service
80138017
.exec_query(
80148018
"INSERT INTO foo.pushdown_where_group1
@@ -8328,6 +8332,8 @@ async fn limit_pushdown_without_group(service: Box<dyn SqlClient>) {
83288332
&service,
83298333
"SELECT a, b, c FROM (
83308334
SELECT a_alias a, b_alias b, c_alias c FROM foo.pushdown_where_group3_with_alias
8335+
UNION ALL
8336+
SELECT a_alias_2 a, b_alias_2 b, c_alias_2 c FROM foo.pushdown_where_group4_with_alias
83318337
) as `tb`
83328338
WHERE a = 20
83338339
ORDER BY 3 DESC
@@ -8344,6 +8350,8 @@ async fn limit_pushdown_without_group(service: Box<dyn SqlClient>) {
83448350
&service,
83458351
"SELECT a, b, c FROM (
83468352
SELECT a_alias a, b_alias b, c_alias c FROM foo.pushdown_where_group3_with_alias
8353+
UNION ALL
8354+
SELECT a_alias_2 a, b_alias_2 b, c_alias_2 c FROM foo.pushdown_where_group4_with_alias
83478355
) as `tb`
83488356
WHERE a > 20
83498357
ORDER BY 3 DESC

0 commit comments

Comments
 (0)