diff options
author | Georgi Kodinov <Georgi.Kodinov@Oracle.com> | 2010-10-04 15:42:16 +0300 |
---|---|---|
committer | Georgi Kodinov <Georgi.Kodinov@Oracle.com> | 2010-10-04 15:42:16 +0300 |
commit | 8789c7972339340feb6a49903ff247de580bc5dd (patch) | |
tree | 0b41fbab5c8e486500b5c53bbe818e62f6f583f2 /sql/sql_lex.h | |
parent | 5f9c629da0c08cd742a16419f4f66cdb18505302 (diff) | |
parent | 40ee088f68a452ac2ed19622481c73d6d38c7ec3 (diff) | |
download | mariadb-git-8789c7972339340feb6a49903ff247de580bc5dd.tar.gz |
merge
Diffstat (limited to 'sql/sql_lex.h')
-rw-r--r-- | sql/sql_lex.h | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/sql/sql_lex.h b/sql/sql_lex.h index c6662501cf6..3a559433e2d 100644 --- a/sql/sql_lex.h +++ b/sql/sql_lex.h @@ -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. + + 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. */ - const char *stmt_definition_begin; + union { + const char *stmt_definition_begin; + uint keyword_delayed_begin_offset; + }; - const char *stmt_definition_end; + union { + const char *stmt_definition_end; + uint keyword_delayed_end_offset; + }; /** During name resolution search only in the table list given by |