1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +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

@@ -73,8 +73,9 @@ if (!$mysql_errname)
DELETE FROM t2 WHERE a=2;
--sorted_result
SELECT * FROM t1;
SELECT * FROM t2;
SELECT a,b FROM t1;
--sorted_result
SELECT a,b FROM t2;
--let $error_codes = ER_ROW_IS_REFERENCED
DROP TABLE t1;
@@ -119,7 +120,7 @@ if (!$mysql_errname)
--source unexpected_result.inc
}
--sorted_result
SELECT * FROM t2;
SELECT a,b FROM t2;
DELETE FROM t1 WHERE b='a' LIMIT 2;
if ($mysql_errname)
@@ -128,7 +129,7 @@ if (!$mysql_errname)
--source unexpected_result.inc
}
--sorted_result
SELECT * FROM t2;
SELECT a,b FROM t2;
--let $error_codes = ER_TRUNCATE_ILLEGAL_FK
TRUNCATE TABLE t1;