diff options
author | Christopher Powers <chris.powers@oracle.com> | 2010-11-29 22:46:43 -0600 |
---|---|---|
committer | Christopher Powers <chris.powers@oracle.com> | 2010-11-29 22:46:43 -0600 |
commit | f40cc1e000d739046d4044c9198a653993af9ce7 (patch) | |
tree | d472c0aee0680365a374ca57af050b09d1bb3738 /mysql-test/r/view.result | |
parent | 0fff83dfdc402c2cc7c63df770acd9324a3d0c9e (diff) | |
download | mariadb-git-f40cc1e000d739046d4044c9198a653993af9ce7.tar.gz |
Bug#35333, "If Federated table can't connect to remote host, can't retrieve
metadata"
Improved error handling such that queries against Information_Schema.Tables won't
fail if a federated table can't make a remote connection.
Diffstat (limited to 'mysql-test/r/view.result')
-rw-r--r-- | mysql-test/r/view.result | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/r/view.result b/mysql-test/r/view.result index 0aec44b70f1..6dee239e21e 100644 --- a/mysql-test/r/view.result +++ b/mysql-test/r/view.result @@ -840,6 +840,8 @@ show table status; Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment t1 MyISAM 10 Fixed 0 0 0 # 1024 0 NULL # # NULL latin1_swedish_ci NULL v1 NULL NULL NULL NULL NULL NULL # NULL NULL NULL # # NULL NULL NULL NULL View 'test.v1' references invalid table(s) or column(s) or function(s) or define +Warnings: +Warning 1356 View 'test.v1' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them drop view v1; drop table t1; create view v1 as select 99999999999999999999999999999999999999999999999999999 as col1; |