mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
Fixing tabs to spaces in sql_lex.cc and sql_lex.h (and coding style slightly)
This commit is contained in:
parent
1b8749f73b
commit
971268dc14
2 changed files with 184 additions and 184 deletions
|
@ -1708,7 +1708,7 @@ static int lex_one_token(YYSTYPE *yylval, THD *thd)
|
|||
lip->yyUnget(); // Safety against eof
|
||||
state= MY_LEX_START; // Try again
|
||||
break;
|
||||
case MY_LEX_LONG_COMMENT: /* Long C comment? */
|
||||
case MY_LEX_LONG_COMMENT: // Long C comment?
|
||||
if (lip->yyPeek() != '*')
|
||||
{
|
||||
state= MY_LEX_CHAR; // Probable division
|
||||
|
|
|
@ -2914,7 +2914,7 @@ public:
|
|||
*/
|
||||
bool parse_vcol_expr;
|
||||
|
||||
enum SSL_type ssl_type; /* defined in violite.h */
|
||||
enum SSL_type ssl_type; // defined in violite.h
|
||||
enum enum_duplicates duplicates;
|
||||
enum enum_tx_isolation tx_isolation;
|
||||
enum enum_ha_read_modes ha_read_mode;
|
||||
|
@ -2975,7 +2975,7 @@ public:
|
|||
List<Item> prepared_stmt_params;
|
||||
sp_head *sphead;
|
||||
sp_name *spname;
|
||||
bool sp_lex_in_use; /* Keep track on lex usage in SPs for error handling */
|
||||
bool sp_lex_in_use; // Keep track on lex usage in SPs for error handling
|
||||
bool all_privileges;
|
||||
bool proxy_priv;
|
||||
|
||||
|
|
Loading…
Reference in a new issue