pgrx_pg_sysType Alias CatCache
Source pub type CatCache = catcache;
struct CatCache {Show 16 fields
pub id: i32,
pub cc_nbuckets: i32,
pub cc_tupdesc: *mut TupleDescData,
pub cc_bucket: *mut dlist_head,
pub cc_hashfunc: [Option<unsafe extern "C" fn(_: Datum) -> u32>; 4],
pub cc_fastequal: [Option<unsafe extern "C" fn(_: Datum, _: Datum) -> bool>; 4],
pub cc_keyno: [i32; 4],
pub cc_lists: dlist_head,
pub cc_ntup: i32,
pub cc_nkeys: i32,
pub cc_relname: *const i8,
pub cc_reloid: Oid,
pub cc_indexoid: Oid,
pub cc_relisshared: bool,
pub cc_next: slist_node,
pub cc_skey: [ScanKeyData; 4],
}