summaryrefslogtreecommitdiff
path: root/mysql-test/r/view.result
diff options
context:
space:
mode:
authordlenev@mysql.com <>2005-07-19 20:06:49 +0400
committerdlenev@mysql.com <>2005-07-19 20:06:49 +0400
commit8a3e723b7411826004b45bca14405fe2c18ea719 (patch)
tree2d8dccfe63df5146991d4448c19a59318ba78941 /mysql-test/r/view.result
parentbff3507b1d6ba1c8d0f46f6d19528a0d52e31610 (diff)
downloadmariadb-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.result2
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);