mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
cyclic reference test removed, becouse testing of Item::fixed field apply more strict limitation
mysql-test/r/subselect.result: test of cyclic reference false alarm mysql-test/t/subselect.test: test of cyclic reference false alarm
This commit is contained in:
@ -122,6 +122,9 @@ SELECT (SELECT 1.5,'c','a') = ROW(1.5,2,'a');
|
||||
0
|
||||
SELECT (SELECT * FROM (SELECT 'test' a,'test' b) a);
|
||||
Cardinality error (more/less than 1 columns)
|
||||
SELECT 1 as a,(SELECT a+a) b,(SELECT b);
|
||||
a b (SELECT b)
|
||||
1 2 2
|
||||
create table t1 (a int);
|
||||
create table t2 (a int, b int);
|
||||
create table t3 (a int);
|
||||
|
@ -54,6 +54,8 @@ SELECT (SELECT 1.5,'c','a') = ROW(1.5,2,'a');
|
||||
-- error 1239
|
||||
SELECT (SELECT * FROM (SELECT 'test' a,'test' b) a);
|
||||
|
||||
SELECT 1 as a,(SELECT a+a) b,(SELECT b);
|
||||
|
||||
create table t1 (a int);
|
||||
create table t2 (a int, b int);
|
||||
create table t3 (a int);
|
||||
|
Reference in New Issue
Block a user