diff options
author | unknown <bell@sanja.is.com.ua> | 2005-09-14 12:24:14 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2005-09-14 12:24:14 +0300 |
commit | 98b6fd8797bd6bac12c7b119c9bf0bc1fe94c22a (patch) | |
tree | 4d4af487aab02fcb2586834c15f8aada85709827 /mysql-test/r/func_in.result | |
parent | d0a78e6fa6f7ac5cbe16fa7680aa532af3d80e8e (diff) | |
download | mariadb-git-98b6fd8797bd6bac12c7b119c9bf0bc1fe94c22a.tar.gz |
postmerge fix
Diffstat (limited to 'mysql-test/r/func_in.result')
-rw-r--r-- | mysql-test/r/func_in.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/func_in.result b/mysql-test/r/func_in.result index 7235fe00370..a0868d09242 100644 --- a/mysql-test/r/func_in.result +++ b/mysql-test/r/func_in.result @@ -209,7 +209,7 @@ a CREATE VIEW v1 AS SELECT * FROM t1 WHERE a NOT IN (45); 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` where (`test`.`t1`.`a` <> 45) +v1 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select `t1`.`a` AS `a` from `t1` where (`t1`.`a` <> 45) SELECT * FROM v1; a 44 |