diff options
author | unknown <anozdrin@mysql.com> | 2006-03-08 00:13:27 +0300 |
---|---|---|
committer | unknown <anozdrin@mysql.com> | 2006-03-08 00:13:27 +0300 |
commit | a8331c7326dde37ae950ba33ad47257957fc581b (patch) | |
tree | 8e318114433523649edf2686a5585bc0b5d48a8d /mysql-test/r/rpl_trigger.result | |
parent | e889f9efcc0e5c9583001321a1dbd31b2ba5c371 (diff) | |
download | mariadb-git-a8331c7326dde37ae950ba33ad47257957fc581b.tar.gz |
After-merge fix: fix the test case for BUG#16266 to query
only its own tables to prevent getting tables from others.
mysql-test/r/rpl_trigger.result:
Update the result file.
mysql-test/t/rpl_trigger.test:
Fix the test to query only its own tables to prevent getting tables
from other tests.
Diffstat (limited to 'mysql-test/r/rpl_trigger.result')
-rw-r--r-- | mysql-test/r/rpl_trigger.result | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/r/rpl_trigger.result b/mysql-test/r/rpl_trigger.result index b9b20b82acd..3e4a3349e13 100644 --- a/mysql-test/r/rpl_trigger.result +++ b/mysql-test/r/rpl_trigger.result @@ -862,8 +862,8 @@ START SLAVE; SELECT MASTER_POS_WAIT('master-bin.000001', 513) >= 0; MASTER_POS_WAIT('master-bin.000001', 513) >= 0 1 -SHOW TABLES; -Tables_in_test +SHOW TABLES LIKE 't_'; +Tables_in_test (t_) t1 t2 SHOW TRIGGERS; @@ -891,8 +891,8 @@ DROP TABLE t1; DROP TABLE t2; STOP SLAVE; RESET SLAVE; -SHOW TABLES; -Tables_in_test +SHOW TABLES LIKE 't_'; +Tables_in_test (t_) SHOW TRIGGERS; Trigger Event Table Statement Timing Created sql_mode Definer RESET MASTER; |