diff options
author | bell@sanja.is.com.ua <> | 2005-09-14 12:24:14 +0300 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2005-09-14 12:24:14 +0300 |
commit | 3f160eed87a52e583a53fcd1cc81bd73bb939cc1 (patch) | |
tree | 4d4af487aab02fcb2586834c15f8aada85709827 /mysql-test/r/sql_mode.result | |
parent | 914b961d010082d79692c60a75d9f604daeb64ae (diff) | |
download | mariadb-git-3f160eed87a52e583a53fcd1cc81bd73bb939cc1.tar.gz |
postmerge fix
Diffstat (limited to 'mysql-test/r/sql_mode.result')
-rw-r--r-- | mysql-test/r/sql_mode.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/sql_mode.result b/mysql-test/r/sql_mode.result index c35c88b993b..6ceb1cda888 100644 --- a/mysql-test/r/sql_mode.result +++ b/mysql-test/r/sql_mode.result @@ -449,11 +449,11 @@ create table t2 (a int); create view v1 as select a from t1; show create view v1; View Create View -v1 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `test`.`v1` AS select `test`.`t1`.`a` AS `a` from `test`.`t1` +v1 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select `t1`.`a` AS `a` from `t1` SET @@SQL_MODE='ANSI_QUOTES'; show create view v1; View Create View -v1 CREATE ALGORITHM=UNDEFINED DEFINER="root"@"localhost" SQL SECURITY DEFINER VIEW "test"."v1" AS select "test"."t1"."a" AS "a" from "test"."t1" +v1 CREATE ALGORITHM=UNDEFINED DEFINER="root"@"localhost" SQL SECURITY DEFINER VIEW "v1" AS select "t1"."a" AS "a" from "t1" create view v2 as select a from t2 where a in (select a from v1); drop view v2, v1; drop table t1, t2; |