1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +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:
Elena Stepanova
2013-02-03 02:53:57 +04:00
parent 1701ee3357
commit 7f444caa0a
213 changed files with 7031 additions and 5955 deletions

View File

@ -13,11 +13,11 @@ DROP TABLE IF EXISTS t1;
REPLACE INTO t1 (a,b) VALUES (1,'a'),(2,'b'),(3,'c'),(4,'d'),(5,'e');
--sorted_result
SELECT * FROM t1;
SELECT a,b FROM t1;
REPLACE t1 (a,b) VALUE (10,'foo'),(10,'foo');
--sorted_result
SELECT * FROM t1;
SELECT a,b FROM t1;
DROP TABLE t1;
@ -37,7 +37,7 @@ if (!$mysql_errname)
--source check_errors.inc
REPLACE INTO t1 (a,b) VALUES (2,'d');
--sorted_result
SELECT * FROM t1;
SELECT a,b FROM t1;
DROP TABLE t1;
}
@ -58,7 +58,7 @@ if (!$mysql_errname)
--source check_errors.inc
REPLACE INTO t1 (a,b) VALUES (4,'b');
--sorted_result
SELECT * FROM t1;
SELECT a,b FROM t1;
DROP TABLE t1;
}