diff options
author | bar@bar.myoffice.izhnet.ru <> | 2007-08-03 17:16:02 +0500 |
---|---|---|
committer | bar@bar.myoffice.izhnet.ru <> | 2007-08-03 17:16:02 +0500 |
commit | fb8dff9721c99fc7b9b07bdffc54b671eb5624f9 (patch) | |
tree | 35a4ca131042aba598547cd40d5d5926942e3068 /sql/sql_lex.h | |
parent | f42cf05ad4a7e988403a2ff60f1999d69cf98e87 (diff) | |
parent | 4eebfd09c2b045258615bf07990deb6f0f73f729 (diff) | |
download | mariadb-git-fb8dff9721c99fc7b9b07bdffc54b671eb5624f9.tar.gz |
Merge mysql.com:/home/bar/mysql-work/mysql-5.0.b28875
into mysql.com:/home/bar/mysql-work/mysql-5.1.b28875
Diffstat (limited to 'sql/sql_lex.h')
-rw-r--r-- | sql/sql_lex.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sql/sql_lex.h b/sql/sql_lex.h index b769930958e..11273bba314 100644 --- a/sql/sql_lex.h +++ b/sql/sql_lex.h @@ -1435,6 +1435,9 @@ public: */ const char *found_semicolon; + /** Token character bitmaps, to detect 7bit strings. */ + uchar tok_bitmap; + /** SQL_MODE = IGNORE_SPACE. */ bool ignore_space; @@ -1502,8 +1505,9 @@ typedef struct st_lex : public Query_tables_list /* maintain a list of used plugins for this LEX */ DYNAMIC_ARRAY plugins; plugin_ref plugins_static_buffer[INITIAL_LEX_PLUGIN_LIST_SIZE]; - + CHARSET_INFO *charset; + bool text_string_is_7bit; /* store original leaf_tables for INSERT SELECT and PS/SP */ TABLE_LIST *leaf_tables_insert; |