Skip to content

Commit bb629c2

Browse files
committed
Rename macro related to pg_backup_stop()
This should have been part of 39969e2 that has renamed pg_stop_backup() to pg_backup_stop(), and this one is the last reference to pg_stop/start_backup() I could find in the tree. Author: Bharath Rupireddy Discussion: https://postgr.es/m/CALj2ACXjvC28ppeDTCrfaSyHga0ggP5nRLJbsjx=7N-74UT4QA@mail.gmail.com
1 parent ee5353a commit bb629c2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/access/transam/xlogfuncs.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,10 @@ pg_backup_start(PG_FUNCTION_ARGS)
104104
Datum
105105
pg_backup_stop(PG_FUNCTION_ARGS)
106106
{
107-
#define PG_STOP_BACKUP_V2_COLS 3
107+
#define PG_BACKUP_STOP_V2_COLS 3
108108
TupleDesc tupdesc;
109-
Datum values[PG_STOP_BACKUP_V2_COLS] = {0};
110-
bool nulls[PG_STOP_BACKUP_V2_COLS] = {0};
109+
Datum values[PG_BACKUP_STOP_V2_COLS] = {0};
110+
bool nulls[PG_BACKUP_STOP_V2_COLS] = {0};
111111

112112
bool waitforarchive = PG_GETARG_BOOL(0);
113113
XLogRecPtr stoppoint;

0 commit comments

Comments
 (0)