mirror of
https://github.com/postgres/postgres.git
synced 2025-11-10 17:42:29 +03:00
Clean up whitespace and indentation in parser and scanner files
These are not touched by pgindent, so clean them up a bit manually.
This commit is contained in:
@@ -122,7 +122,7 @@ base_backup:
|
||||
;
|
||||
|
||||
base_backup_opt_list: base_backup_opt_list base_backup_opt { $$ = lappend($1, $2); }
|
||||
| /* EMPTY */ { $$ = NIL; }
|
||||
| /* EMPTY */ { $$ = NIL; }
|
||||
|
||||
base_backup_opt:
|
||||
K_LABEL SCONST
|
||||
|
||||
@@ -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)));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user