diff options
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/catalog/catversion.h | 2 | ||||
| -rw-r--r-- | src/include/catalog/pg_proc.dat | 2 | ||||
| -rw-r--r-- | src/include/fmgr.h | 2 | ||||
| -rw-r--r-- | src/include/pgstat.h | 2 | ||||
| -rw-r--r-- | src/include/utils/wait_classes.h | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/src/include/catalog/catversion.h b/src/include/catalog/catversion.h index 70320aa0cfb..d13ed62af46 100644 --- a/src/include/catalog/catversion.h +++ b/src/include/catalog/catversion.h @@ -57,6 +57,6 @@ */ /* yyyymmddN */ -#define CATALOG_VERSION_NO 202511281 +#define CATALOG_VERSION_NO 202512051 #endif diff --git a/src/include/catalog/pg_proc.dat b/src/include/catalog/pg_proc.dat index 66af2d96d67..fd9448ec7b9 100644 --- a/src/include/catalog/pg_proc.dat +++ b/src/include/catalog/pg_proc.dat @@ -5693,7 +5693,7 @@ proparallel => 'r', prorettype => 'record', proargtypes => 'text', proallargtypes => '{text,text,int8,int8,int8,int8,int8,int8,int8,int8,int8,int8,timestamptz,timestamptz}', proargmodes => '{i,o,o,o,o,o,o,o,o,o,o,o,o,o}', - proargnames => '{slot_name,slot_name,spill_txns,spill_count,spill_bytes,stream_txns,stream_count,stream_bytes,mem_exceeded_count,total_txns,total_bytes,slotsync_skip_count,slotsync_skip_at,stats_reset}', + proargnames => '{slot_name,slot_name,spill_txns,spill_count,spill_bytes,stream_txns,stream_count,stream_bytes,mem_exceeded_count,total_txns,total_bytes,slotsync_skip_count,slotsync_last_skip,stats_reset}', prosrc => 'pg_stat_get_replication_slot' }, { oid => '6230', descr => 'statistics: check if a stats object exists', diff --git a/src/include/fmgr.h b/src/include/fmgr.h index 74fe3ea0575..c0dbe85ed1c 100644 --- a/src/include/fmgr.h +++ b/src/include/fmgr.h @@ -259,7 +259,7 @@ extern struct varlena *pg_detoast_datum_packed(struct varlena *datum); */ #define PG_FREE_IF_COPY(ptr,n) \ do { \ - if ((Pointer) (ptr) != PG_GETARG_POINTER(n)) \ + if ((ptr) != PG_GETARG_POINTER(n)) \ pfree(ptr); \ } while (0) diff --git a/src/include/pgstat.h b/src/include/pgstat.h index ad85134f27a..f23dd5870da 100644 --- a/src/include/pgstat.h +++ b/src/include/pgstat.h @@ -401,7 +401,7 @@ typedef struct PgStat_StatReplSlotEntry PgStat_Counter total_txns; PgStat_Counter total_bytes; PgStat_Counter slotsync_skip_count; - TimestampTz slotsync_skip_at; + TimestampTz slotsync_last_skip; TimestampTz stat_reset_timestamp; } PgStat_StatReplSlotEntry; diff --git a/src/include/utils/wait_classes.h b/src/include/utils/wait_classes.h index 51ee68397d5..57888aa62f7 100644 --- a/src/include/utils/wait_classes.h +++ b/src/include/utils/wait_classes.h @@ -17,7 +17,7 @@ */ #define PG_WAIT_LWLOCK 0x01000000U #define PG_WAIT_LOCK 0x03000000U -#define PG_WAIT_BUFFERPIN 0x04000000U +#define PG_WAIT_BUFFER 0x04000000U #define PG_WAIT_ACTIVITY 0x05000000U #define PG_WAIT_CLIENT 0x06000000U #define PG_WAIT_EXTENSION 0x07000000U |
