mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
merge
This commit is contained in:
@ -2357,10 +2357,20 @@ struct LEX: public Query_tables_list
|
||||
|
||||
This pointer is required to add possibly omitted DEFINER-clause to the
|
||||
DDL-statement before dumping it to the binlog.
|
||||
*/
|
||||
const char *stmt_definition_begin;
|
||||
|
||||
const char *stmt_definition_end;
|
||||
keyword_delayed_begin_offset is the offset to the beginning of the DELAYED
|
||||
keyword in INSERT DELAYED statement. keyword_delayed_end_offset is the
|
||||
offset to the character right after the DELAYED keyword.
|
||||
*/
|
||||
union {
|
||||
const char *stmt_definition_begin;
|
||||
uint keyword_delayed_begin_offset;
|
||||
};
|
||||
|
||||
union {
|
||||
const char *stmt_definition_end;
|
||||
uint keyword_delayed_end_offset;
|
||||
};
|
||||
|
||||
/**
|
||||
During name resolution search only in the table list given by
|
||||
|
Reference in New Issue
Block a user