diff options
author | Monty <monty@mariadb.org> | 2016-10-03 18:49:44 +0300 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2016-10-05 01:11:08 +0300 |
commit | af7490f95d9a0e99dafb70ae3ee5cc7cf044572e (patch) | |
tree | 6dfa0e90d7ee6563572b080f3c6c6f56ca4dd96f /mysql-test/r/update.result | |
parent | c1125c32183042a2f7be433d2c10e499f843d82c (diff) | |
download | mariadb-git-af7490f95d9a0e99dafb70ae3ee5cc7cf044572e.tar.gz |
Remove end . from error messages to get them consistent
Fixed a few failing tests
Diffstat (limited to 'mysql-test/r/update.result')
-rw-r--r-- | mysql-test/r/update.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/update.result b/mysql-test/r/update.result index 68dbd0dc024..73ebb73e313 100644 --- a/mysql-test/r/update.result +++ b/mysql-test/r/update.result @@ -531,9 +531,9 @@ CREATE FUNCTION f1() RETURNS INT RETURN f1(); CREATE TABLE t1 (i INT); INSERT INTO t1 VALUES (1); UPDATE t1 SET i = 3 WHERE f1(); -ERROR HY000: Recursive stored functions and triggers are not allowed. +ERROR HY000: Recursive stored functions and triggers are not allowed UPDATE t1 SET i = f1(); -ERROR HY000: Recursive stored functions and triggers are not allowed. +ERROR HY000: Recursive stored functions and triggers are not allowed DROP TABLE t1; DROP FUNCTION f1; End of 5.0 tests |