mirror of
https://github.com/postgres/postgres.git
synced 2026-04-28 01:26:56 -04: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:
parent
3899caf772
commit
94f1adccd3
1 changed files with 1 additions and 1 deletions
|
|
@ -61,7 +61,7 @@ space [ \t\r\f]
|
|||
yylval.ival = strtoint64(yytext);
|
||||
return INTEGER;
|
||||
}
|
||||
{alpha}{alnum}+ {
|
||||
{alpha}{alnum}* {
|
||||
yycol += yyleng;
|
||||
yylval.str = pg_strdup(yytext);
|
||||
return FUNCTION;
|
||||
|
|
|
|||
Loading…
Reference in a new issue