diff options
author | Andres Freund | 2015-08-12 15:35:50 +0000 |
---|---|---|
committer | Andres Freund | 2015-08-12 15:35:50 +0000 |
commit | a4b059fddecefd5f473e539b28277874ab83f32f (patch) | |
tree | 18864a2fdf34cb1cdd3013475275a706bcd55058 | |
parent | 7685963eeb16c377c2e0ff7b1852b7a8bc527270 (diff) |
Remove duplicated assignment in pg_create_physical_replication_slot.
Reported-By: Gurjeet Singh
-rw-r--r-- | src/backend/replication/slotfuncs.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/backend/replication/slotfuncs.c b/src/backend/replication/slotfuncs.c index 2dc6827990..b3c8140409 100644 --- a/src/backend/replication/slotfuncs.c +++ b/src/backend/replication/slotfuncs.c @@ -76,7 +76,6 @@ pg_create_physical_replication_slot(PG_FUNCTION_ARGS) } else { - values[0] = NameGetDatum(&MyReplicationSlot->data.name); nulls[1] = true; } |