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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
TExecFunc arrow_areajoinsel() { return MakeIndirectExec<true, true>(&areajoinsel); }
TExecFunc arrow_areasel() { return MakeIndirectExec<true, true>(&areasel); }
TExecFunc arrow_contjoinsel() { return MakeIndirectExec<true, true>(&contjoinsel); }
TExecFunc arrow_contsel() { return MakeIndirectExec<true, true>(&contsel); }
TExecFunc arrow_float4_to_char() { return MakeIndirectExec<true, false>(&float4_to_char); }
TExecFunc arrow_float8_to_char() { return MakeIndirectExec<true, false>(&float8_to_char); }
TExecFunc arrow_ginarrayconsistent() { return MakeIndirectExec<true, true>(&ginarrayconsistent); }
TExecFunc arrow_ginarrayextract() { return MakeIndirectExec<true, true>(&ginarrayextract); }
TExecFunc arrow_ginarrayextract_2args() { return MakeIndirectExec<true, true>(&ginarrayextract_2args); }
TExecFunc arrow_ginarraytriconsistent() { return MakeIndirectExec<true, true>(&ginarraytriconsistent); }
TExecFunc arrow_ginqueryarrayextract() { return MakeIndirectExec<true, true>(&ginqueryarrayextract); }
TExecFunc arrow_iclikejoinsel() { return MakeIndirectExec<true, true>(&iclikejoinsel); }
TExecFunc arrow_iclikesel() { return MakeIndirectExec<true, true>(&iclikesel); }
TExecFunc arrow_icnlikejoinsel() { return MakeIndirectExec<true, true>(&icnlikejoinsel); }
TExecFunc arrow_icnlikesel() { return MakeIndirectExec<true, true>(&icnlikesel); }
TExecFunc arrow_icregexeqjoinsel() { return MakeIndirectExec<true, true>(&icregexeqjoinsel); }
TExecFunc arrow_icregexeqsel() { return MakeIndirectExec<true, true>(&icregexeqsel); }
TExecFunc arrow_icregexnejoinsel() { return MakeIndirectExec<true, true>(&icregexnejoinsel); }
TExecFunc arrow_icregexnesel() { return MakeIndirectExec<true, true>(&icregexnesel); }
TExecFunc arrow_int4_to_char() { return MakeIndirectExec<true, false>(&int4_to_char); }
TExecFunc arrow_int8_to_char() { return MakeIndirectExec<true, false>(&int8_to_char); }
TExecFunc arrow_interval_to_char() { return MakeIndirectExec<true, false>(&interval_to_char); }
TExecFunc arrow_likejoinsel() { return MakeIndirectExec<true, true>(&likejoinsel); }
TExecFunc arrow_likesel() { return MakeIndirectExec<true, true>(&likesel); }
TExecFunc arrow_nlikejoinsel() { return MakeIndirectExec<true, true>(&nlikejoinsel); }
TExecFunc arrow_nlikesel() { return MakeIndirectExec<true, true>(&nlikesel); }
TExecFunc arrow_numeric_to_char() { return MakeIndirectExec<true, false>(&numeric_to_char); }
TExecFunc arrow_numeric_to_number() { return MakeIndirectExec<true, false>(&numeric_to_number); }
TExecFunc arrow_positionjoinsel() { return MakeIndirectExec<true, true>(&positionjoinsel); }
TExecFunc arrow_positionsel() { return MakeIndirectExec<true, true>(&positionsel); }
TExecFunc arrow_prefixjoinsel() { return MakeIndirectExec<true, true>(&prefixjoinsel); }
TExecFunc arrow_prefixsel() { return MakeIndirectExec<true, true>(&prefixsel); }
TExecFunc arrow_regexeqjoinsel() { return MakeIndirectExec<true, true>(®exeqjoinsel); }
TExecFunc arrow_regexeqsel() { return MakeIndirectExec<true, true>(®exeqsel); }
TExecFunc arrow_regexnejoinsel() { return MakeIndirectExec<true, true>(®exnejoinsel); }
TExecFunc arrow_regexnesel() { return MakeIndirectExec<true, true>(®exnesel); }
TExecFunc arrow_text_starts_with_support() { return MakeIndirectExec<true, true>(&text_starts_with_support); }
TExecFunc arrow_texticlike_support() { return MakeIndirectExec<true, true>(&texticlike_support); }
TExecFunc arrow_texticregexeq_support() { return MakeIndirectExec<true, true>(&texticregexeq_support); }
TExecFunc arrow_textlike_support() { return MakeIndirectExec<true, true>(&textlike_support); }
TExecFunc arrow_textregexeq_support() { return MakeIndirectExec<true, true>(&textregexeq_support); }
TExecFunc arrow_thesaurus_init() { return MakeIndirectExec<true, true>(&thesaurus_init); }
TExecFunc arrow_thesaurus_lexize() { return MakeIndirectExec<true, true>(&thesaurus_lexize); }
TExecFunc arrow_timestamp_to_char() { return MakeIndirectExec<true, false>(×tamp_to_char); }
TExecFunc arrow_timestamptz_to_char() { return MakeIndirectExec<true, false>(×tamptz_to_char); }
TExecFunc arrow_to_ascii_default() { return MakeIndirectExec<true, false>(&to_ascii_default); }
TExecFunc arrow_to_ascii_enc() { return MakeIndirectExec<true, false>(&to_ascii_enc); }
TExecFunc arrow_to_ascii_encname() { return MakeIndirectExec<true, false>(&to_ascii_encname); }
TExecFunc arrow_to_date() { return MakeIndirectExec<true, true>(&to_date); }
TExecFunc arrow_to_timestamp() { return MakeIndirectExec<true, true>(&to_timestamp); }
|