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

@ -32,7 +32,7 @@ if (!$mysql_errname)
UPDATE t1 SET b='z' WHERE a < 2;
UPDATE t1 SET b='';
--sorted_result
SELECT * FROM t1;
SELECT a,b FROM t1;
}
DROP TABLE t1;
}
@ -62,7 +62,7 @@ if (!$mysql_errname)
--source check_errors.inc
UPDATE t1 SET a=12345 ORDER BY a, b LIMIT 1;
--sorted_result
SELECT * FROM t1;
SELECT a,b FROM t1;
# We'll check that the next update causes an error,
# but won't check the result because it might be different depending
@ -101,7 +101,7 @@ if (!$mysql_errname)
--source check_errors.inc
UPDATE t1 SET a=a+1;
--sorted_result
SELECT * FROM t1;
SELECT a,b FROM t1;
--let $error_codes = ER_DUP_ENTRY,ER_DUP_KEY
UPDATE t1 SET b='z';
--source check_errors.inc
@ -135,7 +135,7 @@ if (!$mysql_errname)
UPDATE t1 SET a=12345 ORDER BY a DESC, b LIMIT 1;
--sorted_result
SELECT * FROM t1;
SELECT a,b FROM t1;
# We'll check that the next update causes an error,
# but won't check the result because it might be different depending