1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

MCOL-1205 Remove old tests.

This patch removes some tests which check `circular join` error.
This commit is contained in:
Denis Khalikov
2021-07-03 15:29:24 +03:00
parent 0553093986
commit a576981db0
2 changed files with 0 additions and 32 deletions

View File

@ -49,22 +49,6 @@ a
2
DROP TABLE t1;
DROP TABLE t2;
CREATE TABLE t1 (a int);
INSERT INTO t1 VALUES (1), (2), (3);
CREATE TABLE t2 (a int);
INSERT INTO t2 VALUES (2), (3);
CREATE TABLE t3 (a int);
INSERT INTO t3 VALUES (3);
SET columnstore_select_handler=ON;
SELECT * FROM t1 JOIN t2 ON t1.a=t2.a JOIN t3 ON t2.a=t3.a AND t3.a=t1.a;
ERROR HY000: Internal error: IDB-1003: Circular joins are not supported.
SET columnstore_select_handler=AUTO;
SELECT * FROM t1 JOIN t2 ON t1.a=t2.a JOIN t3 ON t2.a=t3.a AND t3.a=t1.a;
a a a
3 3 3
DROP TABLE t1;
DROP TABLE t2;
DROP TABLE t3;
CREATE TABLE l(c1 int, c2 int);
CREATE TABLE r(c1 int, c2 int);
CREATE TABLE s(c1 int, c2 int);