mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-04-20 09:07:44 +03:00
* Restructured test suites and added autopilot and extended suites * Updated autopilot with correct branch - develop * Moved setup test case to a 'setup' directory, for consistency * Fixed a path issue * Updated some tests cases to keep up with development Co-authored-by: root <root@rocky8.localdomain>
29 lines
924 B
Plaintext
29 lines
924 B
Plaintext
# -------------------------------------------------------------- #
|
|
# Test case migrated from regression test suite: bug2549.sql
|
|
#
|
|
# Author: Daniel Lee, daniel.lee@mariadb.com
|
|
# -------------------------------------------------------------- #
|
|
#
|
|
--source ../include/have_columnstore.inc
|
|
#
|
|
USE tpch1;
|
|
#
|
|
select sub5.c1 as sub5c1, sub1.c1 as sub1c1 from sub5 left join sub1 using (c1) order by 1;
|
|
|
|
select count(*) from sub5 left join sub1 using (c1);
|
|
|
|
select distinct sub5.c1 from sub5 left join sub1 using (c1) order by 1;
|
|
|
|
select sub5.s3 as sub5s3, sub2.s3 as sub2s3 from sub5 left join sub2 using (s3) where sub5.c1 <= 7 order by 1, 2;
|
|
|
|
select count(*) from sub5 left join sub2 using (s3) where sub5.c1 <= 7;
|
|
|
|
select sub5.s2, sub2.c2 from sub5 left join sub2 using (s3, s2) group by 1, 2 order by 1, 2;
|
|
|
|
select count(*) from sub5 right join sub1 using (c1);
|
|
|
|
select count(*) from sub5 left join sub1 on sub5.c3 = sub1.c3;
|
|
|
|
#
|
|
|