Re: Deduplicate logicalrep_read_tuple()
Bharath Rupireddy <bharath.rupireddyforpostgres@gmail.com>
From: Bharath Rupireddy <bharath.rupireddyforpostgres@gmail.com>
To: Peter Smith <smithpb2250@gmail.com>
Cc: PostgreSQL Hackers <pgsql-hackers@lists.postgresql.org>
Date: 2023-03-03T10:43:23Z
Lists: pgsql-hackers
Attachments
- v2-0001-Deduplicate-logicalrep_read_tuple.patch (application/octet-stream) patch v2-0001
On Thu, Jan 19, 2023 at 8:36 AM Peter Smith <smithpb2250@gmail.com> wrote: > > On Wed, Jan 18, 2023 at 6:26 PM Bharath Rupireddy > <bharath.rupireddyforpostgres@gmail.com> wrote: > > > > Hi, > > > > logicalrep_read_tuple() duplicates code for LOGICALREP_COLUMN_TEXT and > > LOGICALREP_COLUMN_BINARY introduced by commit 9de77b5. While it > > doesn't hurt anyone, deduplication makes code a bit leaner by 57 bytes > > [1]. I've attached a patch for $SUBJECT. > > > > Thoughts? > > > > The code looks the same but there is a subtle comment difference where > previously only LOGICALREP_COLUMN_BINARY case said: > /* not strictly necessary but per StringInfo practice */ > > So if you de-duplicate the code then should that comment be modified to say > /* not strictly necessary for LOGICALREP_COLUMN_BINARY but per > StringInfo practice */ Thanks. Done so in the attached v2. -- Bharath Rupireddy PostgreSQL Contributors Team RDS Open Source Databases Amazon Web Services: https://aws.amazon.com
Commits
-
Deduplicate handling of binary and text modes in logicalrep_read_tuple().
- 9effa5523601 16.0 landed
-
Allow logical replication to transfer data in binary format.
- 9de77b545313 14.0 cited