@crvouga/postgres-mem 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (109) hide show
  1. package/AGENTS.md +159 -0
  2. package/COMPATIBILITY-AUDIT.md +155 -0
  3. package/COMPATIBILITY.md +87 -0
  4. package/LICENSE +21 -0
  5. package/README.md +325 -0
  6. package/compat/coverage.json +1081 -0
  7. package/compat/divergences.json +191 -0
  8. package/compat/gate-report.json +80 -0
  9. package/compat/requirements.json +1105 -0
  10. package/compat/requirements.raw.html +484 -0
  11. package/compat/scenario-types.ts +98 -0
  12. package/compat/scenarios.ts +98 -0
  13. package/compat/sections/agg.ts +45 -0
  14. package/compat/sections/api.ts +28 -0
  15. package/compat/sections/arr.ts +45 -0
  16. package/compat/sections/cat.ts +47 -0
  17. package/compat/sections/con.ts +32 -0
  18. package/compat/sections/cpy.ts +24 -0
  19. package/compat/sections/cte.ts +29 -0
  20. package/compat/sections/dat.ts +60 -0
  21. package/compat/sections/ddl.ts +55 -0
  22. package/compat/sections/det.ts +20 -0
  23. package/compat/sections/dml.ts +37 -0
  24. package/compat/sections/eco.ts +16 -0
  25. package/compat/sections/err.ts +16 -0
  26. package/compat/sections/exp.ts +53 -0
  27. package/compat/sections/fun.ts +58 -0
  28. package/compat/sections/fzz.ts +36 -0
  29. package/compat/sections/guc.ts +27 -0
  30. package/compat/sections/joi.ts +33 -0
  31. package/compat/sections/jsn.ts +46 -0
  32. package/compat/sections/lim.ts +13 -0
  33. package/compat/sections/par.ts +61 -0
  34. package/compat/sections/pre.ts +26 -0
  35. package/compat/sections/sch.ts +31 -0
  36. package/compat/sections/sel.ts +43 -0
  37. package/compat/sections/seq.ts +31 -0
  38. package/compat/sections/snp.ts +21 -0
  39. package/compat/sections/tok.ts +53 -0
  40. package/compat/sections/trg.ts +57 -0
  41. package/compat/sections/tsr.ts +37 -0
  42. package/compat/sections/txn.ts +39 -0
  43. package/compat/sections/typ.ts +55 -0
  44. package/compat/sections/uni.ts +13 -0
  45. package/compat/sections/win.ts +43 -0
  46. package/compat/smoke-baseline.json +3 -0
  47. package/compat/unsupported-register.json +2526 -0
  48. package/dist/api/bind.d.ts +10 -0
  49. package/dist/api/database.d.ts +69 -0
  50. package/dist/api/statement.d.ts +51 -0
  51. package/dist/ast/nodes.d.ts +810 -0
  52. package/dist/constraints/enforce.d.ts +39 -0
  53. package/dist/errors/error.d.ts +24 -0
  54. package/dist/executor/ddl.d.ts +23 -0
  55. package/dist/executor/dml.d.ts +10 -0
  56. package/dist/executor/execute.d.ts +11 -0
  57. package/dist/executor/relation.d.ts +60 -0
  58. package/dist/executor/select.d.ts +41 -0
  59. package/dist/executor/session.d.ts +21 -0
  60. package/dist/executor/triggers-exec.d.ts +1 -0
  61. package/dist/executor/triggers.d.ts +16 -0
  62. package/dist/executor/window.d.ts +13 -0
  63. package/dist/expressions/context.d.ts +23 -0
  64. package/dist/expressions/eval.d.ts +38 -0
  65. package/dist/expressions/operators.d.ts +8 -0
  66. package/dist/expressions/pattern.d.ts +20 -0
  67. package/dist/functions/aggregates.d.ts +17 -0
  68. package/dist/functions/array-fns.d.ts +2 -0
  69. package/dist/functions/datetime-fns.d.ts +26 -0
  70. package/dist/functions/datetime-registry.d.ts +2 -0
  71. package/dist/functions/json-fns.d.ts +7 -0
  72. package/dist/functions/math-fns.d.ts +2 -0
  73. package/dist/functions/misc-fns.d.ts +8 -0
  74. package/dist/functions/scalar.d.ts +10 -0
  75. package/dist/functions/srf.d.ts +12 -0
  76. package/dist/functions/string-fns.d.ts +4 -0
  77. package/dist/functions/tsearch-fns.d.ts +2 -0
  78. package/dist/functions/util.d.ts +14 -0
  79. package/dist/functions/window.d.ts +7 -0
  80. package/dist/index.d.ts +28 -0
  81. package/dist/index.js +19591 -0
  82. package/dist/index.js.map +7 -0
  83. package/dist/lexer/tokenize.d.ts +8 -0
  84. package/dist/parser/index.d.ts +1 -0
  85. package/dist/parser/parser.d.ts +96 -0
  86. package/dist/runtime/clock.d.ts +14 -0
  87. package/dist/runtime/index.d.ts +3 -0
  88. package/dist/runtime/options.d.ts +25 -0
  89. package/dist/runtime/prng.d.ts +48 -0
  90. package/dist/schema/catalog-tables.d.ts +1 -0
  91. package/dist/schema/catalog.d.ts +12 -0
  92. package/dist/serialization/codec.d.ts +29 -0
  93. package/dist/serialization/index.d.ts +1 -0
  94. package/dist/storage/database-state.d.ts +216 -0
  95. package/dist/transactions/manager.d.ts +25 -0
  96. package/dist/tsearch/stem.d.ts +5 -0
  97. package/dist/tsearch/tsearch.d.ts +59 -0
  98. package/dist/types/cast.d.ts +26 -0
  99. package/dist/types/compare.d.ts +18 -0
  100. package/dist/types/datetime.d.ts +68 -0
  101. package/dist/types/jsonb.d.ts +45 -0
  102. package/dist/types/numeric.d.ts +69 -0
  103. package/dist/types/resolve.d.ts +15 -0
  104. package/dist/types/timezone.d.ts +9 -0
  105. package/dist/types/value.d.ts +99 -0
  106. package/dist/unstable.d.ts +15 -0
  107. package/dist/unstable.js +19153 -0
  108. package/dist/unstable.js.map +7 -0
  109. package/package.json +120 -0
