1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Comment and indentation improvements

This commit is contained in:
Monty
2025-01-05 17:33:10 +02:00
parent 4992aaf9a2
commit d9c3b775b8
7 changed files with 28 additions and 16 deletions

View File

@@ -3119,7 +3119,7 @@ struct Item_change_record: public ilink
/*
Register an item tree tree transformation, performed by the query
Register an item tree transformation, performed by the query
optimizer. We need a pointer to runtime_memroot because it may be !=
thd->mem_root (due to possible set_n_backup_active_arena called for thd).
*/
@@ -8057,6 +8057,18 @@ void THD::issue_unsafe_warnings()
/**
Log the current query.
@param qtype Query type
@param query_arg Query to be logged
@param query_len Query length
@param is_trans If table is transactional. This is need to know in which
cache the table changes has been logged
@param direct Set if the query should be done directly to binary
log instead of to the binary log cache.
suppress_use Don't write 'use database' to the binary log. Used with
statements like DROP DATABASE.
errcode The error code if the statement failed.
The query will be logged in either row format or statement format
depending on the value of @c current_stmt_binlog_format_row field and
the value of the @c qtype parameter.