diff options
author | Georgi Kodinov <joro@sun.com> | 2009-06-05 19:40:36 +0300 |
---|---|---|
committer | Georgi Kodinov <joro@sun.com> | 2009-06-05 19:40:36 +0300 |
commit | 9ceb37269d1039b082f90e32e0fab499e475c24d (patch) | |
tree | a8101c72718bb27cae961415d300d416daa27836 /client | |
parent | a74766c23342d212acfe362e6c9b19e609849a21 (diff) | |
parent | 6010bd18ae63ba22971f7ecf3f3aa4af70a4b3d3 (diff) | |
download | mariadb-git-9ceb37269d1039b082f90e32e0fab499e475c24d.tar.gz |
merged 5.0-bugteam -> 5.1-bugteam
Diffstat (limited to 'client')
-rw-r--r-- | client/mysqldump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/mysqldump.c b/client/mysqldump.c index 6b2c2a06834..d755a17b815 100644 --- a/client/mysqldump.c +++ b/client/mysqldump.c @@ -4110,7 +4110,7 @@ static my_bool dump_all_views_in_db(char *database) for (numrows= 0 ; (table= getTableName(1)); ) { char *end= strmov(afterdot, table); - if (include_table((uchar*) hash_key,end - hash_key)) + if (include_table(hash_key,end - hash_key)) { numrows++; dynstr_append_checked(&query, quote_name(table, table_buff, 1)); @@ -4131,7 +4131,7 @@ static my_bool dump_all_views_in_db(char *database) while ((table= getTableName(0))) { char *end= strmov(afterdot, table); - if (include_table((uchar*) hash_key, end - hash_key)) + if (include_table(hash_key, end - hash_key)) get_view_structure(table, database); } if (opt_xml) |