v4-0008-fixup-add-is_schema_sent-back.patch
application/octet-stream
Filename: v4-0008-fixup-add-is_schema_sent-back.patch
Type: application/octet-stream
Part: 7
Patch
Same data as JSON:
GET /api/v1/attachments/:id/patch
the parsed metadata as JSON — format, series position, per-file stats; never the diff bytes.
API reference →
Format: format-patch
Series: patch v4-0008
Subject: fixup: add is_schema_sent back
| File | + | − |
|---|---|---|
| src/backend/replication/logical/reorderbuffer.c | 1 | 0 |
From dcb320769da1aa3c4bd7c80c3dcee22a0fb3ed33 Mon Sep 17 00:00:00 2001 From: Tomas Vondra <tomas@2ndquadrant.com> Date: Fri, 27 Dec 2019 23:02:38 +0100 Subject: [PATCH v4 08/19] fixup: add is_schema_sent back --- src/backend/replication/logical/reorderbuffer.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/replication/logical/reorderbuffer.c b/src/backend/replication/logical/reorderbuffer.c index 232d9f4..78b5c00 100644 --- a/src/backend/replication/logical/reorderbuffer.c +++ b/src/backend/replication/logical/reorderbuffer.c @@ -2229,6 +2229,7 @@ ReorderBufferCommit(ReorderBuffer *rb, TransactionId xid, * about the message itself? */ LocalExecuteInvalidationMessage(&change->data.inval.msg); + txn->is_schema_sent = false; break; case REORDER_BUFFER_CHANGE_INTERNAL_TUPLECID: -- 1.8.3.1