mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
MDEV-4028 - Converted rdiff files to uniform
MDEV-11 - Modifed tests and result files to use explicit column lists in INSERT and SELECT statements
This commit is contained in:
@ -19,7 +19,7 @@ if (!$mysql_errname)
|
||||
{
|
||||
INSERT INTO t1 (a,b) VALUES (1,'a'), (2,'b'), (3,'c');
|
||||
TRUNCATE TABLE t1;
|
||||
SELECT * FROM t1;
|
||||
SELECT a,b FROM t1;
|
||||
}
|
||||
DROP TABLE t1;
|
||||
|
||||
@ -51,7 +51,7 @@ if (!$mysql_errname)
|
||||
--replace_column 2 # 3 # 4 # 5 # 6 # 7 # 8 # 9 # 10 # 12 # 13 # 14 # 15 # 16 # 17 # 18 #
|
||||
SHOW TABLE STATUS LIKE 't1';
|
||||
|
||||
SELECT * FROM t1;
|
||||
SELECT a,c FROM t1;
|
||||
DROP TABLE t1;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user