From b889f6999367c9415f5806d2ea6ec104387ba1ff Mon Sep 17 00:00:00 2001 From: Michael Widenius Date: Mon, 4 Jun 2012 14:47:35 +0300 Subject: [PATCH] Fixed comment --- sql/sql_lex.cc | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/sql/sql_lex.cc b/sql/sql_lex.cc index d29657dfea4..5ac53484aac 100644 --- a/sql/sql_lex.cc +++ b/sql/sql_lex.cc @@ -1524,10 +1524,11 @@ int lex_one_token(void *arg, void *yythd) /* The special comment format is very strict: '/' '*' '!', followed by an optional 'M' and exactly - 1 digit (major), 2 digits (minor), then 2 digits (dot). - 32302 -> 3.23.02 - 50032 -> 5.0.32 - 50114 -> 5.1.14 + 1-2 digits (major), 2 digits (minor), then 2 digits (dot). + 32302 -> 3.23.02 + 50032 -> 5.0.32 + 50114 -> 5.1.14 + 100000 -> 10.0.0 */ if ( my_isdigit(cs, lip->yyPeekn(0)) && my_isdigit(cs, lip->yyPeekn(1))