mirror of
https://github.com/postgres/postgres.git
synced 2025-12-19 17:02:53 +03:00
Update typedefs.list to match what the buildfarm currently reports.
The current list from the buildfarm includes quite a few typedef names that it used to miss. The reason is a bit obscure, but it seems likely to have something to do with our recent increased use of palloc_object and palloc_array. In any case, this makes the relevant struct declarations be much more nicely formatted, so I'll take it. Install the current list and re-run pgindent to update affected code. Syncing with the current list also removes some obsolete typedef names and fixes some alphabetization errors. Discussion: https://postgr.es/m/1681301.1765742268@sss.pgh.pa.us
This commit is contained in:
@@ -150,7 +150,7 @@ typedef struct RewriteStateData
|
|||||||
HTAB *rs_old_new_tid_map; /* unmatched B tuples */
|
HTAB *rs_old_new_tid_map; /* unmatched B tuples */
|
||||||
HTAB *rs_logical_mappings; /* logical remapping files */
|
HTAB *rs_logical_mappings; /* logical remapping files */
|
||||||
uint32 rs_num_rewrite_mappings; /* # in memory mappings */
|
uint32 rs_num_rewrite_mappings; /* # in memory mappings */
|
||||||
} RewriteStateData;
|
} RewriteStateData;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The lookup keys for the hash tables are tuple TID and xmin (we must check
|
* The lookup keys for the hash tables are tuple TID and xmin (we must check
|
||||||
|
|||||||
@@ -168,7 +168,7 @@ typedef struct GlobalTransactionData
|
|||||||
bool ondisk; /* true if prepare state file is on disk */
|
bool ondisk; /* true if prepare state file is on disk */
|
||||||
bool inredo; /* true if entry was added via xlog_redo */
|
bool inredo; /* true if entry was added via xlog_redo */
|
||||||
char gid[GIDSIZE]; /* The GID assigned to the prepared xact */
|
char gid[GIDSIZE]; /* The GID assigned to the prepared xact */
|
||||||
} GlobalTransactionData;
|
} GlobalTransactionData;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Two Phase Commit shared state. Access to this struct is protected
|
* Two Phase Commit shared state. Access to this struct is protected
|
||||||
|
|||||||
@@ -109,7 +109,7 @@ typedef struct WindowStatePerFuncData
|
|||||||
uint8 ignore_nulls; /* ignore nulls */
|
uint8 ignore_nulls; /* ignore nulls */
|
||||||
|
|
||||||
WindowObject winobj; /* object used in window function API */
|
WindowObject winobj; /* object used in window function API */
|
||||||
} WindowStatePerFuncData;
|
} WindowStatePerFuncData;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* For plain aggregate window functions, we also have one of these.
|
* For plain aggregate window functions, we also have one of these.
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ typedef struct PartitionDirectoryData
|
|||||||
MemoryContext pdir_mcxt;
|
MemoryContext pdir_mcxt;
|
||||||
HTAB *pdir_hash;
|
HTAB *pdir_hash;
|
||||||
bool omit_detached;
|
bool omit_detached;
|
||||||
} PartitionDirectoryData;
|
} PartitionDirectoryData;
|
||||||
|
|
||||||
typedef struct PartitionDirectoryEntry
|
typedef struct PartitionDirectoryEntry
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -87,7 +87,7 @@ typedef struct ArrayIteratorData
|
|||||||
/* current position information, updated on each iteration */
|
/* current position information, updated on each iteration */
|
||||||
char *data_ptr; /* our current position in the array */
|
char *data_ptr; /* our current position in the array */
|
||||||
int current_item; /* the item # we're at in the array */
|
int current_item; /* the item # we're at in the array */
|
||||||
} ArrayIteratorData;
|
} ArrayIteratorData;
|
||||||
|
|
||||||
static bool ReadArrayDimensions(char **srcptr, int *ndim_p,
|
static bool ReadArrayDimensions(char **srcptr, int *ndim_p,
|
||||||
int *dim, int *lBound,
|
int *dim, int *lBound,
|
||||||
|
|||||||
@@ -373,7 +373,7 @@ typedef struct GinScanEntryData
|
|||||||
bool reduceResult;
|
bool reduceResult;
|
||||||
uint32 predictNumberResult;
|
uint32 predictNumberResult;
|
||||||
GinBtreeData btree;
|
GinBtreeData btree;
|
||||||
} GinScanEntryData;
|
} GinScanEntryData;
|
||||||
|
|
||||||
typedef struct GinScanOpaqueData
|
typedef struct GinScanOpaqueData
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -106,7 +106,7 @@ typedef struct BitmapHeapScanDescData
|
|||||||
HeapScanDescData rs_heap_base;
|
HeapScanDescData rs_heap_base;
|
||||||
|
|
||||||
/* Holds no data */
|
/* Holds no data */
|
||||||
} BitmapHeapScanDescData;
|
} BitmapHeapScanDescData;
|
||||||
typedef struct BitmapHeapScanDescData *BitmapHeapScanDesc;
|
typedef struct BitmapHeapScanDescData *BitmapHeapScanDesc;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
@@ -191,7 +191,7 @@ typedef struct IndexScanDescData
|
|||||||
|
|
||||||
/* parallel index scan information, in shared memory */
|
/* parallel index scan information, in shared memory */
|
||||||
struct ParallelIndexScanDescData *parallel_scan;
|
struct ParallelIndexScanDescData *parallel_scan;
|
||||||
} IndexScanDescData;
|
} IndexScanDescData;
|
||||||
|
|
||||||
/* Generic structure for parallel scans */
|
/* Generic structure for parallel scans */
|
||||||
typedef struct ParallelIndexScanDescData
|
typedef struct ParallelIndexScanDescData
|
||||||
@@ -214,6 +214,6 @@ typedef struct SysScanDescData
|
|||||||
struct IndexScanDescData *iscan; /* only valid in index-scan case */
|
struct IndexScanDescData *iscan; /* only valid in index-scan case */
|
||||||
struct SnapshotData *snapshot; /* snapshot to unregister at end of scan */
|
struct SnapshotData *snapshot; /* snapshot to unregister at end of scan */
|
||||||
struct TupleTableSlot *slot;
|
struct TupleTableSlot *slot;
|
||||||
} SysScanDescData;
|
} SysScanDescData;
|
||||||
|
|
||||||
#endif /* RELSCAN_H */
|
#endif /* RELSCAN_H */
|
||||||
|
|||||||
@@ -173,7 +173,7 @@ typedef struct AggStatePerTransData
|
|||||||
FunctionCallInfo serialfn_fcinfo;
|
FunctionCallInfo serialfn_fcinfo;
|
||||||
|
|
||||||
FunctionCallInfo deserialfn_fcinfo;
|
FunctionCallInfo deserialfn_fcinfo;
|
||||||
} AggStatePerTransData;
|
} AggStatePerTransData;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* AggStatePerAggData - per-aggregate information
|
* AggStatePerAggData - per-aggregate information
|
||||||
@@ -229,7 +229,7 @@ typedef struct AggStatePerAggData
|
|||||||
* aggregates because the final function is read-write.
|
* aggregates because the final function is read-write.
|
||||||
*/
|
*/
|
||||||
bool shareable;
|
bool shareable;
|
||||||
} AggStatePerAggData;
|
} AggStatePerAggData;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* AggStatePerGroupData - per-aggregate-per-group working state
|
* AggStatePerGroupData - per-aggregate-per-group working state
|
||||||
@@ -264,7 +264,7 @@ typedef struct AggStatePerGroupData
|
|||||||
* NULL and not auto-replace it with a later input value. Only the first
|
* NULL and not auto-replace it with a later input value. Only the first
|
||||||
* non-NULL input will be auto-substituted.
|
* non-NULL input will be auto-substituted.
|
||||||
*/
|
*/
|
||||||
} AggStatePerGroupData;
|
} AggStatePerGroupData;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* AggStatePerPhaseData - per-grouping-set-phase state
|
* AggStatePerPhaseData - per-grouping-set-phase state
|
||||||
@@ -297,7 +297,7 @@ typedef struct AggStatePerPhaseData
|
|||||||
*----------
|
*----------
|
||||||
*/
|
*/
|
||||||
ExprState *evaltrans_cache[2][2];
|
ExprState *evaltrans_cache[2][2];
|
||||||
} AggStatePerPhaseData;
|
} AggStatePerPhaseData;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* AggStatePerHashData - per-hashtable state
|
* AggStatePerHashData - per-hashtable state
|
||||||
@@ -319,7 +319,7 @@ typedef struct AggStatePerHashData
|
|||||||
AttrNumber *hashGrpColIdxInput; /* hash col indices in input slot */
|
AttrNumber *hashGrpColIdxInput; /* hash col indices in input slot */
|
||||||
AttrNumber *hashGrpColIdxHash; /* indices in hash table tuples */
|
AttrNumber *hashGrpColIdxHash; /* indices in hash table tuples */
|
||||||
Agg *aggnode; /* original Agg node, for numGroups etc. */
|
Agg *aggnode; /* original Agg node, for numGroups etc. */
|
||||||
} AggStatePerHashData;
|
} AggStatePerHashData;
|
||||||
|
|
||||||
|
|
||||||
extern AggState *ExecInitAgg(Agg *node, EState *estate, int eflags);
|
extern AggState *ExecInitAgg(Agg *node, EState *estate, int eflags);
|
||||||
|
|||||||
@@ -882,7 +882,7 @@ typedef struct TupleHashTableData
|
|||||||
ExprState *in_hash_expr; /* ExprState for hashing input datatype(s) */
|
ExprState *in_hash_expr; /* ExprState for hashing input datatype(s) */
|
||||||
ExprState *cur_eq_func; /* comparator for input vs. table */
|
ExprState *cur_eq_func; /* comparator for input vs. table */
|
||||||
ExprContext *exprcontext; /* expression context */
|
ExprContext *exprcontext; /* expression context */
|
||||||
} TupleHashTableData;
|
} TupleHashTableData;
|
||||||
|
|
||||||
typedef tuplehash_iterator TupleHashIterator;
|
typedef tuplehash_iterator TupleHashIterator;
|
||||||
|
|
||||||
|
|||||||
@@ -639,7 +639,7 @@ typedef struct PartitionSchemeData
|
|||||||
|
|
||||||
/* Cached information about partition comparison functions. */
|
/* Cached information about partition comparison functions. */
|
||||||
struct FmgrInfo *partsupfunc;
|
struct FmgrInfo *partsupfunc;
|
||||||
} PartitionSchemeData;
|
} PartitionSchemeData;
|
||||||
|
|
||||||
typedef struct PartitionSchemeData *PartitionScheme;
|
typedef struct PartitionSchemeData *PartitionScheme;
|
||||||
|
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ typedef struct SkipSupportData
|
|||||||
*/
|
*/
|
||||||
SkipSupportIncDec decrement;
|
SkipSupportIncDec decrement;
|
||||||
SkipSupportIncDec increment;
|
SkipSupportIncDec increment;
|
||||||
} SkipSupportData;
|
} SkipSupportData;
|
||||||
|
|
||||||
extern SkipSupport PrepareSkipSupportFromOpclass(Oid opfamily, Oid opcintype,
|
extern SkipSupport PrepareSkipSupportFromOpclass(Oid opfamily, Oid opcintype,
|
||||||
bool reverse);
|
bool reverse);
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ typedef struct SortCoordinateData
|
|||||||
|
|
||||||
/* Private opaque state (points to shared memory) */
|
/* Private opaque state (points to shared memory) */
|
||||||
Sharedsort *sharedsort;
|
Sharedsort *sharedsort;
|
||||||
} SortCoordinateData;
|
} SortCoordinateData;
|
||||||
|
|
||||||
typedef struct SortCoordinateData *SortCoordinate;
|
typedef struct SortCoordinateData *SortCoordinate;
|
||||||
|
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ typedef union
|
|||||||
int64 hi;
|
int64 hi;
|
||||||
#endif
|
#endif
|
||||||
} hl;
|
} hl;
|
||||||
} test128;
|
} test128;
|
||||||
|
|
||||||
#define INT128_HEX_FORMAT "%016" PRIx64 "%016" PRIx64
|
#define INT128_HEX_FORMAT "%016" PRIx64 "%016" PRIx64
|
||||||
|
|
||||||
|
|||||||
@@ -48,10 +48,15 @@ AggPath
|
|||||||
AggSplit
|
AggSplit
|
||||||
AggState
|
AggState
|
||||||
AggStatePerAgg
|
AggStatePerAgg
|
||||||
|
AggStatePerAggData
|
||||||
AggStatePerGroup
|
AggStatePerGroup
|
||||||
|
AggStatePerGroupData
|
||||||
AggStatePerHash
|
AggStatePerHash
|
||||||
|
AggStatePerHashData
|
||||||
AggStatePerPhase
|
AggStatePerPhase
|
||||||
|
AggStatePerPhaseData
|
||||||
AggStatePerTrans
|
AggStatePerTrans
|
||||||
|
AggStatePerTransData
|
||||||
AggStrategy
|
AggStrategy
|
||||||
AggTransInfo
|
AggTransInfo
|
||||||
Aggref
|
Aggref
|
||||||
@@ -151,6 +156,7 @@ ArrayExpr
|
|||||||
ArrayExprIterState
|
ArrayExprIterState
|
||||||
ArrayIOData
|
ArrayIOData
|
||||||
ArrayIterator
|
ArrayIterator
|
||||||
|
ArrayIteratorData
|
||||||
ArrayMapState
|
ArrayMapState
|
||||||
ArrayMetaState
|
ArrayMetaState
|
||||||
ArraySortCachedInfo
|
ArraySortCachedInfo
|
||||||
@@ -268,6 +274,7 @@ BitmapAndState
|
|||||||
BitmapHeapPath
|
BitmapHeapPath
|
||||||
BitmapHeapScan
|
BitmapHeapScan
|
||||||
BitmapHeapScanDesc
|
BitmapHeapScanDesc
|
||||||
|
BitmapHeapScanDescData
|
||||||
BitmapHeapScanInstrumentation
|
BitmapHeapScanInstrumentation
|
||||||
BitmapHeapScanState
|
BitmapHeapScanState
|
||||||
BitmapIndexScan
|
BitmapIndexScan
|
||||||
@@ -618,7 +625,6 @@ DatumTupleFields
|
|||||||
DbInfo
|
DbInfo
|
||||||
DbInfoArr
|
DbInfoArr
|
||||||
DbLocaleInfo
|
DbLocaleInfo
|
||||||
DbOidName
|
|
||||||
DeClonePtrType
|
DeClonePtrType
|
||||||
DeadLockState
|
DeadLockState
|
||||||
DeallocateStmt
|
DeallocateStmt
|
||||||
@@ -1078,6 +1084,7 @@ GinPostingList
|
|||||||
GinPostingTreeScanItem
|
GinPostingTreeScanItem
|
||||||
GinQualCounts
|
GinQualCounts
|
||||||
GinScanEntry
|
GinScanEntry
|
||||||
|
GinScanEntryData
|
||||||
GinScanItem
|
GinScanItem
|
||||||
GinScanKey
|
GinScanKey
|
||||||
GinScanKeyData
|
GinScanKeyData
|
||||||
@@ -1102,6 +1109,7 @@ GistSplitVector
|
|||||||
GistTsVectorOptions
|
GistTsVectorOptions
|
||||||
GistVacState
|
GistVacState
|
||||||
GlobalTransaction
|
GlobalTransaction
|
||||||
|
GlobalTransactionData
|
||||||
GlobalVisHorizonKind
|
GlobalVisHorizonKind
|
||||||
GlobalVisState
|
GlobalVisState
|
||||||
GrantRoleOptions
|
GrantRoleOptions
|
||||||
@@ -1273,6 +1281,7 @@ IndexPath
|
|||||||
IndexRuntimeKeyInfo
|
IndexRuntimeKeyInfo
|
||||||
IndexScan
|
IndexScan
|
||||||
IndexScanDesc
|
IndexScanDesc
|
||||||
|
IndexScanDescData
|
||||||
IndexScanInstrumentation
|
IndexScanInstrumentation
|
||||||
IndexScanState
|
IndexScanState
|
||||||
IndexStateFlagsAction
|
IndexStateFlagsAction
|
||||||
@@ -1729,9 +1738,9 @@ MultiSortSupportData
|
|||||||
MultiXactId
|
MultiXactId
|
||||||
MultiXactMember
|
MultiXactMember
|
||||||
MultiXactOffset
|
MultiXactOffset
|
||||||
|
MultiXactOffset32
|
||||||
MultiXactStateData
|
MultiXactStateData
|
||||||
MultiXactStatus
|
MultiXactStatus
|
||||||
MultiXactWriter
|
|
||||||
MultirangeIOData
|
MultirangeIOData
|
||||||
MultirangeParseState
|
MultirangeParseState
|
||||||
MultirangeType
|
MultirangeType
|
||||||
@@ -1752,7 +1761,6 @@ NamedArgExpr
|
|||||||
NamedDSAState
|
NamedDSAState
|
||||||
NamedDSHState
|
NamedDSHState
|
||||||
NamedDSMState
|
NamedDSMState
|
||||||
NamedLWLockTranche
|
|
||||||
NamedLWLockTrancheRequest
|
NamedLWLockTrancheRequest
|
||||||
NamedTuplestoreScan
|
NamedTuplestoreScan
|
||||||
NamedTuplestoreScanState
|
NamedTuplestoreScanState
|
||||||
@@ -2126,6 +2134,7 @@ PartitionCmd
|
|||||||
PartitionDesc
|
PartitionDesc
|
||||||
PartitionDescData
|
PartitionDescData
|
||||||
PartitionDirectory
|
PartitionDirectory
|
||||||
|
PartitionDirectoryData
|
||||||
PartitionDirectoryEntry
|
PartitionDirectoryEntry
|
||||||
PartitionDispatch
|
PartitionDispatch
|
||||||
PartitionElem
|
PartitionElem
|
||||||
@@ -2145,6 +2154,7 @@ PartitionRangeBound
|
|||||||
PartitionRangeDatum
|
PartitionRangeDatum
|
||||||
PartitionRangeDatumKind
|
PartitionRangeDatumKind
|
||||||
PartitionScheme
|
PartitionScheme
|
||||||
|
PartitionSchemeData
|
||||||
PartitionSpec
|
PartitionSpec
|
||||||
PartitionStrategy
|
PartitionStrategy
|
||||||
PartitionTupleRouting
|
PartitionTupleRouting
|
||||||
@@ -2298,7 +2308,6 @@ PlannerParamItem
|
|||||||
Point
|
Point
|
||||||
Pointer
|
Pointer
|
||||||
PolicyInfo
|
PolicyInfo
|
||||||
PolyNumAggState
|
|
||||||
Pool
|
Pool
|
||||||
PopulateArrayContext
|
PopulateArrayContext
|
||||||
PopulateArrayState
|
PopulateArrayState
|
||||||
@@ -2604,6 +2613,7 @@ RewriteMappingDataEntry
|
|||||||
RewriteMappingFile
|
RewriteMappingFile
|
||||||
RewriteRule
|
RewriteRule
|
||||||
RewriteState
|
RewriteState
|
||||||
|
RewriteStateData
|
||||||
RmgrData
|
RmgrData
|
||||||
RmgrDescData
|
RmgrDescData
|
||||||
RmgrId
|
RmgrId
|
||||||
@@ -2805,6 +2815,7 @@ SinglePartitionSpec
|
|||||||
Size
|
Size
|
||||||
SkipPages
|
SkipPages
|
||||||
SkipSupport
|
SkipSupport
|
||||||
|
SkipSupportData
|
||||||
SkipSupportIncDec
|
SkipSupportIncDec
|
||||||
SlabBlock
|
SlabBlock
|
||||||
SlabContext
|
SlabContext
|
||||||
@@ -2835,6 +2846,7 @@ SortBy
|
|||||||
SortByDir
|
SortByDir
|
||||||
SortByNulls
|
SortByNulls
|
||||||
SortCoordinate
|
SortCoordinate
|
||||||
|
SortCoordinateData
|
||||||
SortGroupClause
|
SortGroupClause
|
||||||
SortItem
|
SortItem
|
||||||
SortPath
|
SortPath
|
||||||
@@ -2870,8 +2882,8 @@ SpecialJoinInfo
|
|||||||
SpinDelayStatus
|
SpinDelayStatus
|
||||||
SplitInterval
|
SplitInterval
|
||||||
SplitLR
|
SplitLR
|
||||||
SplitPartitionContext
|
|
||||||
SplitPageLayout
|
SplitPageLayout
|
||||||
|
SplitPartitionContext
|
||||||
SplitPoint
|
SplitPoint
|
||||||
SplitTextOutputData
|
SplitTextOutputData
|
||||||
SplitVar
|
SplitVar
|
||||||
@@ -2947,6 +2959,7 @@ SyncStandbySlotsConfigData
|
|||||||
SyncingRelationsState
|
SyncingRelationsState
|
||||||
SysFKRelationship
|
SysFKRelationship
|
||||||
SysScanDesc
|
SysScanDesc
|
||||||
|
SysScanDescData
|
||||||
SyscacheCallbackFunction
|
SyscacheCallbackFunction
|
||||||
SysloggerStartupData
|
SysloggerStartupData
|
||||||
SystemRowsSamplerData
|
SystemRowsSamplerData
|
||||||
@@ -3138,6 +3151,7 @@ TupleHashEntry
|
|||||||
TupleHashEntryData
|
TupleHashEntryData
|
||||||
TupleHashIterator
|
TupleHashIterator
|
||||||
TupleHashTable
|
TupleHashTable
|
||||||
|
TupleHashTableData
|
||||||
TupleQueueReader
|
TupleQueueReader
|
||||||
TupleTableSlot
|
TupleTableSlot
|
||||||
TupleTableSlotOps
|
TupleTableSlotOps
|
||||||
@@ -3213,7 +3227,6 @@ VacAttrStats
|
|||||||
VacAttrStatsP
|
VacAttrStatsP
|
||||||
VacDeadItemsInfo
|
VacDeadItemsInfo
|
||||||
VacErrPhase
|
VacErrPhase
|
||||||
VacObjFilter
|
|
||||||
VacOptValue
|
VacOptValue
|
||||||
VacuumParams
|
VacuumParams
|
||||||
VacuumRelation
|
VacuumRelation
|
||||||
@@ -3285,10 +3298,10 @@ WaitEventIO
|
|||||||
WaitEventIPC
|
WaitEventIPC
|
||||||
WaitEventSet
|
WaitEventSet
|
||||||
WaitEventTimeout
|
WaitEventTimeout
|
||||||
WaitLSNType
|
|
||||||
WaitLSNState
|
|
||||||
WaitLSNProcInfo
|
WaitLSNProcInfo
|
||||||
WaitLSNResult
|
WaitLSNResult
|
||||||
|
WaitLSNState
|
||||||
|
WaitLSNType
|
||||||
WaitPMResult
|
WaitPMResult
|
||||||
WaitStmt
|
WaitStmt
|
||||||
WalCloseMethod
|
WalCloseMethod
|
||||||
@@ -3331,6 +3344,7 @@ WindowObjectData
|
|||||||
WindowStatePerAgg
|
WindowStatePerAgg
|
||||||
WindowStatePerAggData
|
WindowStatePerAggData
|
||||||
WindowStatePerFunc
|
WindowStatePerFunc
|
||||||
|
WindowStatePerFuncData
|
||||||
WithCheckOption
|
WithCheckOption
|
||||||
WithClause
|
WithClause
|
||||||
WordBoundaryNext
|
WordBoundaryNext
|
||||||
@@ -3944,7 +3958,6 @@ pg_unicode_recompinfo
|
|||||||
pg_usec_time_t
|
pg_usec_time_t
|
||||||
pg_utf_to_local_combined
|
pg_utf_to_local_combined
|
||||||
pg_uuid_t
|
pg_uuid_t
|
||||||
pg_wc_probefunc
|
|
||||||
pg_wchar
|
pg_wchar
|
||||||
pg_wchar_tbl
|
pg_wchar_tbl
|
||||||
pgp_armor_headers_state
|
pgp_armor_headers_state
|
||||||
@@ -3965,6 +3978,8 @@ pgthreadlock_t
|
|||||||
pid_t
|
pid_t
|
||||||
pivot_field
|
pivot_field
|
||||||
planner_hook_type
|
planner_hook_type
|
||||||
|
planner_setup_hook_type
|
||||||
|
planner_shutdown_hook_type
|
||||||
planstate_tree_walker_callback
|
planstate_tree_walker_callback
|
||||||
plperl_array_info
|
plperl_array_info
|
||||||
plperl_call_data
|
plperl_call_data
|
||||||
@@ -4039,6 +4054,7 @@ reduce_outer_joins_partial_state
|
|||||||
reduce_outer_joins_pass1_state
|
reduce_outer_joins_pass1_state
|
||||||
reduce_outer_joins_pass2_state
|
reduce_outer_joins_pass2_state
|
||||||
reference
|
reference
|
||||||
|
regc_wc_probefunc
|
||||||
regex_arc_t
|
regex_arc_t
|
||||||
regexp
|
regexp
|
||||||
regexp_matches_ctx
|
regexp_matches_ctx
|
||||||
@@ -4165,6 +4181,7 @@ tar_file
|
|||||||
td_entry
|
td_entry
|
||||||
teSection
|
teSection
|
||||||
temp_tablespaces_extra
|
temp_tablespaces_extra
|
||||||
|
test128
|
||||||
test_re_flags
|
test_re_flags
|
||||||
test_regex_ctx
|
test_regex_ctx
|
||||||
test_shm_mq_header
|
test_shm_mq_header
|
||||||
@@ -4236,6 +4253,7 @@ varatt_expanded
|
|||||||
varattrib_1b
|
varattrib_1b
|
||||||
varattrib_1b_e
|
varattrib_1b_e
|
||||||
varattrib_4b
|
varattrib_4b
|
||||||
|
vartag_external
|
||||||
vbits
|
vbits
|
||||||
verifier_context
|
verifier_context
|
||||||
walrcv_alter_slot_fn
|
walrcv_alter_slot_fn
|
||||||
@@ -4364,7 +4382,6 @@ xmlGenericErrorFunc
|
|||||||
xmlNodePtr
|
xmlNodePtr
|
||||||
xmlNodeSetPtr
|
xmlNodeSetPtr
|
||||||
xmlParserCtxtPtr
|
xmlParserCtxtPtr
|
||||||
xmlParserErrors
|
|
||||||
xmlParserInputPtr
|
xmlParserInputPtr
|
||||||
xmlSaveCtxt
|
xmlSaveCtxt
|
||||||
xmlSaveCtxtPtr
|
xmlSaveCtxtPtr
|
||||||
|
|||||||
Reference in New Issue
Block a user