We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37efb1c commit b98467dCopy full SHA for b98467d
src/backend/access/transam/xlogfuncs.c
@@ -104,10 +104,10 @@ pg_backup_start(PG_FUNCTION_ARGS)
104
Datum
105
pg_backup_stop(PG_FUNCTION_ARGS)
106
{
107
-#define PG_STOP_BACKUP_V2_COLS 3
+#define PG_BACKUP_STOP_V2_COLS 3
108
TupleDesc tupdesc;
109
- Datum values[PG_STOP_BACKUP_V2_COLS] = {0};
110
- bool nulls[PG_STOP_BACKUP_V2_COLS] = {0};
+ Datum values[PG_BACKUP_STOP_V2_COLS] = {0};
+ bool nulls[PG_BACKUP_STOP_V2_COLS] = {0};
111
112
bool waitforarchive = PG_GETARG_BOOL(0);
113
XLogRecPtr stoppoint;
0 commit comments