summaryrefslogtreecommitdiff
path: root/sql/sql_lex.cc
diff options
context:
space:
mode:
authorunknown <malff/marcsql@weblab.(none)>2007-08-30 17:23:40 -0600
committerunknown <malff/marcsql@weblab.(none)>2007-08-30 17:23:40 -0600
commit3f9be28c41832ef87e0832476780e6b3c1d1749e (patch)
tree00bcf2b19fee762a68dc643dafacd013f9bf9e3a /sql/sql_lex.cc
parent7388ea3c56a268387e60fc28b671d664ecfa8ad4 (diff)
parentbccbd5c493a5350a7dd36e0349f2ad6d05863e89 (diff)
downloadmariadb-git-3f9be28c41832ef87e0832476780e6b3c1d1749e.tar.gz
Merge weblab.(none):/home/marcsql/TREE/mysql-5.0-base
into weblab.(none):/home/marcsql/TREE/mysql-5.0-runtime sql/item_cmpfunc.h: Auto merged sql/sql_lex.cc: Auto merged
Diffstat (limited to 'sql/sql_lex.cc')
-rw-r--r--sql/sql_lex.cc37
1 files changed, 30 insertions, 7 deletions
diff --git a/sql/sql_lex.cc b/sql/sql_lex.cc
index d11c2b21635..f1b4ffc949d 100644
--- a/sql/sql_lex.cc
+++ b/sql/sql_lex.cc
@@ -526,6 +526,7 @@ static inline uint int_token(const char *str,uint length)
int MYSQLlex(void *arg, void *yythd)
{
reg1 uchar c;
+ bool comment_closed;
int tokval, result_state;
uint length;
enum my_lex_states state;
@@ -961,15 +962,34 @@ int MYSQLlex(void *arg, void *yythd)
break;
}
}
- while (lip->ptr != lip->end_of_query &&
- ((c=yyGet()) != '*' || yyPeek() != '/'))
+ /*
+ Discard:
+ - regular '/' '*' comments,
+ - special comments '/' '*' '!' for a future version,
+ by scanning until we find a closing '*' '/' marker.
+ Note: There is no such thing as nesting comments,
+ the first '*' '/' sequence seen will mark the end.
+ */
+ comment_closed= FALSE;
+ while (lip->ptr != lip->end_of_query)
{
- if (c == '\n')
- lip->yylineno++;
+ c= yyGet();
+ if (c == '*')
+ {
+ if (yyPeek() == '/')
+ {
+ yySkip();
+ comment_closed= TRUE;
+ state = MY_LEX_START;
+ break;
+ }
+ }
+ else if (c == '\n')
+ lip->yylineno++;
}
- if (lip->ptr != lip->end_of_query)
- yySkip(); // remove last '/'
- state = MY_LEX_START; // Try again
+ /* Unbalanced comments with a missing '*' '/' are a syntax error */
+ if (! comment_closed)
+ return (ABORT_SYM);
break;
case MY_LEX_END_LONG_COMMENT:
if (lex->in_comment && yyPeek() == '/')
@@ -1009,6 +1029,9 @@ int MYSQLlex(void *arg, void *yythd)
if (lip->ptr >= lip->end_of_query)
{
lip->next_state=MY_LEX_END; // Mark for next loop
+ /* Unbalanced comments with a missing '*' '/' are a syntax error */
+ if (lex->in_comment)
+ return (ABORT_SYM);
return(END_OF_INPUT);
}
state=MY_LEX_CHAR;