mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
1. fixed bug @2593 "SHOW CREATE TABLE doesn't properly double quotes"
2. added automatic quotation of keywords in SHOW CREATE TABLE
This commit is contained in:
@ -181,6 +181,23 @@ static int find_keyword(LEX *lex, uint len, bool function)
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
Check if name is a keyword
|
||||
|
||||
SYNOPSIS
|
||||
is_keyword()
|
||||
name checked name
|
||||
len length of checked name
|
||||
|
||||
RETURN VALUES
|
||||
0 name is a keyword
|
||||
1 name isn't a keyword
|
||||
*/
|
||||
|
||||
bool is_keyword(const char *name, uint len)
|
||||
{
|
||||
return get_hash_symbol(name,len,0)!=0;
|
||||
}
|
||||
|
||||
/* make a copy of token before ptr and set yytoklen */
|
||||
|
||||
@ -420,7 +437,6 @@ inline static uint int_token(const char *str,uint length)
|
||||
return ((uchar) str[-1] <= (uchar) cmp[-1]) ? smaller : bigger;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
yylex remember the following states from the following yylex()
|
||||
|
||||
|
Reference in New Issue
Block a user