Commit 7982816b authored by unknown's avatar unknown
Browse files

Fix yet another place that used uint32 instead of uint.

parent 44672ae5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1177,7 +1177,7 @@ bool net_request_file(NET* net, const char* fname)
}


const char *rewrite_db(const char* db, uint32 *new_len)
const char *rewrite_db(const char* db, uint *new_len)
{
  if (replicate_rewrite_db.is_empty() || !db)
    return db;
+1 −1
Original line number Diff line number Diff line
@@ -550,7 +550,7 @@ int add_table_rule(HASH* h, const char* table_spec);
int add_wild_table_rule(DYNAMIC_ARRAY* a, const char* table_spec);
void init_table_rule_hash(HASH* h, bool* h_inited);
void init_table_rule_array(DYNAMIC_ARRAY* a, bool* a_inited);
const char *rewrite_db(const char* db, uint32 *new_db_len);
const char *rewrite_db(const char* db, uint *new_db_len);
const char *print_slave_db_safe(const char *db);
int check_expected_error(THD* thd, RELAY_LOG_INFO* rli, int error_code);
void skip_load_data_infile(NET* net);