@@ -170,8 +170,7 @@ pub const ALIGNOF_LONG: u32 = 8;
170170pub const ALIGNOF_PG_INT128_TYPE: u32 = 16;
171171pub const ALIGNOF_SHORT: u32 = 2;
172172pub const BLCKSZ: u32 = 8192;
173- pub const CONFIGURE_ARGS: &[u8; 73] =
174- b" '--prefix=/home/zombodb/.pgrx/13.11/pgrx-install' '--with-pgport=28813'\0";
173+ pub const CONFIGURE_ARGS : & [u8 ; 109] = b" '--prefix=/home/zombodb/.pgrx/13.11/pgrx-install' '--with-pgport=28813' '--enable-debug' '--enable-cassert'\0" ;
175174pub const DEF_PGPORT: u32 = 28813;
176175pub const DEF_PGPORT_STR: &[u8; 6] = b"28813\0";
177176pub const ENABLE_THREAD_SAFETY: u32 = 1;
@@ -331,6 +330,7 @@ pub const SIZEOF_OFF_T: u32 = 8;
331330pub const SIZEOF_SIZE_T: u32 = 8;
332331pub const SIZEOF_VOID_P: u32 = 8;
333332pub const STDC_HEADERS: u32 = 1;
333+ pub const USE_ASSERT_CHECKING: u32 = 1;
334334pub const USE_DEV_URANDOM: u32 = 1;
335335pub const USE_SSE42_CRC32C_WITH_RUNTIME_CHECK: u32 = 1;
336336pub const USE_SYSV_SHARED_MEMORY: u32 = 1;
@@ -735,9 +735,9 @@ pub const LC_IDENTIFICATION_MASK: u32 = 4096;
735735pub const LC_ALL_MASK: u32 = 8127;
736736pub const HAVE_PG_ATTRIBUTE_NORETURN: u32 = 1;
737737pub const HAVE_PRAGMA_GCC_SYSTEM_HEADER: u32 = 1;
738+ pub const __bool_true_false_are_defined: u32 = 1;
738739pub const true_: u32 = 1;
739740pub const false_: u32 = 0;
740- pub const __bool_true_false_are_defined: u32 = 1;
741741pub const INT64_FORMAT: &[u8; 4] = b"%ld\0";
742742pub const UINT64_FORMAT: &[u8; 4] = b"%lu\0";
743743pub const HAVE_INT128: u32 = 1;
@@ -13380,6 +13380,10 @@ extern "C" {
1338013380 pub fn RelationCloseSmgrByOid(relationId: Oid);
1338113381}
1338213382#[pgrx_macros::pg_guard]
13383+ extern "C" {
13384+ pub fn AssertPendingSyncs_RelationCache();
13385+ }
13386+ #[pgrx_macros::pg_guard]
1338313387extern "C" {
1338413388 pub fn AtEOXact_RelationCache(isCommit: bool);
1338513389}
@@ -19768,6 +19772,7 @@ pub struct MemoryContextMethods {
1976819772 totals: *mut MemoryContextCounters,
1976919773 ),
1977019774 >,
19775+ pub check: ::std::option::Option<unsafe extern "C" fn(context: MemoryContext)>,
1977119776}
1977219777#[repr(C)]
1977319778#[derive(Debug, Copy, Clone)]
@@ -19879,6 +19884,10 @@ extern "C" {
1987919884 pub fn MemoryContextAllowInCriticalSection(context: MemoryContext, allow: bool);
1988019885}
1988119886#[pgrx_macros::pg_guard]
19887+ extern "C" {
19888+ pub fn MemoryContextCheck(context: MemoryContext);
19889+ }
19890+ #[pgrx_macros::pg_guard]
1988219891extern "C" {
1988319892 pub fn MemoryContextContains(
1988419893 context: MemoryContext,
@@ -23577,6 +23586,10 @@ extern "C" {
2357723586 pub fn LockHeldByMe(locktag: *const LOCKTAG, lockmode: LOCKMODE) -> bool;
2357823587}
2357923588#[pgrx_macros::pg_guard]
23589+ extern "C" {
23590+ pub fn GetLockMethodLocalHash() -> *mut HTAB;
23591+ }
23592+ #[pgrx_macros::pg_guard]
2358023593extern "C" {
2358123594 pub fn LockHasWaiters(locktag: *const LOCKTAG, lockmode: LOCKMODE, sessionLock: bool) -> bool;
2358223595}
0 commit comments