@@ -0,0 +1,2526 @@
1
+ {
2
+ "version": 1,
3
+ "functions": {
4
+ "abbrev": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
5
+ "aclcontains": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
6
+ "acldefault": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
7
+ "aclexplode": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
8
+ "aclinsert": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
9
+ "aclitemeq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
10
+ "aclitemin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
11
+ "aclitemout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
12
+ "aclremove": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
13
+ "amvalidate": "index access method / text-search configuration internals",
14
+ "any_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
15
+ "any_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
16
+ "any_value": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
17
+ "any_value_transfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
18
+ "anyarray_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
19
+ "anyarray_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
20
+ "anyarray_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
21
+ "anyarray_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
22
+ "anycompatible_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
23
+ "anycompatible_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
24
+ "anycompatiblearray_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
25
+ "anycompatiblearray_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
26
+ "anycompatiblearray_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
27
+ "anycompatiblearray_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
28
+ "anycompatiblemultirange_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
29
+ "anycompatiblemultirange_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
30
+ "anycompatiblenonarray_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
31
+ "anycompatiblenonarray_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
32
+ "anycompatiblerange_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
33
+ "anycompatiblerange_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
34
+ "anyelement_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
35
+ "anyelement_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
36
+ "anyenum_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
37
+ "anyenum_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
38
+ "anymultirange_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
39
+ "anymultirange_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
40
+ "anynonarray_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
41
+ "anynonarray_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
42
+ "anyrange_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
43
+ "anyrange_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
44
+ "anytextcat": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
45
+ "area": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
46
+ "areajoinsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
47
+ "areasel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
48
+ "array_agg_array_combine": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
49
+ "array_agg_array_deserialize": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
50
+ "array_agg_array_finalfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
51
+ "array_agg_array_serialize": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
52
+ "array_agg_array_transfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
53
+ "array_agg_combine": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
54
+ "array_agg_deserialize": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
55
+ "array_agg_finalfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
56
+ "array_agg_serialize": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
57
+ "array_agg_transfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
58
+ "array_append_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
59
+ "array_eq": "internal operator implementation function; the operator itself is the SQL surface",
60
+ "array_ge": "internal operator implementation function; the operator itself is the SQL surface",
61
+ "array_gt": "internal operator implementation function; the operator itself is the SQL surface",
62
+ "array_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
63
+ "array_larger": "internal operator implementation function; the operator itself is the SQL surface",
64
+ "array_le": "internal operator implementation function; the operator itself is the SQL surface",
65
+ "array_lt": "internal operator implementation function; the operator itself is the SQL surface",
66
+ "array_ne": "internal operator implementation function; the operator itself is the SQL surface",
67
+ "array_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
68
+ "array_prepend_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
69
+ "array_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
70
+ "array_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
71
+ "array_smaller": "internal operator implementation function; the operator itself is the SQL surface",
72
+ "array_subscript_handler": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
73
+ "array_subscript_handler_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
74
+ "array_to_tsvector": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
75
+ "array_typanalyze": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
76
+ "array_unnest_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
77
+ "arraycontained": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
78
+ "arraycontains": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
79
+ "arraycontjoinsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
80
+ "arraycontsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
81
+ "arrayoverlap": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
82
+ "bernoulli": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
83
+ "big5_to_euc_tw": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
84
+ "big5_to_mic": "internal operator implementation function; the operator itself is the SQL surface",
85
+ "big5_to_utf8": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
86
+ "binary_upgrade_add_sub_rel_state": "internal operator implementation function; the operator itself is the SQL surface",
87
+ "binary_upgrade_create_empty_extension": "internal operator implementation function; the operator itself is the SQL surface",
88
+ "binary_upgrade_logical_slot_has_caught_up": "internal operator implementation function; the operator itself is the SQL surface",
89
+ "binary_upgrade_replorigin_advance": "internal operator implementation function; the operator itself is the SQL surface",
90
+ "binary_upgrade_set_missing_value": "internal operator implementation function; the operator itself is the SQL surface",
91
+ "binary_upgrade_set_next_array_pg_type_oid": "internal operator implementation function; the operator itself is the SQL surface",
92
+ "binary_upgrade_set_next_heap_pg_class_oid": "internal operator implementation function; the operator itself is the SQL surface",
93
+ "binary_upgrade_set_next_heap_relfilenode": "internal operator implementation function; the operator itself is the SQL surface",
94
+ "binary_upgrade_set_next_index_pg_class_oid": "internal operator implementation function; the operator itself is the SQL surface",
95
+ "binary_upgrade_set_next_index_relfilenode": "internal operator implementation function; the operator itself is the SQL surface",
96
+ "binary_upgrade_set_next_multirange_array_pg_type_oid": "internal operator implementation function; the operator itself is the SQL surface",
97
+ "binary_upgrade_set_next_multirange_pg_type_oid": "internal operator implementation function; the operator itself is the SQL surface",
98
+ "binary_upgrade_set_next_pg_authid_oid": "internal operator implementation function; the operator itself is the SQL surface",
99
+ "binary_upgrade_set_next_pg_enum_oid": "internal operator implementation function; the operator itself is the SQL surface",
100
+ "binary_upgrade_set_next_pg_tablespace_oid": "internal operator implementation function; the operator itself is the SQL surface",
101
+ "binary_upgrade_set_next_pg_type_oid": "internal operator implementation function; the operator itself is the SQL surface",
102
+ "binary_upgrade_set_next_toast_pg_class_oid": "internal operator implementation function; the operator itself is the SQL surface",
103
+ "binary_upgrade_set_next_toast_relfilenode": "internal operator implementation function; the operator itself is the SQL surface",
104
+ "binary_upgrade_set_record_init_privs": "internal operator implementation function; the operator itself is the SQL surface",
105
+ "bit": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
106
+ "bit_count": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
107
+ "bit_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
108
+ "bit_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
109
+ "bit_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
110
+ "bit_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
111
+ "bitand": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
112
+ "bitcat": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
113
+ "bitcmp": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
114
+ "biteq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
115
+ "bitge": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
116
+ "bitgt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
117
+ "bitle": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
118
+ "bitlt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
119
+ "bitne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
120
+ "bitnot": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
121
+ "bitor": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
122
+ "bitshiftleft": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
123
+ "bitshiftright": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
124
+ "bittypmodin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
125
+ "bittypmodout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
126
+ "bitxor": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
127
+ "bool": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
128
+ "bool_accum": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
129
+ "bool_accum_inv": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
130
+ "bool_alltrue": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
131
+ "bool_anytrue": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
132
+ "booland_statefunc": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
133
+ "booleq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
134
+ "boolge": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
135
+ "boolgt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
136
+ "boolin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
137
+ "boolle": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
138
+ "boollt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
139
+ "boolne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
140
+ "boolor_statefunc": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
141
+ "boolout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
142
+ "boolrecv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
143
+ "boolsend": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
144
+ "bound_box": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
145
+ "box": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
146
+ "box_above": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
147
+ "box_above_eq": "internal operator implementation function; the operator itself is the SQL surface",
148
+ "box_add": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
149
+ "box_below": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
150
+ "box_below_eq": "internal operator implementation function; the operator itself is the SQL surface",
151
+ "box_center": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
152
+ "box_contain": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
153
+ "box_contain_pt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
154
+ "box_contained": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
155
+ "box_distance": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
156
+ "box_div": "internal operator implementation function; the operator itself is the SQL surface",
157
+ "box_eq": "internal operator implementation function; the operator itself is the SQL surface",
158
+ "box_ge": "internal operator implementation function; the operator itself is the SQL surface",
159
+ "box_gt": "internal operator implementation function; the operator itself is the SQL surface",
160
+ "box_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
161
+ "box_intersect": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
162
+ "box_le": "internal operator implementation function; the operator itself is the SQL surface",
163
+ "box_left": "internal operator implementation function; the operator itself is the SQL surface",
164
+ "box_lt": "internal operator implementation function; the operator itself is the SQL surface",
165
+ "box_mul": "internal operator implementation function; the operator itself is the SQL surface",
166
+ "box_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
167
+ "box_overabove": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
168
+ "box_overbelow": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
169
+ "box_overlap": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
170
+ "box_overleft": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
171
+ "box_overright": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
172
+ "box_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
173
+ "box_right": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
174
+ "box_same": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
175
+ "box_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
176
+ "box_sub": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
177
+ "bpchar": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
178
+ "bpchar_larger": "internal operator implementation function; the operator itself is the SQL surface",
179
+ "bpchar_pattern_ge": "internal operator implementation function; the operator itself is the SQL surface",
180
+ "bpchar_pattern_gt": "internal operator implementation function; the operator itself is the SQL surface",
181
+ "bpchar_pattern_le": "internal operator implementation function; the operator itself is the SQL surface",
182
+ "bpchar_pattern_lt": "internal operator implementation function; the operator itself is the SQL surface",
183
+ "bpchar_smaller": "internal operator implementation function; the operator itself is the SQL surface",
184
+ "bpchar_sortsupport": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
185
+ "bpcharcmp": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
186
+ "bpchareq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
187
+ "bpcharge": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
188
+ "bpchargt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
189
+ "bpchariclike": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
190
+ "bpcharicnlike": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
191
+ "bpcharicregexeq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
192
+ "bpcharicregexne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
193
+ "bpcharin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
194
+ "bpcharle": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
195
+ "bpcharlike": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
196
+ "bpcharlt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
197
+ "bpcharne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
198
+ "bpcharnlike": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
199
+ "bpcharout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
200
+ "bpcharrecv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
201
+ "bpcharregexeq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
202
+ "bpcharregexne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
203
+ "bpcharsend": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
204
+ "bpchartypmodin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
205
+ "bpchartypmodout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
206
+ "brin_bloom_add_value": "index access method / text-search configuration internals",
207
+ "brin_bloom_consistent": "index access method / text-search configuration internals",
208
+ "brin_bloom_opcinfo": "index access method / text-search configuration internals",
209
+ "brin_bloom_options": "index access method / text-search configuration internals",
210
+ "brin_bloom_summary_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
211
+ "brin_bloom_summary_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
212
+ "brin_bloom_summary_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
213
+ "brin_bloom_summary_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
214
+ "brin_bloom_union": "index access method / text-search configuration internals",
215
+ "brin_desummarize_range": "index access method / text-search configuration internals",
216
+ "brin_inclusion_add_value": "index access method / text-search configuration internals",
217
+ "brin_inclusion_consistent": "index access method / text-search configuration internals",
218
+ "brin_inclusion_opcinfo": "index access method / text-search configuration internals",
219
+ "brin_inclusion_union": "index access method / text-search configuration internals",
220
+ "brin_minmax_add_value": "internal operator implementation function; the operator itself is the SQL surface",
221
+ "brin_minmax_consistent": "internal operator implementation function; the operator itself is the SQL surface",
222
+ "brin_minmax_multi_add_value": "internal operator implementation function; the operator itself is the SQL surface",
223
+ "brin_minmax_multi_consistent": "internal operator implementation function; the operator itself is the SQL surface",
224
+ "brin_minmax_multi_distance_date": "internal operator implementation function; the operator itself is the SQL surface",
225
+ "brin_minmax_multi_distance_float4": "internal operator implementation function; the operator itself is the SQL surface",
226
+ "brin_minmax_multi_distance_float8": "internal operator implementation function; the operator itself is the SQL surface",
227
+ "brin_minmax_multi_distance_inet": "internal operator implementation function; the operator itself is the SQL surface",
228
+ "brin_minmax_multi_distance_int2": "internal operator implementation function; the operator itself is the SQL surface",
229
+ "brin_minmax_multi_distance_int4": "internal operator implementation function; the operator itself is the SQL surface",
230
+ "brin_minmax_multi_distance_int8": "internal operator implementation function; the operator itself is the SQL surface",
231
+ "brin_minmax_multi_distance_interval": "internal operator implementation function; the operator itself is the SQL surface",
232
+ "brin_minmax_multi_distance_macaddr": "internal operator implementation function; the operator itself is the SQL surface",
233
+ "brin_minmax_multi_distance_macaddr8": "internal operator implementation function; the operator itself is the SQL surface",
234
+ "brin_minmax_multi_distance_numeric": "internal operator implementation function; the operator itself is the SQL surface",
235
+ "brin_minmax_multi_distance_pg_lsn": "internal operator implementation function; the operator itself is the SQL surface",
236
+ "brin_minmax_multi_distance_tid": "internal operator implementation function; the operator itself is the SQL surface",
237
+ "brin_minmax_multi_distance_time": "internal operator implementation function; the operator itself is the SQL surface",
238
+ "brin_minmax_multi_distance_timestamp": "internal operator implementation function; the operator itself is the SQL surface",
239
+ "brin_minmax_multi_distance_timetz": "internal operator implementation function; the operator itself is the SQL surface",
240
+ "brin_minmax_multi_distance_uuid": "internal operator implementation function; the operator itself is the SQL surface",
241
+ "brin_minmax_multi_opcinfo": "internal operator implementation function; the operator itself is the SQL surface",
242
+ "brin_minmax_multi_options": "internal operator implementation function; the operator itself is the SQL surface",
243
+ "brin_minmax_multi_summary_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
244
+ "brin_minmax_multi_summary_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
245
+ "brin_minmax_multi_summary_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
246
+ "brin_minmax_multi_summary_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
247
+ "brin_minmax_multi_union": "internal operator implementation function; the operator itself is the SQL surface",
248
+ "brin_minmax_opcinfo": "internal operator implementation function; the operator itself is the SQL surface",
249
+ "brin_minmax_union": "internal operator implementation function; the operator itself is the SQL surface",
250
+ "brin_summarize_new_values": "internal operator implementation function; the operator itself is the SQL surface",
251
+ "brin_summarize_range": "index access method / text-search configuration internals",
252
+ "brinhandler": "index access method / text-search configuration internals",
253
+ "broadcast": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
254
+ "btarraycmp": "index access method / text-search configuration internals",
255
+ "btboolcmp": "index access method / text-search configuration internals",
256
+ "btboolskipsupport": "index access method / text-search configuration internals",
257
+ "btbpchar_pattern_cmp": "internal operator implementation function; the operator itself is the SQL surface",
258
+ "btbpchar_pattern_sortsupport": "index access method / text-search configuration internals",
259
+ "btcharcmp": "index access method / text-search configuration internals",
260
+ "btcharskipsupport": "index access method / text-search configuration internals",
261
+ "btequalimage": "index access method / text-search configuration internals",
262
+ "btfloat48cmp": "index access method / text-search configuration internals",
263
+ "btfloat4cmp": "index access method / text-search configuration internals",
264
+ "btfloat4sortsupport": "index access method / text-search configuration internals",
265
+ "btfloat84cmp": "index access method / text-search configuration internals",
266
+ "btfloat8cmp": "index access method / text-search configuration internals",
267
+ "btfloat8sortsupport": "index access method / text-search configuration internals",
268
+ "bthandler": "index access method / text-search configuration internals",
269
+ "btint24cmp": "index access method / text-search configuration internals",
270
+ "btint28cmp": "index access method / text-search configuration internals",
271
+ "btint2cmp": "index access method / text-search configuration internals",
272
+ "btint2skipsupport": "index access method / text-search configuration internals",
273
+ "btint2sortsupport": "index access method / text-search configuration internals",
274
+ "btint42cmp": "index access method / text-search configuration internals",
275
+ "btint48cmp": "index access method / text-search configuration internals",
276
+ "btint4cmp": "index access method / text-search configuration internals",
277
+ "btint4skipsupport": "index access method / text-search configuration internals",
278
+ "btint4sortsupport": "index access method / text-search configuration internals",
279
+ "btint82cmp": "index access method / text-search configuration internals",
280
+ "btint84cmp": "index access method / text-search configuration internals",
281
+ "btint8cmp": "index access method / text-search configuration internals",
282
+ "btint8skipsupport": "index access method / text-search configuration internals",
283
+ "btint8sortsupport": "index access method / text-search configuration internals",
284
+ "btnamecmp": "index access method / text-search configuration internals",
285
+ "btnamesortsupport": "index access method / text-search configuration internals",
286
+ "btnametextcmp": "index access method / text-search configuration internals",
287
+ "btoidcmp": "index access method / text-search configuration internals",
288
+ "btoidskipsupport": "index access method / text-search configuration internals",
289
+ "btoidsortsupport": "index access method / text-search configuration internals",
290
+ "btoidvectorcmp": "index access method / text-search configuration internals",
291
+ "btrecordcmp": "index access method / text-search configuration internals",
292
+ "btrecordimagecmp": "index access method / text-search configuration internals",
293
+ "bttext_pattern_cmp": "internal operator implementation function; the operator itself is the SQL surface",
294
+ "bttext_pattern_sortsupport": "index access method / text-search configuration internals",
295
+ "bttextcmp": "index access method / text-search configuration internals",
296
+ "bttextnamecmp": "index access method / text-search configuration internals",
297
+ "bttextsortsupport": "index access method / text-search configuration internals",
298
+ "bttidcmp": "index access method / text-search configuration internals",
299
+ "btvarstrequalimage": "index access method / text-search configuration internals",
300
+ "bytea": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
301
+ "bytea_larger": "internal operator implementation function; the operator itself is the SQL surface",
302
+ "bytea_smaller": "internal operator implementation function; the operator itself is the SQL surface",
303
+ "bytea_sortsupport": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
304
+ "bytea_string_agg_finalfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
305
+ "bytea_string_agg_transfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
306
+ "byteacat": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
307
+ "byteacmp": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
308
+ "byteaeq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
309
+ "byteage": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
310
+ "byteagt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
311
+ "byteain": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
312
+ "byteale": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
313
+ "bytealike": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
314
+ "bytealt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
315
+ "byteane": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
316
+ "byteanlike": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
317
+ "byteaout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
318
+ "bytearecv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
319
+ "byteasend": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
320
+ "casefold": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
321
+ "cash_cmp": "internal operator implementation function; the operator itself is the SQL surface",
322
+ "cash_div_cash": "internal operator implementation function; the operator itself is the SQL surface",
323
+ "cash_div_flt4": "internal operator implementation function; the operator itself is the SQL surface",
324
+ "cash_div_flt8": "internal operator implementation function; the operator itself is the SQL surface",
325
+ "cash_div_int2": "internal operator implementation function; the operator itself is the SQL surface",
326
+ "cash_div_int4": "internal operator implementation function; the operator itself is the SQL surface",
327
+ "cash_div_int8": "internal operator implementation function; the operator itself is the SQL surface",
328
+ "cash_eq": "internal operator implementation function; the operator itself is the SQL surface",
329
+ "cash_ge": "internal operator implementation function; the operator itself is the SQL surface",
330
+ "cash_gt": "internal operator implementation function; the operator itself is the SQL surface",
331
+ "cash_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
332
+ "cash_le": "internal operator implementation function; the operator itself is the SQL surface",
333
+ "cash_lt": "internal operator implementation function; the operator itself is the SQL surface",
334
+ "cash_mi": "internal operator implementation function; the operator itself is the SQL surface",
335
+ "cash_mul_flt4": "internal operator implementation function; the operator itself is the SQL surface",
336
+ "cash_mul_flt8": "internal operator implementation function; the operator itself is the SQL surface",
337
+ "cash_mul_int2": "internal operator implementation function; the operator itself is the SQL surface",
338
+ "cash_mul_int4": "internal operator implementation function; the operator itself is the SQL surface",
339
+ "cash_mul_int8": "internal operator implementation function; the operator itself is the SQL surface",
340
+ "cash_ne": "internal operator implementation function; the operator itself is the SQL surface",
341
+ "cash_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
342
+ "cash_pl": "internal operator implementation function; the operator itself is the SQL surface",
343
+ "cash_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
344
+ "cash_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
345
+ "cash_words": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
346
+ "cashlarger": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
347
+ "cashsmaller": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
348
+ "center": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
349
+ "char": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
350
+ "chareq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
351
+ "charge": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
352
+ "chargt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
353
+ "charin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
354
+ "charle": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
355
+ "charlt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
356
+ "charne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
357
+ "charout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
358
+ "charrecv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
359
+ "charsend": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
360
+ "cideq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
361
+ "cidin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
362
+ "cidout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
363
+ "cidr": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
364
+ "cidr_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
365
+ "cidr_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
366
+ "cidr_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
367
+ "cidr_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
368
+ "cidrecv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
369
+ "cidsend": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
370
+ "circle": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
371
+ "circle_above": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
372
+ "circle_add_pt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
373
+ "circle_below": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
374
+ "circle_center": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
375
+ "circle_contain": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
376
+ "circle_contain_pt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
377
+ "circle_contained": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
378
+ "circle_distance": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
379
+ "circle_div_pt": "internal operator implementation function; the operator itself is the SQL surface",
380
+ "circle_eq": "internal operator implementation function; the operator itself is the SQL surface",
381
+ "circle_ge": "internal operator implementation function; the operator itself is the SQL surface",
382
+ "circle_gt": "internal operator implementation function; the operator itself is the SQL surface",
383
+ "circle_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
384
+ "circle_le": "internal operator implementation function; the operator itself is the SQL surface",
385
+ "circle_left": "internal operator implementation function; the operator itself is the SQL surface",
386
+ "circle_lt": "internal operator implementation function; the operator itself is the SQL surface",
387
+ "circle_mul_pt": "internal operator implementation function; the operator itself is the SQL surface",
388
+ "circle_ne": "internal operator implementation function; the operator itself is the SQL surface",
389
+ "circle_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
390
+ "circle_overabove": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
391
+ "circle_overbelow": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
392
+ "circle_overlap": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
393
+ "circle_overleft": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
394
+ "circle_overright": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
395
+ "circle_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
396
+ "circle_right": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
397
+ "circle_same": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
398
+ "circle_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
399
+ "circle_sub_pt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
400
+ "close_ls": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
401
+ "close_lseg": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
402
+ "close_pb": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
403
+ "close_pl": "internal operator implementation function; the operator itself is the SQL surface",
404
+ "close_ps": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
405
+ "close_sb": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
406
+ "contjoinsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
407
+ "contsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
408
+ "convert": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
409
+ "crc32": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
410
+ "crc32c": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
411
+ "cstring_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
412
+ "cstring_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
413
+ "cstring_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
414
+ "cstring_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
415
+ "cume_dist_final": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
416
+ "current_query": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
417
+ "currtid2": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
418
+ "cursor_to_xml": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
419
+ "cursor_to_xmlschema": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
420
+ "database_to_xml": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
421
+ "database_to_xml_and_xmlschema": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
422
+ "database_to_xmlschema": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
423
+ "date": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
424
+ "date_add": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
425
+ "date_cmp": "internal operator implementation function; the operator itself is the SQL surface",
426
+ "date_cmp_timestamp": "internal operator implementation function; the operator itself is the SQL surface",
427
+ "date_cmp_timestamptz": "internal operator implementation function; the operator itself is the SQL surface",
428
+ "date_eq": "internal operator implementation function; the operator itself is the SQL surface",
429
+ "date_eq_timestamp": "internal operator implementation function; the operator itself is the SQL surface",
430
+ "date_eq_timestamptz": "internal operator implementation function; the operator itself is the SQL surface",
431
+ "date_ge": "internal operator implementation function; the operator itself is the SQL surface",
432
+ "date_ge_timestamp": "internal operator implementation function; the operator itself is the SQL surface",
433
+ "date_ge_timestamptz": "internal operator implementation function; the operator itself is the SQL surface",
434
+ "date_gt": "internal operator implementation function; the operator itself is the SQL surface",
435
+ "date_gt_timestamp": "internal operator implementation function; the operator itself is the SQL surface",
436
+ "date_gt_timestamptz": "internal operator implementation function; the operator itself is the SQL surface",
437
+ "date_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
438
+ "date_larger": "internal operator implementation function; the operator itself is the SQL surface",
439
+ "date_le": "internal operator implementation function; the operator itself is the SQL surface",
440
+ "date_le_timestamp": "internal operator implementation function; the operator itself is the SQL surface",
441
+ "date_le_timestamptz": "internal operator implementation function; the operator itself is the SQL surface",
442
+ "date_lt": "internal operator implementation function; the operator itself is the SQL surface",
443
+ "date_lt_timestamp": "internal operator implementation function; the operator itself is the SQL surface",
444
+ "date_lt_timestamptz": "internal operator implementation function; the operator itself is the SQL surface",
445
+ "date_mi": "internal operator implementation function; the operator itself is the SQL surface",
446
+ "date_mi_interval": "internal operator implementation function; the operator itself is the SQL surface",
447
+ "date_mii": "internal operator implementation function; the operator itself is the SQL surface",
448
+ "date_ne": "internal operator implementation function; the operator itself is the SQL surface",
449
+ "date_ne_timestamp": "internal operator implementation function; the operator itself is the SQL surface",
450
+ "date_ne_timestamptz": "internal operator implementation function; the operator itself is the SQL surface",
451
+ "date_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
452
+ "date_pl_interval": "internal operator implementation function; the operator itself is the SQL surface",
453
+ "date_pli": "internal operator implementation function; the operator itself is the SQL surface",
454
+ "date_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
455
+ "date_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
456
+ "date_skipsupport": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
457
+ "date_smaller": "internal operator implementation function; the operator itself is the SQL surface",
458
+ "date_sortsupport": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
459
+ "date_subtract": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
460
+ "datemultirange": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
461
+ "daterange": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
462
+ "daterange_canonical": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
463
+ "daterange_subdiff": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
464
+ "datetime_pl": "internal operator implementation function; the operator itself is the SQL surface",
465
+ "datetimetz_pl": "internal operator implementation function; the operator itself is the SQL surface",
466
+ "dcbrt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
467
+ "dense_rank_final": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
468
+ "dexp": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
469
+ "diagonal": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
470
+ "diameter": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
471
+ "dispell_init": "index access method / text-search configuration internals",
472
+ "dispell_lexize": "internal operator implementation function; the operator itself is the SQL surface",
473
+ "dist_bp": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
474
+ "dist_bs": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
475
+ "dist_cpoint": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
476
+ "dist_cpoly": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
477
+ "dist_lp": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
478
+ "dist_ls": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
479
+ "dist_pathp": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
480
+ "dist_pb": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
481
+ "dist_pc": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
482
+ "dist_pl": "internal operator implementation function; the operator itself is the SQL surface",
483
+ "dist_polyc": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
484
+ "dist_polyp": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
485
+ "dist_ppath": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
486
+ "dist_ppoly": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
487
+ "dist_ps": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
488
+ "dist_sb": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
489
+ "dist_sl": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
490
+ "dist_sp": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
491
+ "dlog1": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
492
+ "dlog10": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
493
+ "domain_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
494
+ "domain_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
495
+ "dpow": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
496
+ "dround": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
497
+ "dsimple_init": "index access method / text-search configuration internals",
498
+ "dsimple_lexize": "internal operator implementation function; the operator itself is the SQL surface",
499
+ "dsnowball_init": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
500
+ "dsnowball_lexize": "internal operator implementation function; the operator itself is the SQL surface",
501
+ "dsqrt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
502
+ "dsynonym_init": "index access method / text-search configuration internals",
503
+ "dsynonym_lexize": "internal operator implementation function; the operator itself is the SQL surface",
504
+ "dtrunc": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
505
+ "elem_contained_by_multirange": "internal operator implementation function; the operator itself is the SQL surface",
506
+ "elem_contained_by_range": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
507
+ "elem_contained_by_range_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
508
+ "enum_cmp": "internal operator implementation function; the operator itself is the SQL surface",
509
+ "enum_eq": "internal operator implementation function; the operator itself is the SQL surface",
510
+ "enum_first": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
511
+ "enum_ge": "internal operator implementation function; the operator itself is the SQL surface",
512
+ "enum_gt": "internal operator implementation function; the operator itself is the SQL surface",
513
+ "enum_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
514
+ "enum_larger": "internal operator implementation function; the operator itself is the SQL surface",
515
+ "enum_last": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
516
+ "enum_le": "internal operator implementation function; the operator itself is the SQL surface",
517
+ "enum_lt": "internal operator implementation function; the operator itself is the SQL surface",
518
+ "enum_ne": "internal operator implementation function; the operator itself is the SQL surface",
519
+ "enum_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
520
+ "enum_range": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
521
+ "enum_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
522
+ "enum_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
523
+ "enum_smaller": "internal operator implementation function; the operator itself is the SQL surface",
524
+ "eqjoinsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
525
+ "eqsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
526
+ "euc_cn_to_mic": "internal operator implementation function; the operator itself is the SQL surface",
527
+ "euc_cn_to_utf8": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
528
+ "euc_jis_2004_to_shift_jis_2004": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
529
+ "euc_jis_2004_to_utf8": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
530
+ "euc_jp_to_mic": "internal operator implementation function; the operator itself is the SQL surface",
531
+ "euc_jp_to_sjis": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
532
+ "euc_jp_to_utf8": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
533
+ "euc_kr_to_mic": "internal operator implementation function; the operator itself is the SQL surface",
534
+ "euc_kr_to_utf8": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
535
+ "euc_tw_to_big5": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
536
+ "euc_tw_to_mic": "internal operator implementation function; the operator itself is the SQL surface",
537
+ "euc_tw_to_utf8": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
538
+ "event_trigger_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
539
+ "event_trigger_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
540
+ "family": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
541
+ "fdw_handler_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
542
+ "fdw_handler_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
543
+ "float4": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
544
+ "float48div": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
545
+ "float48eq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
546
+ "float48ge": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
547
+ "float48gt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
548
+ "float48le": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
549
+ "float48lt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
550
+ "float48mi": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
551
+ "float48mul": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
552
+ "float48ne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
553
+ "float48pl": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
554
+ "float4_accum": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
555
+ "float4abs": "internal operator implementation function; the operator itself is the SQL surface",
556
+ "float4div": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
557
+ "float4eq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
558
+ "float4ge": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
559
+ "float4gt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
560
+ "float4in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
561
+ "float4larger": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
562
+ "float4le": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
563
+ "float4lt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
564
+ "float4mi": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
565
+ "float4mul": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
566
+ "float4ne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
567
+ "float4out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
568
+ "float4pl": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
569
+ "float4recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
570
+ "float4send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
571
+ "float4smaller": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
572
+ "float4um": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
573
+ "float4up": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
574
+ "float8": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
575
+ "float84div": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
576
+ "float84eq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
577
+ "float84ge": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
578
+ "float84gt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
579
+ "float84le": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
580
+ "float84lt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
581
+ "float84mi": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
582
+ "float84mul": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
583
+ "float84ne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
584
+ "float84pl": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
585
+ "float8_accum": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
586
+ "float8_avg": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
587
+ "float8_combine": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
588
+ "float8_corr": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
589
+ "float8_covar_pop": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
590
+ "float8_covar_samp": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
591
+ "float8_regr_accum": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
592
+ "float8_regr_avgx": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
593
+ "float8_regr_avgy": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
594
+ "float8_regr_combine": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
595
+ "float8_regr_intercept": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
596
+ "float8_regr_r2": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
597
+ "float8_regr_slope": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
598
+ "float8_regr_sxx": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
599
+ "float8_regr_sxy": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
600
+ "float8_regr_syy": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
601
+ "float8_stddev_pop": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
602
+ "float8_stddev_samp": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
603
+ "float8_var_pop": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
604
+ "float8_var_samp": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
605
+ "float8abs": "internal operator implementation function; the operator itself is the SQL surface",
606
+ "float8div": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
607
+ "float8eq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
608
+ "float8ge": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
609
+ "float8gt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
610
+ "float8in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
611
+ "float8larger": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
612
+ "float8le": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
613
+ "float8lt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
614
+ "float8mi": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
615
+ "float8mul": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
616
+ "float8ne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
617
+ "float8out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
618
+ "float8pl": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
619
+ "float8recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
620
+ "float8send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
621
+ "float8smaller": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
622
+ "float8um": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
623
+ "float8up": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
624
+ "flt4_mul_cash": "internal operator implementation function; the operator itself is the SQL surface",
625
+ "flt8_mul_cash": "internal operator implementation function; the operator itself is the SQL surface",
626
+ "fmgr_c_validator": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
627
+ "fmgr_internal_validator": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
628
+ "fmgr_sql_validator": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
629
+ "gamma": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
630
+ "gb18030_to_utf8": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
631
+ "gbk_to_utf8": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
632
+ "generate_series_int4_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
633
+ "generate_series_int8_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
634
+ "generate_series_numeric_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
635
+ "generate_series_timestamp_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
636
+ "get_bit": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
637
+ "get_current_ts_config": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
638
+ "getdatabaseencoding": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
639
+ "getpgusername": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
640
+ "gin_clean_pending_list": "index access method / text-search configuration internals",
641
+ "gin_cmp_prefix": "internal operator implementation function; the operator itself is the SQL surface",
642
+ "gin_cmp_tslexeme": "internal operator implementation function; the operator itself is the SQL surface",
643
+ "gin_compare_jsonb": "index access method / text-search configuration internals",
644
+ "gin_consistent_jsonb": "index access method / text-search configuration internals",
645
+ "gin_consistent_jsonb_path": "index access method / text-search configuration internals",
646
+ "gin_extract_jsonb": "index access method / text-search configuration internals",
647
+ "gin_extract_jsonb_path": "index access method / text-search configuration internals",
648
+ "gin_extract_jsonb_query": "index access method / text-search configuration internals",
649
+ "gin_extract_jsonb_query_path": "index access method / text-search configuration internals",
650
+ "gin_extract_tsquery": "index access method / text-search configuration internals",
651
+ "gin_extract_tsvector": "index access method / text-search configuration internals",
652
+ "gin_triconsistent_jsonb": "index access method / text-search configuration internals",
653
+ "gin_triconsistent_jsonb_path": "index access method / text-search configuration internals",
654
+ "gin_tsquery_consistent": "index access method / text-search configuration internals",
655
+ "gin_tsquery_triconsistent": "index access method / text-search configuration internals",
656
+ "ginarrayconsistent": "index access method / text-search configuration internals",
657
+ "ginarrayextract": "index access method / text-search configuration internals",
658
+ "ginarraytriconsistent": "index access method / text-search configuration internals",
659
+ "ginhandler": "index access method / text-search configuration internals",
660
+ "ginqueryarrayextract": "index access method / text-search configuration internals",
661
+ "gist_box_consistent": "index access method / text-search configuration internals",
662
+ "gist_box_distance": "index access method / text-search configuration internals",
663
+ "gist_box_penalty": "index access method / text-search configuration internals",
664
+ "gist_box_picksplit": "index access method / text-search configuration internals",
665
+ "gist_box_same": "index access method / text-search configuration internals",
666
+ "gist_box_union": "index access method / text-search configuration internals",
667
+ "gist_circle_compress": "index access method / text-search configuration internals",
668
+ "gist_circle_consistent": "index access method / text-search configuration internals",
669
+ "gist_circle_distance": "index access method / text-search configuration internals",
670
+ "gist_point_compress": "index access method / text-search configuration internals",
671
+ "gist_point_consistent": "index access method / text-search configuration internals",
672
+ "gist_point_distance": "index access method / text-search configuration internals",
673
+ "gist_point_fetch": "index access method / text-search configuration internals",
674
+ "gist_point_sortsupport": "index access method / text-search configuration internals",
675
+ "gist_poly_compress": "index access method / text-search configuration internals",
676
+ "gist_poly_consistent": "index access method / text-search configuration internals",
677
+ "gist_poly_distance": "index access method / text-search configuration internals",
678
+ "gist_translate_cmptype_common": "internal operator implementation function; the operator itself is the SQL surface",
679
+ "gisthandler": "index access method / text-search configuration internals",
680
+ "gtsquery_compress": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
681
+ "gtsquery_consistent": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
682
+ "gtsquery_penalty": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
683
+ "gtsquery_picksplit": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
684
+ "gtsquery_same": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
685
+ "gtsquery_union": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
686
+ "gtsvector_compress": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
687
+ "gtsvector_consistent": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
688
+ "gtsvector_decompress": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
689
+ "gtsvector_options": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
690
+ "gtsvector_penalty": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
691
+ "gtsvector_picksplit": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
692
+ "gtsvector_same": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
693
+ "gtsvector_union": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
694
+ "gtsvectorin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
695
+ "gtsvectorout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
696
+ "has_any_column_privilege": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
697
+ "has_database_privilege": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
698
+ "has_foreign_data_wrapper_privilege": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
699
+ "has_function_privilege": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
700
+ "has_language_privilege": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
701
+ "has_largeobject_privilege": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
702
+ "has_parameter_privilege": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
703
+ "has_sequence_privilege": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
704
+ "has_server_privilege": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
705
+ "has_tablespace_privilege": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
706
+ "has_type_privilege": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
707
+ "hash_aclitem": "internal hash support function for hash indexes/joins",
708
+ "hash_aclitem_extended": "internal hash support function for hash indexes/joins",
709
+ "hash_array": "internal hash support function for hash indexes/joins",
710
+ "hash_array_extended": "internal hash support function for hash indexes/joins",
711
+ "hash_multirange": "internal hash support function for hash indexes/joins",
712
+ "hash_multirange_extended": "internal hash support function for hash indexes/joins",
713
+ "hash_numeric": "internal hash support function for hash indexes/joins",
714
+ "hash_numeric_extended": "internal hash support function for hash indexes/joins",
715
+ "hash_range": "internal hash support function for hash indexes/joins",
716
+ "hash_range_extended": "internal hash support function for hash indexes/joins",
717
+ "hash_record": "internal hash support function for hash indexes/joins",
718
+ "hash_record_extended": "internal hash support function for hash indexes/joins",
719
+ "hashbool": "internal hash support function for hash indexes/joins",
720
+ "hashboolextended": "internal hash support function for hash indexes/joins",
721
+ "hashbpchar": "internal hash support function for hash indexes/joins",
722
+ "hashbpcharextended": "internal hash support function for hash indexes/joins",
723
+ "hashbytea": "internal hash support function for hash indexes/joins",
724
+ "hashbyteaextended": "internal hash support function for hash indexes/joins",
725
+ "hashchar": "internal hash support function for hash indexes/joins",
726
+ "hashcharextended": "internal hash support function for hash indexes/joins",
727
+ "hashcid": "internal hash support function for hash indexes/joins",
728
+ "hashcidextended": "internal hash support function for hash indexes/joins",
729
+ "hashdate": "internal hash support function for hash indexes/joins",
730
+ "hashdateextended": "internal hash support function for hash indexes/joins",
731
+ "hashenum": "internal hash support function for hash indexes/joins",
732
+ "hashenumextended": "internal hash support function for hash indexes/joins",
733
+ "hashfloat4": "internal hash support function for hash indexes/joins",
734
+ "hashfloat4extended": "internal hash support function for hash indexes/joins",
735
+ "hashfloat8": "internal hash support function for hash indexes/joins",
736
+ "hashfloat8extended": "internal hash support function for hash indexes/joins",
737
+ "hashhandler": "internal hash support function for hash indexes/joins",
738
+ "hashinet": "internal hash support function for hash indexes/joins",
739
+ "hashinetextended": "internal hash support function for hash indexes/joins",
740
+ "hashint2": "internal hash support function for hash indexes/joins",
741
+ "hashint2extended": "internal hash support function for hash indexes/joins",
742
+ "hashint4": "internal hash support function for hash indexes/joins",
743
+ "hashint4extended": "internal hash support function for hash indexes/joins",
744
+ "hashint8": "internal hash support function for hash indexes/joins",
745
+ "hashint8extended": "internal hash support function for hash indexes/joins",
746
+ "hashmacaddr": "internal hash support function for hash indexes/joins",
747
+ "hashmacaddr8": "internal hash support function for hash indexes/joins",
748
+ "hashmacaddr8extended": "internal hash support function for hash indexes/joins",
749
+ "hashmacaddrextended": "internal hash support function for hash indexes/joins",
750
+ "hashname": "internal hash support function for hash indexes/joins",
751
+ "hashnameextended": "internal hash support function for hash indexes/joins",
752
+ "hashoid": "internal hash support function for hash indexes/joins",
753
+ "hashoidextended": "internal hash support function for hash indexes/joins",
754
+ "hashoidvector": "internal hash support function for hash indexes/joins",
755
+ "hashoidvectorextended": "internal hash support function for hash indexes/joins",
756
+ "hashtext": "internal hash support function for hash indexes/joins",
757
+ "hashtextextended": "internal hash support function for hash indexes/joins",
758
+ "hashtid": "internal hash support function for hash indexes/joins",
759
+ "hashtidextended": "internal hash support function for hash indexes/joins",
760
+ "hashvarlena": "internal hash support function for hash indexes/joins",
761
+ "hashvarlenaextended": "internal hash support function for hash indexes/joins",
762
+ "hashxid": "internal hash support function for hash indexes/joins",
763
+ "hashxid8": "internal hash support function for hash indexes/joins",
764
+ "hashxid8extended": "internal hash support function for hash indexes/joins",
765
+ "hashxidextended": "internal hash support function for hash indexes/joins",
766
+ "heap_tableam_handler": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
767
+ "height": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
768
+ "host": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
769
+ "hostmask": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
770
+ "iclikejoinsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
771
+ "iclikesel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
772
+ "icnlikejoinsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
773
+ "icnlikesel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
774
+ "icregexeqjoinsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
775
+ "icregexeqsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
776
+ "icregexnejoinsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
777
+ "icregexnesel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
778
+ "icu_unicode_version": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
779
+ "in_range": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
780
+ "index_am_handler_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
781
+ "index_am_handler_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
782
+ "inet_client_port": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
783
+ "inet_gist_compress": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
784
+ "inet_gist_consistent": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
785
+ "inet_gist_fetch": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
786
+ "inet_gist_penalty": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
787
+ "inet_gist_picksplit": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
788
+ "inet_gist_same": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
789
+ "inet_gist_union": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
790
+ "inet_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
791
+ "inet_merge": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
792
+ "inet_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
793
+ "inet_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
794
+ "inet_same_family": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
795
+ "inet_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
796
+ "inet_server_port": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
797
+ "inet_spg_choose": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
798
+ "inet_spg_config": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
799
+ "inet_spg_inner_consistent": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
800
+ "inet_spg_leaf_consistent": "internal operator implementation function; the operator itself is the SQL surface",
801
+ "inet_spg_picksplit": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
802
+ "inetand": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
803
+ "inetmi": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
804
+ "inetmi_int8": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
805
+ "inetnot": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
806
+ "inetor": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
807
+ "inetpl": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
808
+ "int2": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
809
+ "int24div": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
810
+ "int24eq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
811
+ "int24ge": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
812
+ "int24gt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
813
+ "int24le": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
814
+ "int24lt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
815
+ "int24mi": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
816
+ "int24mul": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
817
+ "int24ne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
818
+ "int24pl": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
819
+ "int28div": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
820
+ "int28eq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
821
+ "int28ge": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
822
+ "int28gt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
823
+ "int28le": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
824
+ "int28lt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
825
+ "int28mi": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
826
+ "int28mul": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
827
+ "int28ne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
828
+ "int28pl": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
829
+ "int2_accum": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
830
+ "int2_accum_inv": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
831
+ "int2_avg_accum": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
832
+ "int2_avg_accum_inv": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
833
+ "int2_mul_cash": "internal operator implementation function; the operator itself is the SQL surface",
834
+ "int2_sum": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
835
+ "int2abs": "internal operator implementation function; the operator itself is the SQL surface",
836
+ "int2and": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
837
+ "int2div": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
838
+ "int2eq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
839
+ "int2ge": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
840
+ "int2gt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
841
+ "int2in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
842
+ "int2int4_sum": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
843
+ "int2larger": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
844
+ "int2le": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
845
+ "int2lt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
846
+ "int2mi": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
847
+ "int2mod": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
848
+ "int2mul": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
849
+ "int2ne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
850
+ "int2not": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
851
+ "int2or": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
852
+ "int2out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
853
+ "int2pl": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
854
+ "int2recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
855
+ "int2send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
856
+ "int2shl": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
857
+ "int2shr": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
858
+ "int2smaller": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
859
+ "int2um": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
860
+ "int2up": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
861
+ "int2vectorin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
862
+ "int2vectorout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
863
+ "int2vectorrecv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
864
+ "int2vectorsend": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
865
+ "int2xor": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
866
+ "int4": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
867
+ "int42div": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
868
+ "int42eq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
869
+ "int42ge": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
870
+ "int42gt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
871
+ "int42le": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
872
+ "int42lt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
873
+ "int42mi": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
874
+ "int42mul": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
875
+ "int42ne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
876
+ "int42pl": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
877
+ "int48div": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
878
+ "int48eq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
879
+ "int48ge": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
880
+ "int48gt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
881
+ "int48le": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
882
+ "int48lt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
883
+ "int48mi": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
884
+ "int48mul": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
885
+ "int48ne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
886
+ "int48pl": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
887
+ "int4_accum": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
888
+ "int4_accum_inv": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
889
+ "int4_avg_accum": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
890
+ "int4_avg_accum_inv": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
891
+ "int4_avg_combine": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
892
+ "int4_mul_cash": "internal operator implementation function; the operator itself is the SQL surface",
893
+ "int4_sum": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
894
+ "int4abs": "internal operator implementation function; the operator itself is the SQL surface",
895
+ "int4and": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
896
+ "int4div": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
897
+ "int4eq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
898
+ "int4ge": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
899
+ "int4gt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
900
+ "int4in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
901
+ "int4inc": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
902
+ "int4larger": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
903
+ "int4le": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
904
+ "int4lt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
905
+ "int4mi": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
906
+ "int4mod": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
907
+ "int4mul": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
908
+ "int4multirange": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
909
+ "int4ne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
910
+ "int4not": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
911
+ "int4or": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
912
+ "int4out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
913
+ "int4pl": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
914
+ "int4range": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
915
+ "int4range_canonical": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
916
+ "int4range_subdiff": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
917
+ "int4recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
918
+ "int4send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
919
+ "int4shl": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
920
+ "int4shr": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
921
+ "int4smaller": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
922
+ "int4um": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
923
+ "int4up": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
924
+ "int4xor": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
925
+ "int8": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
926
+ "int82div": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
927
+ "int82eq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
928
+ "int82ge": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
929
+ "int82gt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
930
+ "int82le": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
931
+ "int82lt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
932
+ "int82mi": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
933
+ "int82mul": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
934
+ "int82ne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
935
+ "int82pl": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
936
+ "int84div": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
937
+ "int84eq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
938
+ "int84ge": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
939
+ "int84gt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
940
+ "int84le": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
941
+ "int84lt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
942
+ "int84mi": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
943
+ "int84mul": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
944
+ "int84ne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
945
+ "int84pl": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
946
+ "int8_accum": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
947
+ "int8_accum_inv": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
948
+ "int8_avg": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
949
+ "int8_avg_accum": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
950
+ "int8_avg_accum_inv": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
951
+ "int8_avg_combine": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
952
+ "int8_avg_deserialize": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
953
+ "int8_avg_serialize": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
954
+ "int8_mul_cash": "internal operator implementation function; the operator itself is the SQL surface",
955
+ "int8_sum": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
956
+ "int8abs": "internal operator implementation function; the operator itself is the SQL surface",
957
+ "int8and": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
958
+ "int8dec": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
959
+ "int8dec_any": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
960
+ "int8div": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
961
+ "int8eq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
962
+ "int8ge": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
963
+ "int8gt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
964
+ "int8in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
965
+ "int8inc": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
966
+ "int8inc_any": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
967
+ "int8inc_float8_float8": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
968
+ "int8inc_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
969
+ "int8larger": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
970
+ "int8le": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
971
+ "int8lt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
972
+ "int8mi": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
973
+ "int8mod": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
974
+ "int8mul": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
975
+ "int8multirange": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
976
+ "int8ne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
977
+ "int8not": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
978
+ "int8or": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
979
+ "int8out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
980
+ "int8pl": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
981
+ "int8pl_inet": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
982
+ "int8range": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
983
+ "int8range_canonical": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
984
+ "int8range_subdiff": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
985
+ "int8recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
986
+ "int8send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
987
+ "int8shl": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
988
+ "int8shr": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
989
+ "int8smaller": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
990
+ "int8um": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
991
+ "int8up": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
992
+ "int8xor": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
993
+ "integer_pl_date": "internal operator implementation function; the operator itself is the SQL surface",
994
+ "inter_lb": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
995
+ "inter_sb": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
996
+ "inter_sl": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
997
+ "internal_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
998
+ "internal_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
999
+ "interval": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1000
+ "interval_avg": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1001
+ "interval_avg_accum": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1002
+ "interval_avg_accum_inv": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1003
+ "interval_avg_combine": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1004
+ "interval_avg_deserialize": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1005
+ "interval_avg_serialize": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1006
+ "interval_cmp": "internal operator implementation function; the operator itself is the SQL surface",
1007
+ "interval_div": "internal operator implementation function; the operator itself is the SQL surface",
1008
+ "interval_eq": "internal operator implementation function; the operator itself is the SQL surface",
1009
+ "interval_ge": "internal operator implementation function; the operator itself is the SQL surface",
1010
+ "interval_gt": "internal operator implementation function; the operator itself is the SQL surface",
1011
+ "interval_hash": "internal hash support function for hash indexes/joins",
1012
+ "interval_hash_extended": "internal hash support function for hash indexes/joins",
1013
+ "interval_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1014
+ "interval_larger": "internal operator implementation function; the operator itself is the SQL surface",
1015
+ "interval_le": "internal operator implementation function; the operator itself is the SQL surface",
1016
+ "interval_lt": "internal operator implementation function; the operator itself is the SQL surface",
1017
+ "interval_mi": "internal operator implementation function; the operator itself is the SQL surface",
1018
+ "interval_mul": "internal operator implementation function; the operator itself is the SQL surface",
1019
+ "interval_ne": "internal operator implementation function; the operator itself is the SQL surface",
1020
+ "interval_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1021
+ "interval_pl": "internal operator implementation function; the operator itself is the SQL surface",
1022
+ "interval_pl_date": "internal operator implementation function; the operator itself is the SQL surface",
1023
+ "interval_pl_time": "internal operator implementation function; the operator itself is the SQL surface",
1024
+ "interval_pl_timestamp": "internal operator implementation function; the operator itself is the SQL surface",
1025
+ "interval_pl_timestamptz": "internal operator implementation function; the operator itself is the SQL surface",
1026
+ "interval_pl_timetz": "internal operator implementation function; the operator itself is the SQL surface",
1027
+ "interval_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1028
+ "interval_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1029
+ "interval_smaller": "internal operator implementation function; the operator itself is the SQL surface",
1030
+ "interval_sum": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1031
+ "interval_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1032
+ "interval_um": "internal operator implementation function; the operator itself is the SQL surface",
1033
+ "intervaltypmodin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1034
+ "intervaltypmodout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1035
+ "is_normalized": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1036
+ "isclosed": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1037
+ "isempty": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1038
+ "ishorizontal": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1039
+ "iso8859_1_to_utf8": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1040
+ "iso8859_to_utf8": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1041
+ "iso_to_koi8r": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1042
+ "iso_to_mic": "internal operator implementation function; the operator itself is the SQL surface",
1043
+ "iso_to_win1251": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1044
+ "iso_to_win866": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1045
+ "isopen": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1046
+ "isparallel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1047
+ "isperp": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1048
+ "isvertical": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1049
+ "johab_to_utf8": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1050
+ "json_agg_finalfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1051
+ "json_agg_strict": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1052
+ "json_agg_strict_transfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1053
+ "json_agg_transfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1054
+ "json_array_element": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1055
+ "json_array_element_text": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1056
+ "json_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1057
+ "json_object_agg_finalfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1058
+ "json_object_agg_strict": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1059
+ "json_object_agg_strict_transfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1060
+ "json_object_agg_transfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1061
+ "json_object_agg_unique": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1062
+ "json_object_agg_unique_strict": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1063
+ "json_object_agg_unique_strict_transfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1064
+ "json_object_agg_unique_transfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1065
+ "json_object_field": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1066
+ "json_object_field_text": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1067
+ "json_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1068
+ "json_populate_record": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1069
+ "json_populate_recordset": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1070
+ "json_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1071
+ "json_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1072
+ "json_to_record": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1073
+ "json_to_recordset": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1074
+ "json_to_tsvector": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1075
+ "jsonb_agg_finalfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1076
+ "jsonb_agg_strict": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1077
+ "jsonb_agg_strict_transfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1078
+ "jsonb_agg_transfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1079
+ "jsonb_array_element": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1080
+ "jsonb_array_element_text": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1081
+ "jsonb_cmp": "internal operator implementation function; the operator itself is the SQL surface",
1082
+ "jsonb_concat": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1083
+ "jsonb_contained": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1084
+ "jsonb_contains": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1085
+ "jsonb_delete": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1086
+ "jsonb_delete_path": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1087
+ "jsonb_eq": "internal operator implementation function; the operator itself is the SQL surface",
1088
+ "jsonb_exists": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1089
+ "jsonb_exists_all": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1090
+ "jsonb_exists_any": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1091
+ "jsonb_ge": "internal operator implementation function; the operator itself is the SQL surface",
1092
+ "jsonb_gt": "internal operator implementation function; the operator itself is the SQL surface",
1093
+ "jsonb_hash": "internal hash support function for hash indexes/joins",
1094
+ "jsonb_hash_extended": "internal hash support function for hash indexes/joins",
1095
+ "jsonb_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1096
+ "jsonb_le": "internal operator implementation function; the operator itself is the SQL surface",
1097
+ "jsonb_lt": "internal operator implementation function; the operator itself is the SQL surface",
1098
+ "jsonb_ne": "internal operator implementation function; the operator itself is the SQL surface",
1099
+ "jsonb_object_agg_finalfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1100
+ "jsonb_object_agg_strict": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1101
+ "jsonb_object_agg_strict_transfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1102
+ "jsonb_object_agg_transfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1103
+ "jsonb_object_agg_unique": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1104
+ "jsonb_object_agg_unique_strict": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1105
+ "jsonb_object_agg_unique_strict_transfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1106
+ "jsonb_object_agg_unique_transfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1107
+ "jsonb_object_field": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1108
+ "jsonb_object_field_text": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1109
+ "jsonb_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1110
+ "jsonb_path_exists": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1111
+ "jsonb_path_exists_opr": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1112
+ "jsonb_path_exists_tz": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1113
+ "jsonb_path_match": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1114
+ "jsonb_path_match_opr": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1115
+ "jsonb_path_match_tz": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1116
+ "jsonb_path_query": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1117
+ "jsonb_path_query_array": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1118
+ "jsonb_path_query_array_tz": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1119
+ "jsonb_path_query_first": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1120
+ "jsonb_path_query_first_tz": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1121
+ "jsonb_path_query_tz": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1122
+ "jsonb_populate_record": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1123
+ "jsonb_populate_record_valid": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1124
+ "jsonb_populate_recordset": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1125
+ "jsonb_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1126
+ "jsonb_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1127
+ "jsonb_subscript_handler": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1128
+ "jsonb_to_record": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1129
+ "jsonb_to_recordset": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1130
+ "jsonb_to_tsvector": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1131
+ "jsonpath_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1132
+ "jsonpath_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1133
+ "jsonpath_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1134
+ "jsonpath_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1135
+ "koi8r_to_iso": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1136
+ "koi8r_to_mic": "internal operator implementation function; the operator itself is the SQL surface",
1137
+ "koi8r_to_utf8": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1138
+ "koi8r_to_win1251": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1139
+ "koi8r_to_win866": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1140
+ "koi8u_to_utf8": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1141
+ "language_handler_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1142
+ "language_handler_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1143
+ "latin1_to_mic": "internal operator implementation function; the operator itself is the SQL surface",
1144
+ "latin2_to_mic": "internal operator implementation function; the operator itself is the SQL surface",
1145
+ "latin2_to_win1250": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1146
+ "latin3_to_mic": "internal operator implementation function; the operator itself is the SQL surface",
1147
+ "latin4_to_mic": "internal operator implementation function; the operator itself is the SQL surface",
1148
+ "lgamma": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1149
+ "like": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1150
+ "like_escape": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1151
+ "likejoinsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1152
+ "likesel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1153
+ "line": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1154
+ "line_distance": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1155
+ "line_eq": "internal operator implementation function; the operator itself is the SQL surface",
1156
+ "line_horizontal": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1157
+ "line_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1158
+ "line_interpt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1159
+ "line_intersect": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1160
+ "line_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1161
+ "line_parallel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1162
+ "line_perp": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1163
+ "line_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1164
+ "line_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1165
+ "line_vertical": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1166
+ "lo_close": "large-object API; NOT APPLICABLE (no on-disk storage)",
1167
+ "lo_creat": "large-object API; NOT APPLICABLE (no on-disk storage)",
1168
+ "lo_create": "large-object API; NOT APPLICABLE (no on-disk storage)",
1169
+ "lo_export": "large-object API; NOT APPLICABLE (no on-disk storage)",
1170
+ "lo_from_bytea": "large-object API; NOT APPLICABLE (no on-disk storage)",
1171
+ "lo_get": "internal operator implementation function; the operator itself is the SQL surface",
1172
+ "lo_import": "large-object API; NOT APPLICABLE (no on-disk storage)",
1173
+ "lo_lseek": "large-object API; NOT APPLICABLE (no on-disk storage)",
1174
+ "lo_lseek64": "large-object API; NOT APPLICABLE (no on-disk storage)",
1175
+ "lo_open": "large-object API; NOT APPLICABLE (no on-disk storage)",
1176
+ "lo_put": "large-object API; NOT APPLICABLE (no on-disk storage)",
1177
+ "lo_tell": "large-object API; NOT APPLICABLE (no on-disk storage)",
1178
+ "lo_tell64": "large-object API; NOT APPLICABLE (no on-disk storage)",
1179
+ "lo_truncate": "large-object API; NOT APPLICABLE (no on-disk storage)",
1180
+ "lo_truncate64": "large-object API; NOT APPLICABLE (no on-disk storage)",
1181
+ "lo_unlink": "large-object API; NOT APPLICABLE (no on-disk storage)",
1182
+ "loread": "large-object API; NOT APPLICABLE (no on-disk storage)",
1183
+ "lower_inc": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1184
+ "lower_inf": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1185
+ "lowrite": "large-object API; NOT APPLICABLE (no on-disk storage)",
1186
+ "lseg": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1187
+ "lseg_center": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1188
+ "lseg_distance": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1189
+ "lseg_eq": "internal operator implementation function; the operator itself is the SQL surface",
1190
+ "lseg_ge": "internal operator implementation function; the operator itself is the SQL surface",
1191
+ "lseg_gt": "internal operator implementation function; the operator itself is the SQL surface",
1192
+ "lseg_horizontal": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1193
+ "lseg_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1194
+ "lseg_interpt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1195
+ "lseg_intersect": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1196
+ "lseg_le": "internal operator implementation function; the operator itself is the SQL surface",
1197
+ "lseg_length": "internal operator implementation function; the operator itself is the SQL surface",
1198
+ "lseg_lt": "internal operator implementation function; the operator itself is the SQL surface",
1199
+ "lseg_ne": "internal operator implementation function; the operator itself is the SQL surface",
1200
+ "lseg_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1201
+ "lseg_parallel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1202
+ "lseg_perp": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1203
+ "lseg_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1204
+ "lseg_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1205
+ "lseg_vertical": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1206
+ "macaddr": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1207
+ "macaddr8": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1208
+ "macaddr8_and": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1209
+ "macaddr8_cmp": "internal operator implementation function; the operator itself is the SQL surface",
1210
+ "macaddr8_eq": "internal operator implementation function; the operator itself is the SQL surface",
1211
+ "macaddr8_ge": "internal operator implementation function; the operator itself is the SQL surface",
1212
+ "macaddr8_gt": "internal operator implementation function; the operator itself is the SQL surface",
1213
+ "macaddr8_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1214
+ "macaddr8_le": "internal operator implementation function; the operator itself is the SQL surface",
1215
+ "macaddr8_lt": "internal operator implementation function; the operator itself is the SQL surface",
1216
+ "macaddr8_ne": "internal operator implementation function; the operator itself is the SQL surface",
1217
+ "macaddr8_not": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1218
+ "macaddr8_or": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1219
+ "macaddr8_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1220
+ "macaddr8_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1221
+ "macaddr8_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1222
+ "macaddr8_set7bit": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1223
+ "macaddr_and": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1224
+ "macaddr_cmp": "internal operator implementation function; the operator itself is the SQL surface",
1225
+ "macaddr_eq": "internal operator implementation function; the operator itself is the SQL surface",
1226
+ "macaddr_ge": "internal operator implementation function; the operator itself is the SQL surface",
1227
+ "macaddr_gt": "internal operator implementation function; the operator itself is the SQL surface",
1228
+ "macaddr_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1229
+ "macaddr_le": "internal operator implementation function; the operator itself is the SQL surface",
1230
+ "macaddr_lt": "internal operator implementation function; the operator itself is the SQL surface",
1231
+ "macaddr_ne": "internal operator implementation function; the operator itself is the SQL surface",
1232
+ "macaddr_not": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1233
+ "macaddr_or": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1234
+ "macaddr_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1235
+ "macaddr_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1236
+ "macaddr_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1237
+ "macaddr_sortsupport": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1238
+ "makeaclitem": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1239
+ "masklen": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1240
+ "matchingjoinsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1241
+ "matchingsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1242
+ "mic_to_big5": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1243
+ "mic_to_euc_cn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1244
+ "mic_to_euc_jp": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1245
+ "mic_to_euc_kr": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1246
+ "mic_to_euc_tw": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1247
+ "mic_to_iso": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1248
+ "mic_to_koi8r": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1249
+ "mic_to_latin1": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1250
+ "mic_to_latin2": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1251
+ "mic_to_latin3": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1252
+ "mic_to_latin4": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1253
+ "mic_to_sjis": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1254
+ "mic_to_win1250": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1255
+ "mic_to_win1251": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1256
+ "mic_to_win866": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1257
+ "mode_final": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1258
+ "money": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1259
+ "mul_d_interval": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1260
+ "multirange": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1261
+ "multirange_adjacent_multirange": "internal operator implementation function; the operator itself is the SQL surface",
1262
+ "multirange_adjacent_range": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1263
+ "multirange_after_multirange": "internal operator implementation function; the operator itself is the SQL surface",
1264
+ "multirange_after_range": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1265
+ "multirange_agg_finalfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1266
+ "multirange_agg_transfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1267
+ "multirange_before_multirange": "internal operator implementation function; the operator itself is the SQL surface",
1268
+ "multirange_before_range": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1269
+ "multirange_cmp": "internal operator implementation function; the operator itself is the SQL surface",
1270
+ "multirange_contained_by_multirange": "internal operator implementation function; the operator itself is the SQL surface",
1271
+ "multirange_contained_by_range": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1272
+ "multirange_contains_elem": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1273
+ "multirange_contains_multirange": "internal operator implementation function; the operator itself is the SQL surface",
1274
+ "multirange_contains_range": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1275
+ "multirange_eq": "internal operator implementation function; the operator itself is the SQL surface",
1276
+ "multirange_ge": "internal operator implementation function; the operator itself is the SQL surface",
1277
+ "multirange_gist_compress": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1278
+ "multirange_gist_consistent": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1279
+ "multirange_gt": "internal operator implementation function; the operator itself is the SQL surface",
1280
+ "multirange_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1281
+ "multirange_intersect": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1282
+ "multirange_intersect_agg_transfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1283
+ "multirange_le": "internal operator implementation function; the operator itself is the SQL surface",
1284
+ "multirange_lt": "internal operator implementation function; the operator itself is the SQL surface",
1285
+ "multirange_minus": "internal operator implementation function; the operator itself is the SQL surface",
1286
+ "multirange_ne": "internal operator implementation function; the operator itself is the SQL surface",
1287
+ "multirange_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1288
+ "multirange_overlaps_multirange": "internal operator implementation function; the operator itself is the SQL surface",
1289
+ "multirange_overlaps_range": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1290
+ "multirange_overleft_multirange": "internal operator implementation function; the operator itself is the SQL surface",
1291
+ "multirange_overleft_range": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1292
+ "multirange_overright_multirange": "internal operator implementation function; the operator itself is the SQL surface",
1293
+ "multirange_overright_range": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1294
+ "multirange_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1295
+ "multirange_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1296
+ "multirange_typanalyze": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1297
+ "multirange_union": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1298
+ "multirangesel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1299
+ "mxid_age": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1300
+ "name": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1301
+ "nameconcatoid": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1302
+ "nameeq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1303
+ "nameeqtext": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1304
+ "namege": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1305
+ "namegetext": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1306
+ "namegt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1307
+ "namegttext": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1308
+ "nameiclike": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1309
+ "nameicnlike": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1310
+ "nameicregexeq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1311
+ "nameicregexne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1312
+ "namein": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1313
+ "namele": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1314
+ "nameletext": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1315
+ "namelike": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1316
+ "namelt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1317
+ "namelttext": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1318
+ "namene": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1319
+ "namenetext": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1320
+ "namenlike": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1321
+ "nameout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1322
+ "namerecv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1323
+ "nameregexeq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1324
+ "nameregexne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1325
+ "namesend": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1326
+ "neqjoinsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1327
+ "neqsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1328
+ "netmask": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1329
+ "network": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1330
+ "network_cmp": "internal operator implementation function; the operator itself is the SQL surface",
1331
+ "network_eq": "internal operator implementation function; the operator itself is the SQL surface",
1332
+ "network_ge": "internal operator implementation function; the operator itself is the SQL surface",
1333
+ "network_gt": "internal operator implementation function; the operator itself is the SQL surface",
1334
+ "network_larger": "internal operator implementation function; the operator itself is the SQL surface",
1335
+ "network_le": "internal operator implementation function; the operator itself is the SQL surface",
1336
+ "network_lt": "internal operator implementation function; the operator itself is the SQL surface",
1337
+ "network_ne": "internal operator implementation function; the operator itself is the SQL surface",
1338
+ "network_overlap": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1339
+ "network_smaller": "internal operator implementation function; the operator itself is the SQL surface",
1340
+ "network_sortsupport": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1341
+ "network_sub": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1342
+ "network_subeq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1343
+ "network_subset_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1344
+ "network_sup": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1345
+ "network_supeq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1346
+ "networkjoinsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1347
+ "networksel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1348
+ "nlikejoinsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1349
+ "nlikesel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1350
+ "normalize": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1351
+ "notlike": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1352
+ "npoints": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1353
+ "numeric": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1354
+ "numeric_abs": "internal operator implementation function; the operator itself is the SQL surface",
1355
+ "numeric_accum": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1356
+ "numeric_accum_inv": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1357
+ "numeric_add": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1358
+ "numeric_avg": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1359
+ "numeric_avg_accum": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1360
+ "numeric_avg_combine": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1361
+ "numeric_avg_deserialize": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1362
+ "numeric_avg_serialize": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1363
+ "numeric_cmp": "internal operator implementation function; the operator itself is the SQL surface",
1364
+ "numeric_combine": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1365
+ "numeric_deserialize": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1366
+ "numeric_div": "internal operator implementation function; the operator itself is the SQL surface",
1367
+ "numeric_div_trunc": "internal operator implementation function; the operator itself is the SQL surface",
1368
+ "numeric_eq": "internal operator implementation function; the operator itself is the SQL surface",
1369
+ "numeric_exp": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1370
+ "numeric_ge": "internal operator implementation function; the operator itself is the SQL surface",
1371
+ "numeric_gt": "internal operator implementation function; the operator itself is the SQL surface",
1372
+ "numeric_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1373
+ "numeric_inc": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1374
+ "numeric_larger": "internal operator implementation function; the operator itself is the SQL surface",
1375
+ "numeric_le": "internal operator implementation function; the operator itself is the SQL surface",
1376
+ "numeric_ln": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1377
+ "numeric_log": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1378
+ "numeric_lt": "internal operator implementation function; the operator itself is the SQL surface",
1379
+ "numeric_mod": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1380
+ "numeric_mul": "internal operator implementation function; the operator itself is the SQL surface",
1381
+ "numeric_ne": "internal operator implementation function; the operator itself is the SQL surface",
1382
+ "numeric_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1383
+ "numeric_pl_pg_lsn": "internal operator implementation function; the operator itself is the SQL surface",
1384
+ "numeric_poly_avg": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1385
+ "numeric_poly_combine": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1386
+ "numeric_poly_deserialize": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1387
+ "numeric_poly_serialize": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1388
+ "numeric_poly_stddev_pop": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1389
+ "numeric_poly_stddev_samp": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1390
+ "numeric_poly_sum": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1391
+ "numeric_poly_var_pop": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1392
+ "numeric_poly_var_samp": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1393
+ "numeric_power": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1394
+ "numeric_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1395
+ "numeric_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1396
+ "numeric_serialize": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1397
+ "numeric_smaller": "internal operator implementation function; the operator itself is the SQL surface",
1398
+ "numeric_sortsupport": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1399
+ "numeric_sqrt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1400
+ "numeric_stddev_pop": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1401
+ "numeric_stddev_samp": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1402
+ "numeric_sub": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1403
+ "numeric_sum": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1404
+ "numeric_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1405
+ "numeric_uminus": "internal operator implementation function; the operator itself is the SQL surface",
1406
+ "numeric_uplus": "internal operator implementation function; the operator itself is the SQL surface",
1407
+ "numeric_var_pop": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1408
+ "numeric_var_samp": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1409
+ "numerictypmodin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1410
+ "numerictypmodout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1411
+ "nummultirange": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1412
+ "numrange": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1413
+ "numrange_subdiff": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1414
+ "oid": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1415
+ "oideq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1416
+ "oidge": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1417
+ "oidgt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1418
+ "oidin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1419
+ "oidlarger": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1420
+ "oidle": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1421
+ "oidlt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1422
+ "oidne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1423
+ "oidout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1424
+ "oidrecv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1425
+ "oidsend": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1426
+ "oidsmaller": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1427
+ "oidvectoreq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1428
+ "oidvectorge": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1429
+ "oidvectorgt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1430
+ "oidvectorin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1431
+ "oidvectorle": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1432
+ "oidvectorlt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1433
+ "oidvectorne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1434
+ "oidvectorout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1435
+ "oidvectorrecv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1436
+ "oidvectorsend": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1437
+ "oidvectortypes": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1438
+ "on_pb": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1439
+ "on_pl": "internal operator implementation function; the operator itself is the SQL surface",
1440
+ "on_ppath": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1441
+ "on_ps": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1442
+ "on_sb": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1443
+ "on_sl": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1444
+ "ordered_set_transition": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1445
+ "ordered_set_transition_multi": "internal operator implementation function; the operator itself is the SQL surface",
1446
+ "overlaps": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1447
+ "parse_ident": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1448
+ "path": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1449
+ "path_add": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1450
+ "path_add_pt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1451
+ "path_contain_pt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1452
+ "path_distance": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1453
+ "path_div_pt": "internal operator implementation function; the operator itself is the SQL surface",
1454
+ "path_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1455
+ "path_inter": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1456
+ "path_length": "internal operator implementation function; the operator itself is the SQL surface",
1457
+ "path_mul_pt": "internal operator implementation function; the operator itself is the SQL surface",
1458
+ "path_n_eq": "internal operator implementation function; the operator itself is the SQL surface",
1459
+ "path_n_ge": "internal operator implementation function; the operator itself is the SQL surface",
1460
+ "path_n_gt": "internal operator implementation function; the operator itself is the SQL surface",
1461
+ "path_n_le": "internal operator implementation function; the operator itself is the SQL surface",
1462
+ "path_n_lt": "internal operator implementation function; the operator itself is the SQL surface",
1463
+ "path_npoints": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1464
+ "path_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1465
+ "path_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1466
+ "path_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1467
+ "path_sub_pt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1468
+ "pclose": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1469
+ "percent_rank_final": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1470
+ "percentile_cont_float8_final": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1471
+ "percentile_cont_float8_multi_final": "internal operator implementation function; the operator itself is the SQL surface",
1472
+ "percentile_cont_interval_final": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1473
+ "percentile_cont_interval_multi_final": "internal operator implementation function; the operator itself is the SQL surface",
1474
+ "percentile_disc_final": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1475
+ "percentile_disc_multi_final": "internal operator implementation function; the operator itself is the SQL surface",
1476
+ "pg_advisory_lock_shared": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1477
+ "pg_advisory_unlock_shared": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1478
+ "pg_advisory_xact_lock": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1479
+ "pg_advisory_xact_lock_shared": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1480
+ "pg_available_extension_versions": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1481
+ "pg_available_extensions": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1482
+ "pg_available_wal_summaries": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1483
+ "pg_backup_start": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1484
+ "pg_backup_stop": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1485
+ "pg_basetype": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1486
+ "pg_blocking_pids": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1487
+ "pg_cancel_backend": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1488
+ "pg_char_to_encoding": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1489
+ "pg_clear_attribute_stats": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1490
+ "pg_clear_relation_stats": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1491
+ "pg_client_encoding": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1492
+ "pg_collation_actual_version": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1493
+ "pg_collation_for": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1494
+ "pg_collation_is_visible": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1495
+ "pg_column_compression": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1496
+ "pg_column_is_updatable": "internal operator implementation function; the operator itself is the SQL surface",
1497
+ "pg_column_toast_chunk_id": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1498
+ "pg_config": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1499
+ "pg_control_checkpoint": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1500
+ "pg_control_init": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1501
+ "pg_control_recovery": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1502
+ "pg_control_system": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1503
+ "pg_conversion_is_visible": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1504
+ "pg_copy_logical_replication_slot": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1505
+ "pg_copy_physical_replication_slot": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1506
+ "pg_create_logical_replication_slot": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1507
+ "pg_create_physical_replication_slot": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1508
+ "pg_create_restore_point": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1509
+ "pg_current_logfile": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1510
+ "pg_current_snapshot": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1511
+ "pg_current_wal_flush_lsn": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1512
+ "pg_current_wal_insert_lsn": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1513
+ "pg_current_wal_lsn": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1514
+ "pg_current_xact_id_if_assigned": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1515
+ "pg_cursor": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1516
+ "pg_database_collation_actual_version": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1517
+ "pg_ddl_command_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1518
+ "pg_ddl_command_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1519
+ "pg_ddl_command_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1520
+ "pg_ddl_command_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1521
+ "pg_dependencies_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1522
+ "pg_dependencies_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1523
+ "pg_dependencies_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1524
+ "pg_dependencies_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1525
+ "pg_describe_object": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1526
+ "pg_drop_replication_slot": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1527
+ "pg_encoding_max_length": "internal operator implementation function; the operator itself is the SQL surface",
1528
+ "pg_event_trigger_ddl_commands": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1529
+ "pg_event_trigger_dropped_objects": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1530
+ "pg_event_trigger_table_rewrite_oid": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1531
+ "pg_event_trigger_table_rewrite_reason": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1532
+ "pg_export_snapshot": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1533
+ "pg_extension_config_dump": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1534
+ "pg_extension_update_paths": "internal operator implementation function; the operator itself is the SQL surface",
1535
+ "pg_filenode_relation": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1536
+ "pg_get_acl": "internal operator implementation function; the operator itself is the SQL surface",
1537
+ "pg_get_aios": "internal operator implementation function; the operator itself is the SQL surface",
1538
+ "pg_get_backend_memory_contexts": "internal operator implementation function; the operator itself is the SQL surface",
1539
+ "pg_get_catalog_foreign_keys": "internal operator implementation function; the operator itself is the SQL surface",
1540
+ "pg_get_constraintdef": "internal operator implementation function; the operator itself is the SQL surface",
1541
+ "pg_get_function_arg_default": "internal operator implementation function; the operator itself is the SQL surface",
1542
+ "pg_get_function_arguments": "internal operator implementation function; the operator itself is the SQL surface",
1543
+ "pg_get_function_identity_arguments": "internal operator implementation function; the operator itself is the SQL surface",
1544
+ "pg_get_function_result": "internal operator implementation function; the operator itself is the SQL surface",
1545
+ "pg_get_function_sqlbody": "internal operator implementation function; the operator itself is the SQL surface",
1546
+ "pg_get_functiondef": "internal operator implementation function; the operator itself is the SQL surface",
1547
+ "pg_get_indexdef": "internal operator implementation function; the operator itself is the SQL surface",
1548
+ "pg_get_keywords": "internal operator implementation function; the operator itself is the SQL surface",
1549
+ "pg_get_loaded_modules": "internal operator implementation function; the operator itself is the SQL surface",
1550
+ "pg_get_multixact_members": "internal operator implementation function; the operator itself is the SQL surface",
1551
+ "pg_get_object_address": "internal operator implementation function; the operator itself is the SQL surface",
1552
+ "pg_get_partition_constraintdef": "internal operator implementation function; the operator itself is the SQL surface",
1553
+ "pg_get_partkeydef": "internal operator implementation function; the operator itself is the SQL surface",
1554
+ "pg_get_publication_tables": "internal operator implementation function; the operator itself is the SQL surface",
1555
+ "pg_get_replica_identity_index": "internal operator implementation function; the operator itself is the SQL surface",
1556
+ "pg_get_replication_slots": "internal operator implementation function; the operator itself is the SQL surface",
1557
+ "pg_get_ruledef": "internal operator implementation function; the operator itself is the SQL surface",
1558
+ "pg_get_sequence_data": "internal operator implementation function; the operator itself is the SQL surface",
1559
+ "pg_get_shmem_allocations": "internal operator implementation function; the operator itself is the SQL surface",
1560
+ "pg_get_shmem_allocations_numa": "internal operator implementation function; the operator itself is the SQL surface",
1561
+ "pg_get_statisticsobjdef": "internal operator implementation function; the operator itself is the SQL surface",
1562
+ "pg_get_statisticsobjdef_columns": "internal operator implementation function; the operator itself is the SQL surface",
1563
+ "pg_get_statisticsobjdef_expressions": "internal operator implementation function; the operator itself is the SQL surface",
1564
+ "pg_get_triggerdef": "internal operator implementation function; the operator itself is the SQL surface",
1565
+ "pg_get_viewdef": "internal operator implementation function; the operator itself is the SQL surface",
1566
+ "pg_get_wait_events": "internal operator implementation function; the operator itself is the SQL surface",
1567
+ "pg_get_wal_replay_pause_state": "internal operator implementation function; the operator itself is the SQL surface",
1568
+ "pg_get_wal_resource_managers": "internal operator implementation function; the operator itself is the SQL surface",
1569
+ "pg_get_wal_summarizer_state": "internal operator implementation function; the operator itself is the SQL surface",
1570
+ "pg_has_role": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1571
+ "pg_hba_file_rules": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1572
+ "pg_ident_file_mappings": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1573
+ "pg_identify_object": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1574
+ "pg_identify_object_as_address": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1575
+ "pg_import_system_collations": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1576
+ "pg_index_column_has_property": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1577
+ "pg_index_has_property": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1578
+ "pg_indexam_has_property": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1579
+ "pg_indexam_progress_phasename": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1580
+ "pg_input_error_info": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1581
+ "pg_input_is_valid": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1582
+ "pg_is_other_temp_schema": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1583
+ "pg_is_wal_replay_paused": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1584
+ "pg_isolation_test_session_is_blocked": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1585
+ "pg_jit_available": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1586
+ "pg_last_committed_xact": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1587
+ "pg_last_wal_receive_lsn": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1588
+ "pg_last_wal_replay_lsn": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1589
+ "pg_last_xact_replay_timestamp": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1590
+ "pg_listening_channels": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1591
+ "pg_lock_status": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1592
+ "pg_log_backend_memory_contexts": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1593
+ "pg_log_standby_snapshot": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1594
+ "pg_logical_emit_message": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1595
+ "pg_logical_slot_get_binary_changes": "internal operator implementation function; the operator itself is the SQL surface",
1596
+ "pg_logical_slot_get_changes": "internal operator implementation function; the operator itself is the SQL surface",
1597
+ "pg_logical_slot_peek_binary_changes": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1598
+ "pg_logical_slot_peek_changes": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1599
+ "pg_ls_archive_statusdir": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1600
+ "pg_ls_dir": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1601
+ "pg_ls_logdir": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1602
+ "pg_ls_logicalmapdir": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1603
+ "pg_ls_logicalsnapdir": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1604
+ "pg_ls_replslotdir": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1605
+ "pg_ls_summariesdir": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1606
+ "pg_ls_tmpdir": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1607
+ "pg_ls_waldir": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1608
+ "pg_lsn": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1609
+ "pg_lsn_cmp": "internal operator implementation function; the operator itself is the SQL surface",
1610
+ "pg_lsn_eq": "internal operator implementation function; the operator itself is the SQL surface",
1611
+ "pg_lsn_ge": "internal operator implementation function; the operator itself is the SQL surface",
1612
+ "pg_lsn_gt": "internal operator implementation function; the operator itself is the SQL surface",
1613
+ "pg_lsn_hash": "internal hash support function for hash indexes/joins",
1614
+ "pg_lsn_hash_extended": "internal hash support function for hash indexes/joins",
1615
+ "pg_lsn_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1616
+ "pg_lsn_larger": "internal operator implementation function; the operator itself is the SQL surface",
1617
+ "pg_lsn_le": "internal operator implementation function; the operator itself is the SQL surface",
1618
+ "pg_lsn_lt": "internal operator implementation function; the operator itself is the SQL surface",
1619
+ "pg_lsn_mi": "internal operator implementation function; the operator itself is the SQL surface",
1620
+ "pg_lsn_mii": "internal operator implementation function; the operator itself is the SQL surface",
1621
+ "pg_lsn_ne": "internal operator implementation function; the operator itself is the SQL surface",
1622
+ "pg_lsn_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1623
+ "pg_lsn_pli": "internal operator implementation function; the operator itself is the SQL surface",
1624
+ "pg_lsn_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1625
+ "pg_lsn_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1626
+ "pg_lsn_smaller": "internal operator implementation function; the operator itself is the SQL surface",
1627
+ "pg_mcv_list_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1628
+ "pg_mcv_list_items": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1629
+ "pg_mcv_list_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1630
+ "pg_mcv_list_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1631
+ "pg_mcv_list_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1632
+ "pg_my_temp_schema": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1633
+ "pg_ndistinct_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1634
+ "pg_ndistinct_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1635
+ "pg_ndistinct_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1636
+ "pg_ndistinct_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1637
+ "pg_nextoid": "internal operator implementation function; the operator itself is the SQL surface",
1638
+ "pg_node_tree_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1639
+ "pg_node_tree_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1640
+ "pg_node_tree_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1641
+ "pg_node_tree_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1642
+ "pg_notify": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1643
+ "pg_numa_available": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1644
+ "pg_opclass_is_visible": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1645
+ "pg_operator_is_visible": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1646
+ "pg_opfamily_is_visible": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1647
+ "pg_options_to_table": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1648
+ "pg_partition_ancestors": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1649
+ "pg_partition_root": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1650
+ "pg_partition_tree": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1651
+ "pg_prepared_statement": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1652
+ "pg_prepared_xact": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1653
+ "pg_promote": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1654
+ "pg_read_binary_file": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1655
+ "pg_read_file": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1656
+ "pg_relation_filenode": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1657
+ "pg_relation_filepath": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1658
+ "pg_relation_is_publishable": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1659
+ "pg_relation_is_updatable": "internal operator implementation function; the operator itself is the SQL surface",
1660
+ "pg_reload_conf": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1661
+ "pg_replication_origin_advance": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1662
+ "pg_replication_origin_create": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1663
+ "pg_replication_origin_drop": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1664
+ "pg_replication_origin_oid": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1665
+ "pg_replication_origin_progress": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1666
+ "pg_replication_origin_session_is_setup": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1667
+ "pg_replication_origin_session_progress": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1668
+ "pg_replication_origin_session_reset": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1669
+ "pg_replication_origin_session_setup": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1670
+ "pg_replication_origin_xact_reset": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1671
+ "pg_replication_origin_xact_setup": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1672
+ "pg_replication_slot_advance": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1673
+ "pg_restore_attribute_stats": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1674
+ "pg_restore_relation_stats": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1675
+ "pg_rotate_logfile": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1676
+ "pg_safe_snapshot_blocking_pids": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1677
+ "pg_sequence_last_value": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1678
+ "pg_sequence_parameters": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1679
+ "pg_settings_get_flags": "internal operator implementation function; the operator itself is the SQL surface",
1680
+ "pg_show_all_file_settings": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1681
+ "pg_show_all_settings": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1682
+ "pg_show_replication_origin_status": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1683
+ "pg_size_bytes": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1684
+ "pg_sleep_for": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1685
+ "pg_sleep_until": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1686
+ "pg_snapshot_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1687
+ "pg_snapshot_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1688
+ "pg_snapshot_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1689
+ "pg_snapshot_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1690
+ "pg_snapshot_xip": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1691
+ "pg_snapshot_xmax": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1692
+ "pg_snapshot_xmin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1693
+ "pg_split_walfile_name": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1694
+ "pg_stat_clear_snapshot": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1695
+ "pg_stat_file": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1696
+ "pg_stat_force_next_flush": "internal operator implementation function; the operator itself is the SQL surface",
1697
+ "pg_stat_get_activity": "internal operator implementation function; the operator itself is the SQL surface",
1698
+ "pg_stat_get_analyze_count": "internal operator implementation function; the operator itself is the SQL surface",
1699
+ "pg_stat_get_archiver": "internal operator implementation function; the operator itself is the SQL surface",
1700
+ "pg_stat_get_autoanalyze_count": "internal operator implementation function; the operator itself is the SQL surface",
1701
+ "pg_stat_get_autovacuum_count": "internal operator implementation function; the operator itself is the SQL surface",
1702
+ "pg_stat_get_backend_activity": "internal operator implementation function; the operator itself is the SQL surface",
1703
+ "pg_stat_get_backend_activity_start": "internal operator implementation function; the operator itself is the SQL surface",
1704
+ "pg_stat_get_backend_client_addr": "internal operator implementation function; the operator itself is the SQL surface",
1705
+ "pg_stat_get_backend_client_port": "internal operator implementation function; the operator itself is the SQL surface",
1706
+ "pg_stat_get_backend_dbid": "internal operator implementation function; the operator itself is the SQL surface",
1707
+ "pg_stat_get_backend_idset": "internal operator implementation function; the operator itself is the SQL surface",
1708
+ "pg_stat_get_backend_io": "internal operator implementation function; the operator itself is the SQL surface",
1709
+ "pg_stat_get_backend_pid": "internal operator implementation function; the operator itself is the SQL surface",
1710
+ "pg_stat_get_backend_start": "internal operator implementation function; the operator itself is the SQL surface",
1711
+ "pg_stat_get_backend_subxact": "internal operator implementation function; the operator itself is the SQL surface",
1712
+ "pg_stat_get_backend_userid": "internal operator implementation function; the operator itself is the SQL surface",
1713
+ "pg_stat_get_backend_wait_event": "internal operator implementation function; the operator itself is the SQL surface",
1714
+ "pg_stat_get_backend_wait_event_type": "internal operator implementation function; the operator itself is the SQL surface",
1715
+ "pg_stat_get_backend_wal": "internal operator implementation function; the operator itself is the SQL surface",
1716
+ "pg_stat_get_backend_xact_start": "internal operator implementation function; the operator itself is the SQL surface",
1717
+ "pg_stat_get_bgwriter_buf_written_clean": "internal operator implementation function; the operator itself is the SQL surface",
1718
+ "pg_stat_get_bgwriter_maxwritten_clean": "internal operator implementation function; the operator itself is the SQL surface",
1719
+ "pg_stat_get_bgwriter_stat_reset_time": "internal operator implementation function; the operator itself is the SQL surface",
1720
+ "pg_stat_get_blocks_fetched": "internal operator implementation function; the operator itself is the SQL surface",
1721
+ "pg_stat_get_blocks_hit": "internal operator implementation function; the operator itself is the SQL surface",
1722
+ "pg_stat_get_buf_alloc": "internal operator implementation function; the operator itself is the SQL surface",
1723
+ "pg_stat_get_checkpointer_buffers_written": "internal operator implementation function; the operator itself is the SQL surface",
1724
+ "pg_stat_get_checkpointer_num_performed": "internal operator implementation function; the operator itself is the SQL surface",
1725
+ "pg_stat_get_checkpointer_num_requested": "internal operator implementation function; the operator itself is the SQL surface",
1726
+ "pg_stat_get_checkpointer_num_timed": "internal operator implementation function; the operator itself is the SQL surface",
1727
+ "pg_stat_get_checkpointer_restartpoints_performed": "internal operator implementation function; the operator itself is the SQL surface",
1728
+ "pg_stat_get_checkpointer_restartpoints_requested": "internal operator implementation function; the operator itself is the SQL surface",
1729
+ "pg_stat_get_checkpointer_restartpoints_timed": "internal operator implementation function; the operator itself is the SQL surface",
1730
+ "pg_stat_get_checkpointer_slru_written": "internal operator implementation function; the operator itself is the SQL surface",
1731
+ "pg_stat_get_checkpointer_stat_reset_time": "internal operator implementation function; the operator itself is the SQL surface",
1732
+ "pg_stat_get_checkpointer_sync_time": "internal operator implementation function; the operator itself is the SQL surface",
1733
+ "pg_stat_get_checkpointer_write_time": "internal operator implementation function; the operator itself is the SQL surface",
1734
+ "pg_stat_get_db_active_time": "internal operator implementation function; the operator itself is the SQL surface",
1735
+ "pg_stat_get_db_blk_read_time": "internal operator implementation function; the operator itself is the SQL surface",
1736
+ "pg_stat_get_db_blk_write_time": "internal operator implementation function; the operator itself is the SQL surface",
1737
+ "pg_stat_get_db_blocks_fetched": "internal operator implementation function; the operator itself is the SQL surface",
1738
+ "pg_stat_get_db_blocks_hit": "internal operator implementation function; the operator itself is the SQL surface",
1739
+ "pg_stat_get_db_checksum_failures": "internal operator implementation function; the operator itself is the SQL surface",
1740
+ "pg_stat_get_db_checksum_last_failure": "internal operator implementation function; the operator itself is the SQL surface",
1741
+ "pg_stat_get_db_conflict_all": "internal operator implementation function; the operator itself is the SQL surface",
1742
+ "pg_stat_get_db_conflict_bufferpin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1743
+ "pg_stat_get_db_conflict_lock": "internal operator implementation function; the operator itself is the SQL surface",
1744
+ "pg_stat_get_db_conflict_logicalslot": "internal operator implementation function; the operator itself is the SQL surface",
1745
+ "pg_stat_get_db_conflict_snapshot": "internal operator implementation function; the operator itself is the SQL surface",
1746
+ "pg_stat_get_db_conflict_startup_deadlock": "internal operator implementation function; the operator itself is the SQL surface",
1747
+ "pg_stat_get_db_conflict_tablespace": "internal operator implementation function; the operator itself is the SQL surface",
1748
+ "pg_stat_get_db_deadlocks": "internal operator implementation function; the operator itself is the SQL surface",
1749
+ "pg_stat_get_db_idle_in_transaction_time": "internal operator implementation function; the operator itself is the SQL surface",
1750
+ "pg_stat_get_db_numbackends": "internal operator implementation function; the operator itself is the SQL surface",
1751
+ "pg_stat_get_db_parallel_workers_launched": "internal operator implementation function; the operator itself is the SQL surface",
1752
+ "pg_stat_get_db_parallel_workers_to_launch": "internal operator implementation function; the operator itself is the SQL surface",
1753
+ "pg_stat_get_db_session_time": "internal operator implementation function; the operator itself is the SQL surface",
1754
+ "pg_stat_get_db_sessions": "internal operator implementation function; the operator itself is the SQL surface",
1755
+ "pg_stat_get_db_sessions_abandoned": "internal operator implementation function; the operator itself is the SQL surface",
1756
+ "pg_stat_get_db_sessions_fatal": "internal operator implementation function; the operator itself is the SQL surface",
1757
+ "pg_stat_get_db_sessions_killed": "internal operator implementation function; the operator itself is the SQL surface",
1758
+ "pg_stat_get_db_stat_reset_time": "internal operator implementation function; the operator itself is the SQL surface",
1759
+ "pg_stat_get_db_temp_bytes": "internal operator implementation function; the operator itself is the SQL surface",
1760
+ "pg_stat_get_db_temp_files": "internal operator implementation function; the operator itself is the SQL surface",
1761
+ "pg_stat_get_db_tuples_deleted": "internal operator implementation function; the operator itself is the SQL surface",
1762
+ "pg_stat_get_db_tuples_fetched": "internal operator implementation function; the operator itself is the SQL surface",
1763
+ "pg_stat_get_db_tuples_inserted": "internal operator implementation function; the operator itself is the SQL surface",
1764
+ "pg_stat_get_db_tuples_returned": "internal operator implementation function; the operator itself is the SQL surface",
1765
+ "pg_stat_get_db_tuples_updated": "internal operator implementation function; the operator itself is the SQL surface",
1766
+ "pg_stat_get_db_xact_commit": "internal operator implementation function; the operator itself is the SQL surface",
1767
+ "pg_stat_get_db_xact_rollback": "internal operator implementation function; the operator itself is the SQL surface",
1768
+ "pg_stat_get_dead_tuples": "internal operator implementation function; the operator itself is the SQL surface",
1769
+ "pg_stat_get_function_calls": "internal operator implementation function; the operator itself is the SQL surface",
1770
+ "pg_stat_get_function_self_time": "internal operator implementation function; the operator itself is the SQL surface",
1771
+ "pg_stat_get_function_total_time": "internal operator implementation function; the operator itself is the SQL surface",
1772
+ "pg_stat_get_ins_since_vacuum": "internal operator implementation function; the operator itself is the SQL surface",
1773
+ "pg_stat_get_io": "internal operator implementation function; the operator itself is the SQL surface",
1774
+ "pg_stat_get_last_analyze_time": "internal operator implementation function; the operator itself is the SQL surface",
1775
+ "pg_stat_get_last_autoanalyze_time": "internal operator implementation function; the operator itself is the SQL surface",
1776
+ "pg_stat_get_last_autovacuum_time": "internal operator implementation function; the operator itself is the SQL surface",
1777
+ "pg_stat_get_last_vacuum_time": "internal operator implementation function; the operator itself is the SQL surface",
1778
+ "pg_stat_get_lastscan": "internal operator implementation function; the operator itself is the SQL surface",
1779
+ "pg_stat_get_live_tuples": "internal operator implementation function; the operator itself is the SQL surface",
1780
+ "pg_stat_get_mod_since_analyze": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1781
+ "pg_stat_get_numscans": "internal operator implementation function; the operator itself is the SQL surface",
1782
+ "pg_stat_get_progress_info": "internal operator implementation function; the operator itself is the SQL surface",
1783
+ "pg_stat_get_recovery_prefetch": "internal operator implementation function; the operator itself is the SQL surface",
1784
+ "pg_stat_get_replication_slot": "internal operator implementation function; the operator itself is the SQL surface",
1785
+ "pg_stat_get_slru": "internal operator implementation function; the operator itself is the SQL surface",
1786
+ "pg_stat_get_snapshot_timestamp": "internal operator implementation function; the operator itself is the SQL surface",
1787
+ "pg_stat_get_subscription": "internal operator implementation function; the operator itself is the SQL surface",
1788
+ "pg_stat_get_subscription_stats": "internal operator implementation function; the operator itself is the SQL surface",
1789
+ "pg_stat_get_total_analyze_time": "internal operator implementation function; the operator itself is the SQL surface",
1790
+ "pg_stat_get_total_autoanalyze_time": "internal operator implementation function; the operator itself is the SQL surface",
1791
+ "pg_stat_get_total_autovacuum_time": "internal operator implementation function; the operator itself is the SQL surface",
1792
+ "pg_stat_get_total_vacuum_time": "internal operator implementation function; the operator itself is the SQL surface",
1793
+ "pg_stat_get_tuples_deleted": "internal operator implementation function; the operator itself is the SQL surface",
1794
+ "pg_stat_get_tuples_fetched": "internal operator implementation function; the operator itself is the SQL surface",
1795
+ "pg_stat_get_tuples_hot_updated": "internal operator implementation function; the operator itself is the SQL surface",
1796
+ "pg_stat_get_tuples_inserted": "internal operator implementation function; the operator itself is the SQL surface",
1797
+ "pg_stat_get_tuples_newpage_updated": "internal operator implementation function; the operator itself is the SQL surface",
1798
+ "pg_stat_get_tuples_returned": "internal operator implementation function; the operator itself is the SQL surface",
1799
+ "pg_stat_get_tuples_updated": "internal operator implementation function; the operator itself is the SQL surface",
1800
+ "pg_stat_get_vacuum_count": "internal operator implementation function; the operator itself is the SQL surface",
1801
+ "pg_stat_get_wal": "internal operator implementation function; the operator itself is the SQL surface",
1802
+ "pg_stat_get_wal_receiver": "internal operator implementation function; the operator itself is the SQL surface",
1803
+ "pg_stat_get_wal_senders": "internal operator implementation function; the operator itself is the SQL surface",
1804
+ "pg_stat_get_xact_blocks_fetched": "internal operator implementation function; the operator itself is the SQL surface",
1805
+ "pg_stat_get_xact_blocks_hit": "internal operator implementation function; the operator itself is the SQL surface",
1806
+ "pg_stat_get_xact_function_calls": "internal operator implementation function; the operator itself is the SQL surface",
1807
+ "pg_stat_get_xact_function_self_time": "internal operator implementation function; the operator itself is the SQL surface",
1808
+ "pg_stat_get_xact_function_total_time": "internal operator implementation function; the operator itself is the SQL surface",
1809
+ "pg_stat_get_xact_numscans": "internal operator implementation function; the operator itself is the SQL surface",
1810
+ "pg_stat_get_xact_tuples_deleted": "internal operator implementation function; the operator itself is the SQL surface",
1811
+ "pg_stat_get_xact_tuples_fetched": "internal operator implementation function; the operator itself is the SQL surface",
1812
+ "pg_stat_get_xact_tuples_hot_updated": "internal operator implementation function; the operator itself is the SQL surface",
1813
+ "pg_stat_get_xact_tuples_inserted": "internal operator implementation function; the operator itself is the SQL surface",
1814
+ "pg_stat_get_xact_tuples_newpage_updated": "internal operator implementation function; the operator itself is the SQL surface",
1815
+ "pg_stat_get_xact_tuples_returned": "internal operator implementation function; the operator itself is the SQL surface",
1816
+ "pg_stat_get_xact_tuples_updated": "internal operator implementation function; the operator itself is the SQL surface",
1817
+ "pg_stat_have_stats": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1818
+ "pg_stat_reset": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1819
+ "pg_stat_reset_backend_stats": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1820
+ "pg_stat_reset_replication_slot": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1821
+ "pg_stat_reset_shared": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1822
+ "pg_stat_reset_single_function_counters": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1823
+ "pg_stat_reset_single_table_counters": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1824
+ "pg_stat_reset_slru": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1825
+ "pg_stat_reset_subscription_stats": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1826
+ "pg_statistics_obj_is_visible": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1827
+ "pg_stop_making_pinned_objects": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1828
+ "pg_switch_wal": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1829
+ "pg_sync_replication_slots": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1830
+ "pg_tablespace_databases": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1831
+ "pg_tablespace_location": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1832
+ "pg_tablespace_size": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1833
+ "pg_terminate_backend": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1834
+ "pg_timezone_abbrevs_abbrevs": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1835
+ "pg_timezone_abbrevs_zone": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1836
+ "pg_timezone_names": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1837
+ "pg_trigger_depth": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1838
+ "pg_try_advisory_lock_shared": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1839
+ "pg_try_advisory_xact_lock": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1840
+ "pg_try_advisory_xact_lock_shared": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1841
+ "pg_ts_config_is_visible": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1842
+ "pg_ts_dict_is_visible": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1843
+ "pg_ts_parser_is_visible": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1844
+ "pg_ts_template_is_visible": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1845
+ "pg_visible_in_snapshot": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1846
+ "pg_wal_lsn_diff": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1847
+ "pg_wal_replay_pause": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1848
+ "pg_wal_replay_resume": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1849
+ "pg_wal_summary_contents": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1850
+ "pg_walfile_name": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1851
+ "pg_walfile_name_offset": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1852
+ "pg_xact_commit_timestamp": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1853
+ "pg_xact_commit_timestamp_origin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1854
+ "pg_xact_status": "server administration / storage / replication introspection; NOT APPLICABLE to an in-memory engine",
1855
+ "plpgsql_call_handler": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1856
+ "plpgsql_inline_handler": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1857
+ "plpgsql_validator": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1858
+ "point": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1859
+ "point_above": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1860
+ "point_add": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1861
+ "point_below": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1862
+ "point_distance": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1863
+ "point_div": "internal operator implementation function; the operator itself is the SQL surface",
1864
+ "point_eq": "internal operator implementation function; the operator itself is the SQL surface",
1865
+ "point_horiz": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1866
+ "point_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1867
+ "point_left": "internal operator implementation function; the operator itself is the SQL surface",
1868
+ "point_mul": "internal operator implementation function; the operator itself is the SQL surface",
1869
+ "point_ne": "internal operator implementation function; the operator itself is the SQL surface",
1870
+ "point_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1871
+ "point_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1872
+ "point_right": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1873
+ "point_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1874
+ "point_sub": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1875
+ "point_vert": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1876
+ "poly_above": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1877
+ "poly_below": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1878
+ "poly_center": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1879
+ "poly_contain": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1880
+ "poly_contain_pt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1881
+ "poly_contained": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1882
+ "poly_distance": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1883
+ "poly_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1884
+ "poly_left": "internal operator implementation function; the operator itself is the SQL surface",
1885
+ "poly_npoints": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1886
+ "poly_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1887
+ "poly_overabove": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1888
+ "poly_overbelow": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1889
+ "poly_overlap": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1890
+ "poly_overleft": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1891
+ "poly_overright": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1892
+ "poly_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1893
+ "poly_right": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1894
+ "poly_same": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1895
+ "poly_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1896
+ "polygon": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1897
+ "popen": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1898
+ "positionjoinsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1899
+ "positionsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1900
+ "postgresql_fdw_validator": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1901
+ "prefixjoinsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1902
+ "prefixsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1903
+ "prsd_end": "index access method / text-search configuration internals",
1904
+ "prsd_headline": "index access method / text-search configuration internals",
1905
+ "prsd_lextype": "internal operator implementation function; the operator itself is the SQL surface",
1906
+ "prsd_nexttoken": "internal operator implementation function; the operator itself is the SQL surface",
1907
+ "prsd_start": "index access method / text-search configuration internals",
1908
+ "pt_contained_circle": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1909
+ "pt_contained_poly": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1910
+ "query_to_xml": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1911
+ "query_to_xml_and_xmlschema": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1912
+ "query_to_xmlschema": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1913
+ "querytree": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1914
+ "radius": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1915
+ "random_normal": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1916
+ "range_adjacent": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1917
+ "range_adjacent_multirange": "internal operator implementation function; the operator itself is the SQL surface",
1918
+ "range_after": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1919
+ "range_after_multirange": "internal operator implementation function; the operator itself is the SQL surface",
1920
+ "range_agg": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1921
+ "range_agg_finalfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1922
+ "range_agg_transfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1923
+ "range_before": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1924
+ "range_before_multirange": "internal operator implementation function; the operator itself is the SQL surface",
1925
+ "range_cmp": "internal operator implementation function; the operator itself is the SQL surface",
1926
+ "range_contained_by": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1927
+ "range_contained_by_multirange": "internal operator implementation function; the operator itself is the SQL surface",
1928
+ "range_contains": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1929
+ "range_contains_elem": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1930
+ "range_contains_elem_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1931
+ "range_contains_multirange": "internal operator implementation function; the operator itself is the SQL surface",
1932
+ "range_eq": "internal operator implementation function; the operator itself is the SQL surface",
1933
+ "range_ge": "internal operator implementation function; the operator itself is the SQL surface",
1934
+ "range_gist_consistent": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1935
+ "range_gist_penalty": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1936
+ "range_gist_picksplit": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1937
+ "range_gist_same": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1938
+ "range_gist_union": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1939
+ "range_gt": "internal operator implementation function; the operator itself is the SQL surface",
1940
+ "range_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1941
+ "range_intersect": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1942
+ "range_intersect_agg": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1943
+ "range_intersect_agg_transfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1944
+ "range_le": "internal operator implementation function; the operator itself is the SQL surface",
1945
+ "range_lt": "internal operator implementation function; the operator itself is the SQL surface",
1946
+ "range_merge": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1947
+ "range_minus": "internal operator implementation function; the operator itself is the SQL surface",
1948
+ "range_ne": "internal operator implementation function; the operator itself is the SQL surface",
1949
+ "range_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1950
+ "range_overlaps": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1951
+ "range_overlaps_multirange": "internal operator implementation function; the operator itself is the SQL surface",
1952
+ "range_overleft": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1953
+ "range_overleft_multirange": "internal operator implementation function; the operator itself is the SQL surface",
1954
+ "range_overright": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1955
+ "range_overright_multirange": "internal operator implementation function; the operator itself is the SQL surface",
1956
+ "range_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1957
+ "range_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1958
+ "range_sortsupport": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1959
+ "range_typanalyze": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1960
+ "range_union": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1961
+ "rangesel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1962
+ "rank_final": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1963
+ "raw_array_subscript_handler": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1964
+ "record_eq": "internal operator implementation function; the operator itself is the SQL surface",
1965
+ "record_ge": "internal operator implementation function; the operator itself is the SQL surface",
1966
+ "record_gt": "internal operator implementation function; the operator itself is the SQL surface",
1967
+ "record_image_eq": "internal operator implementation function; the operator itself is the SQL surface",
1968
+ "record_image_ge": "internal operator implementation function; the operator itself is the SQL surface",
1969
+ "record_image_gt": "internal operator implementation function; the operator itself is the SQL surface",
1970
+ "record_image_le": "internal operator implementation function; the operator itself is the SQL surface",
1971
+ "record_image_lt": "internal operator implementation function; the operator itself is the SQL surface",
1972
+ "record_image_ne": "internal operator implementation function; the operator itself is the SQL surface",
1973
+ "record_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1974
+ "record_larger": "internal operator implementation function; the operator itself is the SQL surface",
1975
+ "record_le": "internal operator implementation function; the operator itself is the SQL surface",
1976
+ "record_lt": "internal operator implementation function; the operator itself is the SQL surface",
1977
+ "record_ne": "internal operator implementation function; the operator itself is the SQL surface",
1978
+ "record_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1979
+ "record_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1980
+ "record_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1981
+ "record_smaller": "internal operator implementation function; the operator itself is the SQL surface",
1982
+ "regclass": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
1983
+ "regclassin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1984
+ "regclassout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1985
+ "regclassrecv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1986
+ "regclasssend": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1987
+ "regcollationin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1988
+ "regcollationout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1989
+ "regcollationrecv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1990
+ "regcollationsend": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1991
+ "regconfigin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1992
+ "regconfigout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1993
+ "regconfigrecv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1994
+ "regconfigsend": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1995
+ "regdictionaryin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1996
+ "regdictionaryout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1997
+ "regdictionaryrecv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1998
+ "regdictionarysend": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
1999
+ "regexeqjoinsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2000
+ "regexeqsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2001
+ "regexnejoinsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2002
+ "regexnesel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2003
+ "regnamespacein": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2004
+ "regnamespaceout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2005
+ "regnamespacerecv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2006
+ "regnamespacesend": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2007
+ "regoperatorin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2008
+ "regoperatorout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2009
+ "regoperatorrecv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2010
+ "regoperatorsend": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2011
+ "regoperin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2012
+ "regoperout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2013
+ "regoperrecv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2014
+ "regopersend": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2015
+ "regprocedurein": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2016
+ "regprocedureout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2017
+ "regprocedurerecv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2018
+ "regproceduresend": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2019
+ "regprocin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2020
+ "regprocout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2021
+ "regprocrecv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2022
+ "regprocsend": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2023
+ "regrolein": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2024
+ "regroleout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2025
+ "regrolerecv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2026
+ "regrolesend": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2027
+ "regtypein": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2028
+ "regtypeout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2029
+ "regtyperecv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2030
+ "regtypesend": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2031
+ "ri_fkey_cascade_del": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2032
+ "ri_fkey_cascade_upd": "internal operator implementation function; the operator itself is the SQL surface",
2033
+ "ri_fkey_check_ins": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2034
+ "ri_fkey_check_upd": "internal operator implementation function; the operator itself is the SQL surface",
2035
+ "ri_fkey_noaction_del": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2036
+ "ri_fkey_noaction_upd": "internal operator implementation function; the operator itself is the SQL surface",
2037
+ "ri_fkey_restrict_del": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2038
+ "ri_fkey_restrict_upd": "internal operator implementation function; the operator itself is the SQL surface",
2039
+ "ri_fkey_setdefault_del": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2040
+ "ri_fkey_setdefault_upd": "internal operator implementation function; the operator itself is the SQL surface",
2041
+ "ri_fkey_setnull_del": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2042
+ "ri_fkey_setnull_upd": "internal operator implementation function; the operator itself is the SQL surface",
2043
+ "row_security_active": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2044
+ "satisfies_hash_partition": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2045
+ "scalargejoinsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2046
+ "scalargesel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2047
+ "scalargtjoinsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2048
+ "scalargtsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2049
+ "scalarlejoinsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2050
+ "scalarlesel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2051
+ "scalarltjoinsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2052
+ "scalarltsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2053
+ "schema_to_xml": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2054
+ "schema_to_xml_and_xmlschema": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2055
+ "schema_to_xmlschema": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2056
+ "set_bit": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2057
+ "set_masklen": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2058
+ "sha224": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2059
+ "sha256": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2060
+ "sha384": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2061
+ "sha512": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2062
+ "shell_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2063
+ "shell_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2064
+ "shift_jis_2004_to_euc_jis_2004": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2065
+ "shift_jis_2004_to_utf8": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2066
+ "similar_escape": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2067
+ "similar_to_escape": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2068
+ "sjis_to_euc_jp": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2069
+ "sjis_to_mic": "internal operator implementation function; the operator itself is the SQL surface",
2070
+ "sjis_to_utf8": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2071
+ "slope": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2072
+ "spg_bbox_quad_config": "index access method / text-search configuration internals",
2073
+ "spg_box_quad_choose": "index access method / text-search configuration internals",
2074
+ "spg_box_quad_config": "index access method / text-search configuration internals",
2075
+ "spg_box_quad_inner_consistent": "index access method / text-search configuration internals",
2076
+ "spg_box_quad_leaf_consistent": "internal operator implementation function; the operator itself is the SQL surface",
2077
+ "spg_box_quad_picksplit": "index access method / text-search configuration internals",
2078
+ "spg_kd_choose": "index access method / text-search configuration internals",
2079
+ "spg_kd_config": "index access method / text-search configuration internals",
2080
+ "spg_kd_inner_consistent": "index access method / text-search configuration internals",
2081
+ "spg_kd_picksplit": "index access method / text-search configuration internals",
2082
+ "spg_poly_quad_compress": "index access method / text-search configuration internals",
2083
+ "spg_quad_choose": "index access method / text-search configuration internals",
2084
+ "spg_quad_config": "index access method / text-search configuration internals",
2085
+ "spg_quad_inner_consistent": "index access method / text-search configuration internals",
2086
+ "spg_quad_leaf_consistent": "internal operator implementation function; the operator itself is the SQL surface",
2087
+ "spg_quad_picksplit": "index access method / text-search configuration internals",
2088
+ "spg_range_quad_choose": "index access method / text-search configuration internals",
2089
+ "spg_range_quad_config": "index access method / text-search configuration internals",
2090
+ "spg_range_quad_inner_consistent": "index access method / text-search configuration internals",
2091
+ "spg_range_quad_leaf_consistent": "internal operator implementation function; the operator itself is the SQL surface",
2092
+ "spg_range_quad_picksplit": "index access method / text-search configuration internals",
2093
+ "spg_text_choose": "index access method / text-search configuration internals",
2094
+ "spg_text_config": "index access method / text-search configuration internals",
2095
+ "spg_text_inner_consistent": "index access method / text-search configuration internals",
2096
+ "spg_text_leaf_consistent": "internal operator implementation function; the operator itself is the SQL surface",
2097
+ "spg_text_picksplit": "index access method / text-search configuration internals",
2098
+ "spghandler": "index access method / text-search configuration internals",
2099
+ "string_agg_combine": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2100
+ "string_agg_deserialize": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2101
+ "string_agg_finalfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2102
+ "string_agg_serialize": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2103
+ "string_agg_transfn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2104
+ "suppress_redundant_updates_trigger": "internal operator implementation function; the operator itself is the SQL surface",
2105
+ "system": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2106
+ "system_user": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2107
+ "table_am_handler_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2108
+ "table_am_handler_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2109
+ "table_to_xml": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2110
+ "table_to_xml_and_xmlschema": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2111
+ "table_to_xmlschema": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2112
+ "text": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2113
+ "text_ge": "internal operator implementation function; the operator itself is the SQL surface",
2114
+ "text_gt": "internal operator implementation function; the operator itself is the SQL surface",
2115
+ "text_larger": "internal operator implementation function; the operator itself is the SQL surface",
2116
+ "text_le": "internal operator implementation function; the operator itself is the SQL surface",
2117
+ "text_lt": "internal operator implementation function; the operator itself is the SQL surface",
2118
+ "text_pattern_ge": "internal operator implementation function; the operator itself is the SQL surface",
2119
+ "text_pattern_gt": "internal operator implementation function; the operator itself is the SQL surface",
2120
+ "text_pattern_le": "internal operator implementation function; the operator itself is the SQL surface",
2121
+ "text_pattern_lt": "internal operator implementation function; the operator itself is the SQL surface",
2122
+ "text_smaller": "internal operator implementation function; the operator itself is the SQL surface",
2123
+ "text_starts_with_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2124
+ "textanycat": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2125
+ "textcat": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2126
+ "texteq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2127
+ "texteqname": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2128
+ "textgename": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2129
+ "textgtname": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2130
+ "texticlike": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2131
+ "texticlike_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2132
+ "texticnlike": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2133
+ "texticregexeq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2134
+ "texticregexeq_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2135
+ "texticregexne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2136
+ "textin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2137
+ "textlen": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2138
+ "textlename": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2139
+ "textlike": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2140
+ "textlike_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2141
+ "textltname": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2142
+ "textne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2143
+ "textnename": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2144
+ "textnlike": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2145
+ "textout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2146
+ "textrecv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2147
+ "textregexeq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2148
+ "textregexeq_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2149
+ "textregexne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2150
+ "textsend": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2151
+ "thesaurus_init": "index access method / text-search configuration internals",
2152
+ "thesaurus_lexize": "internal operator implementation function; the operator itself is the SQL surface",
2153
+ "tideq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2154
+ "tidge": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2155
+ "tidgt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2156
+ "tidin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2157
+ "tidlarger": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2158
+ "tidle": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2159
+ "tidlt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2160
+ "tidne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2161
+ "tidout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2162
+ "tidrecv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2163
+ "tidsend": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2164
+ "tidsmaller": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2165
+ "time": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2166
+ "time_cmp": "internal operator implementation function; the operator itself is the SQL surface",
2167
+ "time_eq": "internal operator implementation function; the operator itself is the SQL surface",
2168
+ "time_ge": "internal operator implementation function; the operator itself is the SQL surface",
2169
+ "time_gt": "internal operator implementation function; the operator itself is the SQL surface",
2170
+ "time_hash": "internal hash support function for hash indexes/joins",
2171
+ "time_hash_extended": "internal hash support function for hash indexes/joins",
2172
+ "time_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2173
+ "time_larger": "internal operator implementation function; the operator itself is the SQL surface",
2174
+ "time_le": "internal operator implementation function; the operator itself is the SQL surface",
2175
+ "time_lt": "internal operator implementation function; the operator itself is the SQL surface",
2176
+ "time_mi_interval": "internal operator implementation function; the operator itself is the SQL surface",
2177
+ "time_mi_time": "internal operator implementation function; the operator itself is the SQL surface",
2178
+ "time_ne": "internal operator implementation function; the operator itself is the SQL surface",
2179
+ "time_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2180
+ "time_pl_interval": "internal operator implementation function; the operator itself is the SQL surface",
2181
+ "time_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2182
+ "time_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2183
+ "time_smaller": "internal operator implementation function; the operator itself is the SQL surface",
2184
+ "time_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2185
+ "timedate_pl": "internal operator implementation function; the operator itself is the SQL surface",
2186
+ "timeofday": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2187
+ "timestamp": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2188
+ "timestamp_cmp": "internal operator implementation function; the operator itself is the SQL surface",
2189
+ "timestamp_cmp_date": "internal operator implementation function; the operator itself is the SQL surface",
2190
+ "timestamp_cmp_timestamptz": "internal operator implementation function; the operator itself is the SQL surface",
2191
+ "timestamp_eq": "internal operator implementation function; the operator itself is the SQL surface",
2192
+ "timestamp_eq_date": "internal operator implementation function; the operator itself is the SQL surface",
2193
+ "timestamp_eq_timestamptz": "internal operator implementation function; the operator itself is the SQL surface",
2194
+ "timestamp_ge": "internal operator implementation function; the operator itself is the SQL surface",
2195
+ "timestamp_ge_date": "internal operator implementation function; the operator itself is the SQL surface",
2196
+ "timestamp_ge_timestamptz": "internal operator implementation function; the operator itself is the SQL surface",
2197
+ "timestamp_gt": "internal operator implementation function; the operator itself is the SQL surface",
2198
+ "timestamp_gt_date": "internal operator implementation function; the operator itself is the SQL surface",
2199
+ "timestamp_gt_timestamptz": "internal operator implementation function; the operator itself is the SQL surface",
2200
+ "timestamp_hash": "internal hash support function for hash indexes/joins",
2201
+ "timestamp_hash_extended": "internal hash support function for hash indexes/joins",
2202
+ "timestamp_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2203
+ "timestamp_larger": "internal operator implementation function; the operator itself is the SQL surface",
2204
+ "timestamp_le": "internal operator implementation function; the operator itself is the SQL surface",
2205
+ "timestamp_le_date": "internal operator implementation function; the operator itself is the SQL surface",
2206
+ "timestamp_le_timestamptz": "internal operator implementation function; the operator itself is the SQL surface",
2207
+ "timestamp_lt": "internal operator implementation function; the operator itself is the SQL surface",
2208
+ "timestamp_lt_date": "internal operator implementation function; the operator itself is the SQL surface",
2209
+ "timestamp_lt_timestamptz": "internal operator implementation function; the operator itself is the SQL surface",
2210
+ "timestamp_mi": "internal operator implementation function; the operator itself is the SQL surface",
2211
+ "timestamp_mi_interval": "internal operator implementation function; the operator itself is the SQL surface",
2212
+ "timestamp_ne": "internal operator implementation function; the operator itself is the SQL surface",
2213
+ "timestamp_ne_date": "internal operator implementation function; the operator itself is the SQL surface",
2214
+ "timestamp_ne_timestamptz": "internal operator implementation function; the operator itself is the SQL surface",
2215
+ "timestamp_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2216
+ "timestamp_pl_interval": "internal operator implementation function; the operator itself is the SQL surface",
2217
+ "timestamp_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2218
+ "timestamp_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2219
+ "timestamp_skipsupport": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2220
+ "timestamp_smaller": "internal operator implementation function; the operator itself is the SQL surface",
2221
+ "timestamp_sortsupport": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2222
+ "timestamp_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2223
+ "timestamptypmodin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2224
+ "timestamptypmodout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2225
+ "timestamptz": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2226
+ "timestamptz_cmp": "internal operator implementation function; the operator itself is the SQL surface",
2227
+ "timestamptz_cmp_date": "internal operator implementation function; the operator itself is the SQL surface",
2228
+ "timestamptz_cmp_timestamp": "internal operator implementation function; the operator itself is the SQL surface",
2229
+ "timestamptz_eq": "internal operator implementation function; the operator itself is the SQL surface",
2230
+ "timestamptz_eq_date": "internal operator implementation function; the operator itself is the SQL surface",
2231
+ "timestamptz_eq_timestamp": "internal operator implementation function; the operator itself is the SQL surface",
2232
+ "timestamptz_ge": "internal operator implementation function; the operator itself is the SQL surface",
2233
+ "timestamptz_ge_date": "internal operator implementation function; the operator itself is the SQL surface",
2234
+ "timestamptz_ge_timestamp": "internal operator implementation function; the operator itself is the SQL surface",
2235
+ "timestamptz_gt": "internal operator implementation function; the operator itself is the SQL surface",
2236
+ "timestamptz_gt_date": "internal operator implementation function; the operator itself is the SQL surface",
2237
+ "timestamptz_gt_timestamp": "internal operator implementation function; the operator itself is the SQL surface",
2238
+ "timestamptz_hash": "internal hash support function for hash indexes/joins",
2239
+ "timestamptz_hash_extended": "internal hash support function for hash indexes/joins",
2240
+ "timestamptz_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2241
+ "timestamptz_larger": "internal operator implementation function; the operator itself is the SQL surface",
2242
+ "timestamptz_le": "internal operator implementation function; the operator itself is the SQL surface",
2243
+ "timestamptz_le_date": "internal operator implementation function; the operator itself is the SQL surface",
2244
+ "timestamptz_le_timestamp": "internal operator implementation function; the operator itself is the SQL surface",
2245
+ "timestamptz_lt": "internal operator implementation function; the operator itself is the SQL surface",
2246
+ "timestamptz_lt_date": "internal operator implementation function; the operator itself is the SQL surface",
2247
+ "timestamptz_lt_timestamp": "internal operator implementation function; the operator itself is the SQL surface",
2248
+ "timestamptz_mi": "internal operator implementation function; the operator itself is the SQL surface",
2249
+ "timestamptz_mi_interval": "internal operator implementation function; the operator itself is the SQL surface",
2250
+ "timestamptz_ne": "internal operator implementation function; the operator itself is the SQL surface",
2251
+ "timestamptz_ne_date": "internal operator implementation function; the operator itself is the SQL surface",
2252
+ "timestamptz_ne_timestamp": "internal operator implementation function; the operator itself is the SQL surface",
2253
+ "timestamptz_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2254
+ "timestamptz_pl_interval": "internal operator implementation function; the operator itself is the SQL surface",
2255
+ "timestamptz_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2256
+ "timestamptz_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2257
+ "timestamptz_smaller": "internal operator implementation function; the operator itself is the SQL surface",
2258
+ "timestamptztypmodin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2259
+ "timestamptztypmodout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2260
+ "timetypmodin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2261
+ "timetypmodout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2262
+ "timetz": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2263
+ "timetz_cmp": "internal operator implementation function; the operator itself is the SQL surface",
2264
+ "timetz_eq": "internal operator implementation function; the operator itself is the SQL surface",
2265
+ "timetz_ge": "internal operator implementation function; the operator itself is the SQL surface",
2266
+ "timetz_gt": "internal operator implementation function; the operator itself is the SQL surface",
2267
+ "timetz_hash": "internal hash support function for hash indexes/joins",
2268
+ "timetz_hash_extended": "internal hash support function for hash indexes/joins",
2269
+ "timetz_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2270
+ "timetz_larger": "internal operator implementation function; the operator itself is the SQL surface",
2271
+ "timetz_le": "internal operator implementation function; the operator itself is the SQL surface",
2272
+ "timetz_lt": "internal operator implementation function; the operator itself is the SQL surface",
2273
+ "timetz_mi_interval": "internal operator implementation function; the operator itself is the SQL surface",
2274
+ "timetz_ne": "internal operator implementation function; the operator itself is the SQL surface",
2275
+ "timetz_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2276
+ "timetz_pl_interval": "internal operator implementation function; the operator itself is the SQL surface",
2277
+ "timetz_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2278
+ "timetz_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2279
+ "timetz_smaller": "internal operator implementation function; the operator itself is the SQL surface",
2280
+ "timetzdate_pl": "internal operator implementation function; the operator itself is the SQL surface",
2281
+ "timetztypmodin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2282
+ "timetztypmodout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2283
+ "to_ascii": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2284
+ "to_bin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2285
+ "to_oct": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2286
+ "to_regclass": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2287
+ "to_regcollation": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2288
+ "to_regnamespace": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2289
+ "to_regoper": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2290
+ "to_regoperator": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2291
+ "to_regproc": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2292
+ "to_regprocedure": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2293
+ "to_regrole": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2294
+ "to_regtype": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2295
+ "to_regtypemod": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2296
+ "trigger_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2297
+ "trigger_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2298
+ "ts_debug": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2299
+ "ts_delete": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2300
+ "ts_filter": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2301
+ "ts_lexize": "internal operator implementation function; the operator itself is the SQL surface",
2302
+ "ts_match_qv": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2303
+ "ts_match_tq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2304
+ "ts_match_tt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2305
+ "ts_parse": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2306
+ "ts_rewrite": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2307
+ "ts_stat": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2308
+ "ts_token_type": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2309
+ "ts_typanalyze": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2310
+ "tsm_handler_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2311
+ "tsm_handler_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2312
+ "tsmatchjoinsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2313
+ "tsmatchsel": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2314
+ "tsmultirange": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2315
+ "tsq_mcontained": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2316
+ "tsq_mcontains": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2317
+ "tsquery_and": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2318
+ "tsquery_cmp": "internal operator implementation function; the operator itself is the SQL surface",
2319
+ "tsquery_eq": "internal operator implementation function; the operator itself is the SQL surface",
2320
+ "tsquery_ge": "internal operator implementation function; the operator itself is the SQL surface",
2321
+ "tsquery_gt": "internal operator implementation function; the operator itself is the SQL surface",
2322
+ "tsquery_le": "internal operator implementation function; the operator itself is the SQL surface",
2323
+ "tsquery_lt": "internal operator implementation function; the operator itself is the SQL surface",
2324
+ "tsquery_ne": "internal operator implementation function; the operator itself is the SQL surface",
2325
+ "tsquery_not": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2326
+ "tsquery_or": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2327
+ "tsquery_phrase": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2328
+ "tsqueryin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2329
+ "tsqueryout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2330
+ "tsqueryrecv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2331
+ "tsquerysend": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2332
+ "tsrange": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2333
+ "tsrange_subdiff": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2334
+ "tstzmultirange": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2335
+ "tstzrange": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2336
+ "tstzrange_subdiff": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2337
+ "tsvector_cmp": "internal operator implementation function; the operator itself is the SQL surface",
2338
+ "tsvector_concat": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2339
+ "tsvector_eq": "internal operator implementation function; the operator itself is the SQL surface",
2340
+ "tsvector_ge": "internal operator implementation function; the operator itself is the SQL surface",
2341
+ "tsvector_gt": "internal operator implementation function; the operator itself is the SQL surface",
2342
+ "tsvector_le": "internal operator implementation function; the operator itself is the SQL surface",
2343
+ "tsvector_lt": "internal operator implementation function; the operator itself is the SQL surface",
2344
+ "tsvector_ne": "internal operator implementation function; the operator itself is the SQL surface",
2345
+ "tsvector_to_array": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2346
+ "tsvector_update_trigger": "internal operator implementation function; the operator itself is the SQL surface",
2347
+ "tsvector_update_trigger_column": "internal operator implementation function; the operator itself is the SQL surface",
2348
+ "tsvectorin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2349
+ "tsvectorout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2350
+ "tsvectorrecv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2351
+ "tsvectorsend": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2352
+ "txid_current_snapshot": "MVCC/txid surface; single-session engine documents this as unsupported",
2353
+ "txid_snapshot_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2354
+ "txid_snapshot_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2355
+ "txid_snapshot_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2356
+ "txid_snapshot_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2357
+ "txid_snapshot_xip": "MVCC/txid surface; single-session engine documents this as unsupported",
2358
+ "txid_snapshot_xmax": "MVCC/txid surface; single-session engine documents this as unsupported",
2359
+ "txid_snapshot_xmin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2360
+ "txid_status": "MVCC/txid surface; single-session engine documents this as unsupported",
2361
+ "txid_visible_in_snapshot": "MVCC/txid surface; single-session engine documents this as unsupported",
2362
+ "uhc_to_utf8": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2363
+ "unicode_assigned": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2364
+ "unicode_version": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2365
+ "unique_key_recheck": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2366
+ "unknownin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2367
+ "unknownout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2368
+ "unknownrecv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2369
+ "unknownsend": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2370
+ "upper_inc": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2371
+ "upper_inf": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2372
+ "utf8_to_big5": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2373
+ "utf8_to_euc_cn": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2374
+ "utf8_to_euc_jis_2004": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2375
+ "utf8_to_euc_jp": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2376
+ "utf8_to_euc_kr": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2377
+ "utf8_to_euc_tw": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2378
+ "utf8_to_gb18030": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2379
+ "utf8_to_gbk": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2380
+ "utf8_to_iso8859": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2381
+ "utf8_to_iso8859_1": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2382
+ "utf8_to_johab": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2383
+ "utf8_to_koi8r": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2384
+ "utf8_to_koi8u": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2385
+ "utf8_to_shift_jis_2004": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2386
+ "utf8_to_sjis": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2387
+ "utf8_to_uhc": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2388
+ "utf8_to_win": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2389
+ "uuid_cmp": "internal operator implementation function; the operator itself is the SQL surface",
2390
+ "uuid_eq": "internal operator implementation function; the operator itself is the SQL surface",
2391
+ "uuid_extract_timestamp": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2392
+ "uuid_ge": "internal operator implementation function; the operator itself is the SQL surface",
2393
+ "uuid_gt": "internal operator implementation function; the operator itself is the SQL surface",
2394
+ "uuid_hash": "internal hash support function for hash indexes/joins",
2395
+ "uuid_hash_extended": "internal hash support function for hash indexes/joins",
2396
+ "uuid_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2397
+ "uuid_le": "internal operator implementation function; the operator itself is the SQL surface",
2398
+ "uuid_lt": "internal operator implementation function; the operator itself is the SQL surface",
2399
+ "uuid_ne": "internal operator implementation function; the operator itself is the SQL surface",
2400
+ "uuid_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2401
+ "uuid_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2402
+ "uuid_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2403
+ "uuid_skipsupport": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2404
+ "uuid_sortsupport": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2405
+ "uuidv7": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2406
+ "varbit": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2407
+ "varbit_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2408
+ "varbit_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2409
+ "varbit_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2410
+ "varbit_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2411
+ "varbit_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2412
+ "varbitcmp": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2413
+ "varbiteq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2414
+ "varbitge": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2415
+ "varbitgt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2416
+ "varbitle": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2417
+ "varbitlt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2418
+ "varbitne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2419
+ "varbittypmodin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2420
+ "varbittypmodout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2421
+ "varchar": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2422
+ "varchar_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2423
+ "varcharin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2424
+ "varcharout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2425
+ "varcharrecv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2426
+ "varcharsend": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2427
+ "varchartypmodin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2428
+ "varchartypmodout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2429
+ "void_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2430
+ "void_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2431
+ "void_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2432
+ "void_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2433
+ "websearch_to_tsquery": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2434
+ "width": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2435
+ "win1250_to_latin2": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2436
+ "win1250_to_mic": "internal operator implementation function; the operator itself is the SQL surface",
2437
+ "win1251_to_iso": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2438
+ "win1251_to_koi8r": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2439
+ "win1251_to_mic": "internal operator implementation function; the operator itself is the SQL surface",
2440
+ "win1251_to_win866": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2441
+ "win866_to_iso": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2442
+ "win866_to_koi8r": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2443
+ "win866_to_mic": "internal operator implementation function; the operator itself is the SQL surface",
2444
+ "win866_to_win1251": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2445
+ "win_to_utf8": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2446
+ "window_cume_dist_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2447
+ "window_dense_rank_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2448
+ "window_ntile_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2449
+ "window_percent_rank_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2450
+ "window_rank_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2451
+ "window_row_number_support": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2452
+ "xid": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2453
+ "xid8_larger": "internal operator implementation function; the operator itself is the SQL surface",
2454
+ "xid8_smaller": "internal operator implementation function; the operator itself is the SQL surface",
2455
+ "xid8cmp": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2456
+ "xid8eq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2457
+ "xid8ge": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2458
+ "xid8gt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2459
+ "xid8in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2460
+ "xid8le": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2461
+ "xid8lt": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2462
+ "xid8ne": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2463
+ "xid8out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2464
+ "xid8recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2465
+ "xid8send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2466
+ "xideq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2467
+ "xideqint4": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2468
+ "xidin": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2469
+ "xidneq": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2470
+ "xidneqint4": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2471
+ "xidout": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2472
+ "xidrecv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2473
+ "xidsend": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2474
+ "xml": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2475
+ "xml_in": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2476
+ "xml_is_well_formed": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2477
+ "xml_is_well_formed_content": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2478
+ "xml_is_well_formed_document": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2479
+ "xml_out": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2480
+ "xml_recv": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2481
+ "xml_send": "type I/O / wire-protocol support function; not part of the SQL dialect surface",
2482
+ "xmlagg": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2483
+ "xmlcomment": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2484
+ "xmlconcat2": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2485
+ "xmlexists": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2486
+ "xmltext": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2487
+ "xmlvalidate": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2488
+ "xpath": "not implemented in this milestone; calls fail loud with SQLSTATE 42883",
2489
+ "xpath_exists": "not implemented in this milestone; calls fail loud with SQLSTATE 42883"
2490
+ },
2491
+ "operators": {
2492
+ "!!": "operator not implemented; expressions using it fail loud with 42883",
2493
+ "##": "operator not implemented; expressions using it fail loud with 42883",
2494
+ "&<": "operator not implemented; expressions using it fail loud with 42883",
2495
+ "&<|": "operator not implemented; expressions using it fail loud with 42883",
2496
+ "&>": "operator not implemented; expressions using it fail loud with 42883",
2497
+ "*<": "operator not implemented; expressions using it fail loud with 42883",
2498
+ "*<=": "operator not implemented; expressions using it fail loud with 42883",
2499
+ "*<>": "operator not implemented; expressions using it fail loud with 42883",
2500
+ "*=": "operator not implemented; expressions using it fail loud with 42883",
2501
+ "*>": "operator not implemented; expressions using it fail loud with 42883",
2502
+ "*>=": "operator not implemented; expressions using it fail loud with 42883",
2503
+ "-|-": "operator not implemented; expressions using it fail loud with 42883",
2504
+ "<->": "operator not implemented; expressions using it fail loud with 42883",
2505
+ "<<=": "operator not implemented; expressions using it fail loud with 42883",
2506
+ "<<|": "operator not implemented; expressions using it fail loud with 42883",
2507
+ "<^": "operator not implemented; expressions using it fail loud with 42883",
2508
+ ">>=": "operator not implemented; expressions using it fail loud with 42883",
2509
+ ">^": "operator not implemented; expressions using it fail loud with 42883",
2510
+ "?#": "operator not implemented; expressions using it fail loud with 42883",
2511
+ "?-": "operator not implemented; expressions using it fail loud with 42883",
2512
+ "?-|": "operator not implemented; expressions using it fail loud with 42883",
2513
+ "?||": "operator not implemented; expressions using it fail loud with 42883",
2514
+ "@-@": "operator not implemented; expressions using it fail loud with 42883",
2515
+ "@?": "operator not implemented; expressions using it fail loud with 42883",
2516
+ "@@@": "operator not implemented; expressions using it fail loud with 42883",
2517
+ "^@": "operator not implemented; expressions using it fail loud with 42883",
2518
+ "|&>": "operator not implemented; expressions using it fail loud with 42883",
2519
+ "|>>": "operator not implemented; expressions using it fail loud with 42883",
2520
+ "~<=~": "operator not implemented; expressions using it fail loud with 42883",
2521
+ "~<~": "operator not implemented; expressions using it fail loud with 42883",
2522
+ "~=": "operator not implemented; expressions using it fail loud with 42883",
2523
+ "~>=~": "operator not implemented; expressions using it fail loud with 42883",
2524
+ "~>~": "operator not implemented; expressions using it fail loud with 42883"
2525
+ }
2526
+ }