mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
test made independent
This commit is contained in:
@ -1732,7 +1732,7 @@ INSERT INTO t1 VALUES ('a','1'), ('b','2');
|
||||
INSERT INTO t2 VALUES ('a','5'), ('a','6'), ('b','5'), ('b','6');
|
||||
CREATE VIEW v1 AS
|
||||
SELECT t1.b as c, t2.b as d FROM t1,t2 WHERE t1.a=t2.a;
|
||||
SELECT d, c FROM v1 ORDER BY d;
|
||||
SELECT d, c FROM v1 ORDER BY d,c;
|
||||
d c
|
||||
5 1
|
||||
5 2
|
||||
|
Reference in New Issue
Block a user