Skip to content

Commit fc5c06e

Browse files
RekGRpthMedvecrab
authored andcommitted
Fix Postgres 19 support
The postgres/postgres@bab2f27 commit replaced the bits32 type with uint32. Replace it in the InitPostgresCompat function definition.
1 parent 4317e38 commit fc5c06e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compat.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ shm_mq_send_compat(shm_mq_handle *mqh, Size nbytes, const void *data,
3232
static inline void
3333
InitPostgresCompat(const char *in_dbname, Oid dboid,
3434
const char *username, Oid useroid,
35-
bits32 flags,
35+
uint32 flags,
3636
char *out_dbname)
3737
{
3838
#if PG_VERSION_NUM >= 170000

0 commit comments

Comments
 (0)