mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
fixed compilation warnings on macosx
This commit is contained in:
@@ -4110,7 +4110,7 @@ static my_bool dump_all_views_in_db(char *database)
|
|||||||
for (numrows= 0 ; (table= getTableName(1)); )
|
for (numrows= 0 ; (table= getTableName(1)); )
|
||||||
{
|
{
|
||||||
char *end= strmov(afterdot, table);
|
char *end= strmov(afterdot, table);
|
||||||
if (include_table(hash_key,end - hash_key))
|
if (include_table((uchar*) hash_key,end - hash_key))
|
||||||
{
|
{
|
||||||
numrows++;
|
numrows++;
|
||||||
dynstr_append_checked(&query, quote_name(table, table_buff, 1));
|
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)))
|
while ((table= getTableName(0)))
|
||||||
{
|
{
|
||||||
char *end= strmov(afterdot, table);
|
char *end= strmov(afterdot, table);
|
||||||
if (include_table(hash_key, end - hash_key))
|
if (include_table((uchar*) hash_key, end - hash_key))
|
||||||
get_view_structure(table, database);
|
get_view_structure(table, database);
|
||||||
}
|
}
|
||||||
if (opt_xml)
|
if (opt_xml)
|
||||||
|
Reference in New Issue
Block a user