diff options
author | cmiller@zippy.(none) <> | 2006-06-20 17:17:04 -0400 |
---|---|---|
committer | cmiller@zippy.(none) <> | 2006-06-20 17:17:04 -0400 |
commit | deca07bdccd91598e060b6c3f093eefca95d66da (patch) | |
tree | e00305ac71067ad01c53c30eeb4904036cd3351a /mysql-test/r/mysqldump.result | |
parent | 337396d19aba98daa0d2b496f7e280971adac5c8 (diff) | |
parent | b0ebd2fce0ad62aec70d65bee6a6e8a04fdcac52 (diff) | |
download | mariadb-git-deca07bdccd91598e060b6c3f093eefca95d66da.tar.gz |
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into zippy.(none):/home/cmiller/work/mysql/mysql-5.0-maint
Diffstat (limited to 'mysql-test/r/mysqldump.result')
-rw-r--r-- | mysql-test/r/mysqldump.result | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/r/mysqldump.result b/mysql-test/r/mysqldump.result index e496e1ef35d..acb9b9af276 100644 --- a/mysql-test/r/mysqldump.result +++ b/mysql-test/r/mysqldump.result @@ -2757,6 +2757,15 @@ p CREATE DEFINER=`root`@`localhost` PROCEDURE `p`() select 42 drop function f; drop procedure p; +create table t1 ( id serial ); +create view v1 as select * from t1; +drop table t1; +mysqldump { + +-- failed on view `v1`: CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select `test`.`t1`.`id` AS `id` from `t1` + +} mysqldump +drop view v1; create database mysqldump_test_db; use mysqldump_test_db; create table t1 (id int); |