1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-28 11:44:57 +03:00

Remove a few unused struct members.

Oversights in commits ab9e0e718a, f3049a603a, and 247ce06b88.

Author: Bertrand Drouvot <bertranddrouvot.pg@gmail.com>
Discussion: https://postgr.es/m/aScUuBSawPWogUxs%40ip-10-97-1-34.eu-west-3.compute.internal
This commit is contained in:
Nathan Bossart
2025-11-26 09:50:00 -06:00
parent 348020caa7
commit 9446f918ac
3 changed files with 0 additions and 4 deletions

View File

@@ -134,8 +134,6 @@ typedef struct
{
scram_state_enum state;
const char *username; /* username from startup packet */
Port *port;
bool channel_binding_in_use;

View File

@@ -55,7 +55,6 @@
typedef struct PgAioWorkerSubmissionQueue
{
uint32 size;
uint32 mask;
uint32 head;
uint32 tail;
int sqes[FLEXIBLE_ARRAY_MEMBER];

View File

@@ -88,7 +88,6 @@ struct SharedTuplestoreAccessor
/* State for writing. */
SharedTuplestoreChunk *write_chunk; /* Buffer for writing. */
BufFile *write_file; /* The current file to write to. */
BlockNumber write_page; /* The next page to write to. */
char *write_pointer; /* Current write pointer within chunk. */
char *write_end; /* One past the end of the current chunk. */
};