mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Fix type mismatch. Table names are represented as LEX_STRING
objects whose length is stored in a size_t type.
This commit is contained in:
@ -499,8 +499,8 @@ public:
|
||||
};
|
||||
|
||||
|
||||
int check_if_log_table(uint db_len, const char *db, uint table_name_len,
|
||||
const char *table_name, uint check_if_opened);
|
||||
int check_if_log_table(size_t db_len, const char *db, size_t table_name_len,
|
||||
const char *table_name, bool check_if_opened);
|
||||
|
||||
class Log_to_csv_event_handler: public Log_event_handler
|
||||
{
|
||||
|
Reference in New Issue
Block a user