diff options
author | Monty <monty@mariadb.org> | 2017-06-02 13:52:47 +0300 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2017-06-02 13:52:47 +0300 |
commit | 3356e42d01dbef2bfa9a02ec08c7756760385e1e (patch) | |
tree | 2d1a178c1c230473a9be0fe00d674ce3519b7e9b /mysql-test/r/grant.result | |
parent | 959891662dfbb0b860f0bc70e09bc2c92dab831b (diff) | |
download | mariadb-git-3356e42d01dbef2bfa9a02ec08c7756760385e1e.tar.gz |
Improved warning "xxx is not BASE TABLE/SEQUENCE"
- Changed warning to "'%-.192s.%-.192s' is not of type '%s'" to make the
english a bit more correct
Diffstat (limited to 'mysql-test/r/grant.result')
-rw-r--r-- | mysql-test/r/grant.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/grant.result b/mysql-test/r/grant.result index 3e3c84d4300..9e16cf370d8 100644 --- a/mysql-test/r/grant.result +++ b/mysql-test/r/grant.result @@ -1090,7 +1090,7 @@ t_nn CREATE TABLE `t_nn` ( `c1` int(11) DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 SHOW CREATE VIEW mysqltest2.t_nn; -ERROR HY000: 'mysqltest2.t_nn' is not VIEW +ERROR HY000: 'mysqltest2.t_nn' is not of type 'VIEW' SHOW CREATE VIEW mysqltest2.v_yy; View Create View character_set_client collation_connection v_yy CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `mysqltest2`.`v_yy` AS select `mysqltest2`.`t_nn`.`c1` AS `c1` from `mysqltest2`.`t_nn` where `mysqltest2`.`t_nn`.`c1` = 55 latin1 latin1_swedish_ci @@ -1110,7 +1110,7 @@ t_nn CREATE TABLE `t_nn` ( `c1` int(11) DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 SHOW CREATE VIEW mysqltest2.t_nn; -ERROR HY000: 'mysqltest2.t_nn' is not VIEW +ERROR HY000: 'mysqltest2.t_nn' is not of type 'VIEW' DROP VIEW mysqltest2.v_nn; DROP VIEW mysqltest2.v_yn; DROP VIEW mysqltest2.v_ny; |