diff options
Diffstat (limited to 'src/backend/replication/repl_scanner.l')
-rw-r--r-- | src/backend/replication/repl_scanner.l | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/replication/repl_scanner.l b/src/backend/replication/repl_scanner.l index f5b260119ec..622e037f4a0 100644 --- a/src/backend/replication/repl_scanner.l +++ b/src/backend/replication/repl_scanner.l @@ -112,13 +112,13 @@ START_REPLICATION { return K_START_REPLICATION; } static void startlit(void) { - initStringInfo(&litbuf); + initStringInfo(&litbuf); } static char * litbufdup(void) { - return litbuf.data; + return litbuf.data; } static void @@ -130,13 +130,13 @@ addlit(char *ytext, int yleng) static void addlitchar(unsigned char ychar) { - appendStringInfoChar(&litbuf, ychar); + appendStringInfoChar(&litbuf, ychar); } void yyerror(const char *message) { - ereport(ERROR, + ereport(ERROR, (errcode(ERRCODE_SYNTAX_ERROR), errmsg_internal("%s", message))); } |