mirror of
https://github.com/postgres/postgres.git
synced 2026-03-09 01:31:22 -04:00
Fix copy & paste mistake in pg_get_replication_slots().
XLogRecPtr was compared with InvalidTransactionId instead of InvalidXLogRecPtr. As both are defined to the same value this doesn't cause any actual problems, but it's still wrong. Backpatch: 9.4-master, bug was introduced in 9.4
This commit is contained in:
parent
86baf3c24d
commit
2949987d37
1 changed files with 1 additions and 1 deletions
|
|
@ -268,7 +268,7 @@ pg_get_replication_slots(PG_FUNCTION_ARGS)
|
|||
else
|
||||
nulls[i++] = true;
|
||||
|
||||
if (restart_lsn != InvalidTransactionId)
|
||||
if (restart_lsn != InvalidXLogRecPtr)
|
||||
values[i++] = LSNGetDatum(restart_lsn);
|
||||
else
|
||||
nulls[i++] = true;
|
||||
|
|
|
|||
Loading…
Reference in a new issue