Skip to content

Commit 94f1adc

Browse files
committed
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.
1 parent 3899caf commit 94f1adc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/pgbench/exprscan.l

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ space [ \t\r\f]
6161
yylval.ival = strtoint64(yytext);
6262
return INTEGER;
6363
}
64-
{alpha}{alnum}+ {
64+
{alpha}{alnum}* {
6565
yycol += yyleng;
6666
yylval.str = pg_strdup(yytext);
6767
return FUNCTION;

0 commit comments

Comments
 (0)