-
Notifications
You must be signed in to change notification settings - Fork 0
/
jit_types_info.inc
35 lines (35 loc) · 2 KB
/
jit_types_info.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// TYPES_INFO(struct_type, member_type, member_name, reg_type)
TYPES_INFO(ExprState, Datum, resvalue, UIntPtr)
TYPES_INFO(ExprState, bool, resnull, Int8)
TYPES_INFO(ExprState, TupleTableSlot *, resultslot, UIntPtr)
TYPES_INFO(ExprState, struct PlanState *, parent, UIntPtr)
TYPES_INFO(ExprContext, TupleTableSlot *, ecxt_scantuple, UIntPtr)
TYPES_INFO(ExprContext, TupleTableSlot *, ecxt_innertuple, UIntPtr)
TYPES_INFO(ExprContext, TupleTableSlot *, ecxt_outertuple, UIntPtr)
TYPES_INFO(ExprContext, Datum *, ecxt_aggvalues, UIntPtr)
TYPES_INFO(ExprContext, bool *, ecxt_aggnulls, UIntPtr)
TYPES_INFO(ExprContext, Datum, caseValue_datum, UIntPtr)
TYPES_INFO(ExprContext, bool, caseValue_isNull, Int8)
TYPES_INFO(ExprContext, Datum, domainValue_datum, UIntPtr)
TYPES_INFO(ExprContext, bool, domainValue_isNull, Int8)
TYPES_INFO(TupleTableSlot, uint16, tts_flags, UInt16)
TYPES_INFO(TupleTableSlot, AttrNumber, tts_nvalid, Int16)
TYPES_INFO(TupleTableSlot, Datum *, tts_values, UIntPtr)
TYPES_INFO(TupleTableSlot, bool *, tts_isnull, UIntPtr)
TYPES_INFO(HeapTupleTableSlot, HeapTupleData *, tuple, UIntPtr)
TYPES_INFO(HeapTupleTableSlot, uint32, off, UInt32)
TYPES_INFO(MinimalTupleTableSlot, HeapTupleData *, tuple, UIntPtr)
TYPES_INFO(MinimalTupleTableSlot, uint32, off, UInt32)
TYPES_INFO(HeapTupleData, HeapTupleHeaderData *, t_data, UIntPtr)
TYPES_INFO(HeapTupleHeaderData, uint16, t_infomask2, UInt16)
TYPES_INFO(HeapTupleHeaderData, uint16, t_infomask, UInt16)
TYPES_INFO(HeapTupleHeaderData, uint8, t_hoff, UInt8)
TYPES_INFO(HeapTupleHeaderData, bits8 *, t_bits, UIntPtr)
TYPES_INFO(FunctionCallInfoBaseData, bool, isnull, Int8)
TYPES_INFO(AggState, AggStatePerGroup *, all_pergroups, UIntPtr)
TYPES_INFO(AggState, ExprContext *, curaggcontext, UIntPtr)
TYPES_INFO(AggState, AggStatePerTrans, curpertrans, UIntPtr)
TYPES_INFO(AggState, int, current_set, Int32)
TYPES_INFO(AggStatePerGroupData, Datum, transValue, UIntPtr)
TYPES_INFO(AggStatePerGroupData, bool, transValueIsNull, Int8)
TYPES_INFO(AggStatePerGroupData, bool, noTransValue, Int8)