diff options
author | unknown <SergeyV@selena.> | 2006-02-27 20:00:03 +0300 |
---|---|---|
committer | unknown <SergeyV@selena.> | 2006-02-27 20:00:03 +0300 |
commit | 1fa840e70d82011b886cc08d12daa0ea5303ecdb (patch) | |
tree | 5f9d848b17f9f892413610706513a39699dbf2cd /mysql-test/r/view.result | |
parent | 29ac89da86f6ec23b9c3ac7c171a042f7baf6e2f (diff) | |
parent | 3e138d04784f6984539106063805b8728b578651 (diff) | |
download | mariadb-git-1fa840e70d82011b886cc08d12daa0ea5303ecdb.tar.gz |
Merge svlasenko@bk-internal.mysql.com:/home/bk/mysql-5.0
into selena.:H:/MYSQL/src/#15943-mysql-5.0
mysql-test/r/view.result:
Auto merged
mysql-test/t/view.test:
Auto merged
Diffstat (limited to 'mysql-test/r/view.result')
-rw-r--r-- | mysql-test/r/view.result | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/r/view.result b/mysql-test/r/view.result index adf92909709..c9a79e50cc3 100644 --- a/mysql-test/r/view.result +++ b/mysql-test/r/view.result @@ -2529,3 +2529,13 @@ Warnings: Warning 1052 Column 'x' in group statement is ambiguous DROP VIEW v1; DROP TABLE t1; +drop table if exists t1; +drop view if exists v1; +create table t1 (id int); +create view v1 as select * from t1; +drop table t1; +show create view v1; +drop view v1; +// +View Create View +v1 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select sql_no_cache `test`.`t1`.`id` AS `id` from `t1` |