summaryrefslogtreecommitdiff
path: root/src/include/parser/scanner.h
diff options
context:
space:
mode:
authorPeter Geoghegan <pg@bowt.ie>2022-09-22 13:27:16 -0700
committerPeter Geoghegan <pg@bowt.ie>2022-09-22 13:27:16 -0700
commit8fb4e001e9c185250a95b2b13880a2a04d626b75 (patch)
tree97e33d57f38dd0f7db922b2d76954dbf4803858a /src/include/parser/scanner.h
parent3535ebce5dc542b90f14d6e81cce80fe7226bda5 (diff)
Harmonize more lexer function parameter names.
Make sure that function declarations use names that exactly match the corresponding names from function definitions for several "lexer adjacent" backend functions. These were missed by commit aab06442. Author: Peter Geoghegan <pg@bowt.ie> Discussion: https://postgr.es/m/CAH2-WznJt9CMM9KJTMjJh_zbL5hD9oX44qdJ4aqZtjFi-zA3Tg@mail.gmail.com
Diffstat (limited to 'src/include/parser/scanner.h')
-rw-r--r--src/include/parser/scanner.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/parser/scanner.h b/src/include/parser/scanner.h
index 0843481517e..e775d96c742 100644
--- a/src/include/parser/scanner.h
+++ b/src/include/parser/scanner.h
@@ -138,7 +138,7 @@ extern core_yyscan_t scanner_init(const char *str,
const ScanKeywordList *keywordlist,
const uint16 *keyword_tokens);
extern void scanner_finish(core_yyscan_t yyscanner);
-extern int core_yylex(core_YYSTYPE *lvalp, YYLTYPE *llocp,
+extern int core_yylex(core_YYSTYPE *yylval_param, YYLTYPE *yylloc_param,
core_yyscan_t yyscanner);
extern int scanner_errposition(int location, core_yyscan_t yyscanner);
extern void setup_scanner_errposition_callback(ScannerCallbackState *scbstate,