diff options
author | monty@mysql.com <> | 2005-05-25 12:56:47 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2005-05-25 12:56:47 +0300 |
commit | fb90aaa7b59d7437e9a76bc668e4b57e74d35afa (patch) | |
tree | 52be2414a34bc47a37198260633286ca16187fec /sql/sql_lex.cc | |
parent | 93565c8e7de218bf8c8316cc3a1d862cb33a948b (diff) | |
download | mariadb-git-fb90aaa7b59d7437e9a76bc668e4b57e74d35afa.tar.gz |
Cleanup during code review
Faster detection of wrong table names (like PRN) on windows
Diffstat (limited to 'sql/sql_lex.cc')
-rw-r--r-- | sql/sql_lex.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_lex.cc b/sql/sql_lex.cc index d6dcd9ce9ae..904b4675c74 100644 --- a/sql/sql_lex.cc +++ b/sql/sql_lex.cc @@ -420,7 +420,7 @@ static const uint signed_longlong_len=19; static const char *unsigned_longlong_str="18446744073709551615"; static const uint unsigned_longlong_len=20; -inline static uint int_token(const char *str,uint length) +static inline uint int_token(const char *str,uint length) { if (length < long_len) // quick normal case return NUM; |