diff options
author | unknown <monty@tik.mysql.fi> | 2001-07-04 09:39:58 +0300 |
---|---|---|
committer | unknown <monty@tik.mysql.fi> | 2001-07-04 09:39:58 +0300 |
commit | 9a811481b21c3ac3a349b2311a92558e397bc764 (patch) | |
tree | 1aebd400b499a8cbeaef3fb0b970cba953f38373 /sql/sql_lex.h | |
parent | 09b6895facbfafb492d543e1ee801fd3075290c0 (diff) | |
download | mariadb-git-9a811481b21c3ac3a349b2311a92558e397bc764.tar.gz |
Added support for ANSI SQL X'hex-string' format.
Fixed mysqldump to use -- instead of # as comment characters.
Removed support for the 3.20 protocol format
Docs/manual.texi:
Update Changelog
client/mysqldump.c:
Fixed dump to use -- instead of # as comment characters.
libmysql/libmysql.c:
Removed support for the 3.20 protocol format
myisam/myisamchk.c:
Fixed typo in printf
mysql-test/r/varbinary.result:
Test of new hex constant format
mysql-test/t/varbinary.test:
Test of new hex constant format
sql/sql_lex.cc:
Added support for ANSI SQL X'hex-string' format.
sql/sql_lex.h:
Added support for ANSI SQL X'hex-string' format.
sql/sql_yacc.yy:
Added support for ANSI SQL X'hex-string' format.
Diffstat (limited to 'sql/sql_lex.h')
-rw-r--r-- | sql/sql_lex.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/sql_lex.h b/sql/sql_lex.h index e585ec65191..d10705d9d97 100644 --- a/sql/sql_lex.h +++ b/sql/sql_lex.h @@ -65,6 +65,7 @@ enum lex_states { STATE_START, STATE_CHAR, STATE_IDENT, STATE_FOUND_IDENT, STATE_SIGNED_NUMBER, STATE_REAL, + STATE_HEX_NUMBER, STATE_CMP_OP, STATE_LONG_CMP_OP, STATE_STRING, |