mirror of
https://github.com/postgres/postgres.git
synced 2025-06-10 09:21:54 +03:00
Re-fix broken definition for function name in pgbench's exprscan.l.
Wups, my first try wasn't quite right either. Too focused on fixing the existing bug, not enough on not introducing new ones.
This commit is contained in:
@ -61,7 +61,7 @@ space [ \t\r\f]
|
|||||||
yylval.ival = strtoint64(yytext);
|
yylval.ival = strtoint64(yytext);
|
||||||
return INTEGER;
|
return INTEGER;
|
||||||
}
|
}
|
||||||
{alpha}{alnum}+ {
|
{alpha}{alnum}* {
|
||||||
yycol += yyleng;
|
yycol += yyleng;
|
||||||
yylval.str = pg_strdup(yytext);
|
yylval.str = pg_strdup(yytext);
|
||||||
return FUNCTION;
|
return FUNCTION;
|
||||||
|
Reference in New Issue
Block a user