mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
make test result repeatable
This commit is contained in:
parent
34ecd80c65
commit
da0c9d286a
1 changed files with 1 additions and 1 deletions
|
@ -1578,7 +1578,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;
|
||||
DROP VIEW v1;
|
||||
DROP TABLE t1, t2;
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue