Commit ff0a7e61 authored by Tom Lane's avatar Tom Lane

Use yylex_init not yylex_init_extra().

Older versions of flex don't have the latter.  Per buildfarm.
parent a3e39f83
......@@ -893,7 +893,9 @@ psql_scan_create(const PsqlScanCallbacks *callbacks)
state->callbacks = callbacks;
yylex_init_extra(state, &state->scanner);
yylex_init(&state->scanner);
yyset_extra(state, state->scanner);
psql_scan_reset(state);
......
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