diff options
author | Patrick Crews <patrick.crews@sun.com> | 2009-02-19 15:37:40 -0500 |
---|---|---|
committer | Patrick Crews <patrick.crews@sun.com> | 2009-02-19 15:37:40 -0500 |
commit | 79300d6f7fb5cd22b9d3c2d14b6eb443e2ae28ed (patch) | |
tree | 3c5612c250539e8247653a8c257cb8969d10d5bf /mysql-test/r/trigger-compat.result | |
parent | ddf6ac40ea0f3290c148b3009069a22f12ab6e70 (diff) | |
download | mariadb-git-79300d6f7fb5cd22b9d3c2d14b6eb443e2ae28ed.tar.gz |
Bug#38831: 11 test cases fail on Windows due to missing commands
Replaced Unix calls with mysql-test-run's built-in functions / SQL manipulation where possible.
Replaced error codes with error names as well.
Disabled two tests on Windows due to more complex Unix command usage
See Bug#41307, Bug#41308
Diffstat (limited to 'mysql-test/r/trigger-compat.result')
-rw-r--r-- | mysql-test/r/trigger-compat.result | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mysql-test/r/trigger-compat.result b/mysql-test/r/trigger-compat.result index 6839cacab43..81c7a14c173 100644 --- a/mysql-test/r/trigger-compat.result +++ b/mysql-test/r/trigger-compat.result @@ -13,9 +13,7 @@ GRANT CREATE ON mysqltest_db1.* TO mysqltest_dfn@localhost; ---> connection: wl2818_definer_con CREATE TABLE t1(num_value INT); CREATE TABLE t2(user_str TEXT); -CREATE TRIGGER wl2818_trg1 BEFORE INSERT ON t1 -FOR EACH ROW -INSERT INTO t2 VALUES(CURRENT_USER()); +CREATE TRIGGER wl2818_trg1 BEFORE INSERT ON t1 FOR EACH ROW INSERT INTO t2 VALUES(CURRENT_USER()); ---> patching t1.TRG... |