You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
dlee mtr 23.08.1 (#2932)
* Added order by clause to keep results consistent over test runs * Updated test result for the merging of MCOL-5519 * Updated test results for the merging of MCOL-4632 * Updated test result for the merging of MCOL-5519 * Added missing / to path * Improved few tests cases * Fixed test case name --------- Co-authored-by: root <root@rocky8.localdomain>
This commit is contained in:
@ -10,27 +10,27 @@ create table t4 (a varchar(200)) engine=columnstore;
|
||||
insert into t3 values ("one"), ("two"), ("three");
|
||||
insert into t4 values ("one"), ("two"), ("three");
|
||||
set session columnstore_max_pm_join_result_count=1;
|
||||
select * from t1, t2 where t1.a = t2.a;
|
||||
select * from t1, t2 where t1.a = t2.a order by t1.a, t2.a;
|
||||
a a
|
||||
1 1
|
||||
2 2
|
||||
3 3
|
||||
4 4
|
||||
select * from t3, t4 where t3.a = t4.a;
|
||||
select * from t3, t4 where t3.a = t4.a order by t3.a, t4.a;
|
||||
a a
|
||||
one one
|
||||
two two
|
||||
three three
|
||||
two two
|
||||
set session columnstore_max_pm_join_result_count=1048576;
|
||||
select * from t1, t2 where t1.a = t2.a;
|
||||
select * from t1, t2 where t1.a = t2.a order by t1.a, t2.a;
|
||||
a a
|
||||
1 1
|
||||
2 2
|
||||
3 3
|
||||
4 4
|
||||
select * from t3, t4 where t3.a = t4.a;
|
||||
select * from t3, t4 where t3.a = t4.a order by t3.a, t4.a;
|
||||
a a
|
||||
one one
|
||||
two two
|
||||
three three
|
||||
two two
|
||||
DROP DATABASE mcol_5522;
|
||||
|
@ -17,12 +17,12 @@ insert into t3 values ("one"), ("two"), ("three");
|
||||
insert into t4 values ("one"), ("two"), ("three");
|
||||
|
||||
set session columnstore_max_pm_join_result_count=1;
|
||||
select * from t1, t2 where t1.a = t2.a;
|
||||
select * from t3, t4 where t3.a = t4.a;
|
||||
select * from t1, t2 where t1.a = t2.a order by t1.a, t2.a;
|
||||
select * from t3, t4 where t3.a = t4.a order by t3.a, t4.a;
|
||||
|
||||
set session columnstore_max_pm_join_result_count=1048576;
|
||||
select * from t1, t2 where t1.a = t2.a;
|
||||
select * from t3, t4 where t3.a = t4.a;
|
||||
select * from t1, t2 where t1.a = t2.a order by t1.a, t2.a;
|
||||
select * from t3, t4 where t3.a = t4.a order by t3.a, t4.a;
|
||||
|
||||
--disable_warnings
|
||||
DROP DATABASE mcol_5522;
|
||||
|
Reference in New Issue
Block a user