diff options
author | dlenev@mysql.com <> | 2005-07-19 20:06:49 +0400 |
---|---|---|
committer | dlenev@mysql.com <> | 2005-07-19 20:06:49 +0400 |
commit | 8a3e723b7411826004b45bca14405fe2c18ea719 (patch) | |
tree | 2d8dccfe63df5146991d4448c19a59318ba78941 /mysql-test/r/view.result | |
parent | bff3507b1d6ba1c8d0f46f6d19528a0d52e31610 (diff) | |
download | mariadb-git-8a3e723b7411826004b45bca14405fe2c18ea719.tar.gz |
Fix for bugs #5892/6182/8751/8758/10994 (based on Antony's patch)
"Triggers have the wrong namespace"
"Triggers: duplicate names allowed"
"Triggers: CREATE TRIGGER does not accept fully qualified names"
"SHOW TRIGGERS"
Diffstat (limited to 'mysql-test/r/view.result')
-rw-r--r-- | mysql-test/r/view.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/view.result b/mysql-test/r/view.result index a132279c6bc..624fae4d728 100644 --- a/mysql-test/r/view.result +++ b/mysql-test/r/view.result @@ -1245,7 +1245,7 @@ select * from v1; s1 select * from t1; s1 -drop trigger t1.t1_bi; +drop trigger t1_bi; drop view v1; drop table t1; create table t1 (s1 tinyint); |