mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
Always use all arguments for ddl_log_write_execute_entry()
Remove not anymore used bool ddl_log_write_execute_entry(uint first_entry, DDL_LOG_MEMORY_ENTRY **active_entry) Simple transformations, no logic changes.
This commit is contained in:
@@ -3576,7 +3576,7 @@ bool ddl_log_store_query(THD *thd, DDL_LOG_STATE *ddl_state,
|
||||
ddl_log_entry.extra_name.length= 0;
|
||||
max_query_length= ddl_log_free_space_in_entry(&ddl_log_entry);
|
||||
}
|
||||
if (ddl_log_write_execute_entry(first_entry->entry_pos,
|
||||
if (ddl_log_write_execute_entry(first_entry->entry_pos, 0,
|
||||
&ddl_state->execute_entry))
|
||||
goto err;
|
||||
|
||||
|
Reference in New Issue
Block a user