Commit 94f1adcc authored by Tom Lane's avatar Tom Lane

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.
parent 3899caf7
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment