gitlab-pg_query 1.3.1 → 2.0.4

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 (480) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +217 -99
  3. data/README.md +92 -69
  4. data/Rakefile +85 -5
  5. data/ext/pg_query/extconf.rb +3 -40
  6. data/ext/pg_query/guc-file.c +0 -0
  7. data/ext/pg_query/include/access/amapi.h +246 -0
  8. data/ext/pg_query/include/access/attmap.h +52 -0
  9. data/ext/pg_query/include/access/attnum.h +64 -0
  10. data/ext/pg_query/include/access/clog.h +61 -0
  11. data/ext/pg_query/include/access/commit_ts.h +77 -0
  12. data/ext/pg_query/include/access/detoast.h +92 -0
  13. data/ext/pg_query/include/access/genam.h +228 -0
  14. data/ext/pg_query/include/access/gin.h +78 -0
  15. data/ext/pg_query/include/access/htup.h +89 -0
  16. data/ext/pg_query/include/access/htup_details.h +819 -0
  17. data/ext/pg_query/include/access/itup.h +161 -0
  18. data/ext/pg_query/include/access/parallel.h +82 -0
  19. data/ext/pg_query/include/access/printtup.h +35 -0
  20. data/ext/pg_query/include/access/relation.h +28 -0
  21. data/ext/pg_query/include/access/relscan.h +176 -0
  22. data/ext/pg_query/include/access/rmgr.h +35 -0
  23. data/ext/pg_query/include/access/rmgrlist.h +49 -0
  24. data/ext/pg_query/include/access/sdir.h +58 -0
  25. data/ext/pg_query/include/access/skey.h +151 -0
  26. data/ext/pg_query/include/access/stratnum.h +83 -0
  27. data/ext/pg_query/include/access/sysattr.h +29 -0
  28. data/ext/pg_query/include/access/table.h +27 -0
  29. data/ext/pg_query/include/access/tableam.h +1825 -0
  30. data/ext/pg_query/include/access/transam.h +265 -0
  31. data/ext/pg_query/include/access/tupconvert.h +51 -0
  32. data/ext/pg_query/include/access/tupdesc.h +154 -0
  33. data/ext/pg_query/include/access/tupmacs.h +247 -0
  34. data/ext/pg_query/include/access/twophase.h +61 -0
  35. data/ext/pg_query/include/access/xact.h +463 -0
  36. data/ext/pg_query/include/access/xlog.h +398 -0
  37. data/ext/pg_query/include/access/xlog_internal.h +330 -0
  38. data/ext/pg_query/include/access/xlogdefs.h +109 -0
  39. data/ext/pg_query/include/access/xloginsert.h +64 -0
  40. data/ext/pg_query/include/access/xlogreader.h +327 -0
  41. data/ext/pg_query/include/access/xlogrecord.h +227 -0
  42. data/ext/pg_query/include/bootstrap/bootstrap.h +62 -0
  43. data/ext/pg_query/include/c.h +1322 -0
  44. data/ext/pg_query/include/catalog/catalog.h +42 -0
  45. data/ext/pg_query/include/catalog/catversion.h +58 -0
  46. data/ext/pg_query/include/catalog/dependency.h +275 -0
  47. data/ext/pg_query/include/catalog/genbki.h +64 -0
  48. data/ext/pg_query/include/catalog/index.h +199 -0
  49. data/ext/pg_query/include/catalog/indexing.h +366 -0
  50. data/ext/pg_query/include/catalog/namespace.h +188 -0
  51. data/ext/pg_query/include/catalog/objectaccess.h +197 -0
  52. data/ext/pg_query/include/catalog/objectaddress.h +84 -0
  53. data/ext/pg_query/include/catalog/pg_aggregate.h +176 -0
  54. data/ext/pg_query/include/catalog/pg_aggregate_d.h +77 -0
  55. data/ext/pg_query/include/catalog/pg_am.h +60 -0
  56. data/ext/pg_query/include/catalog/pg_am_d.h +45 -0
  57. data/ext/pg_query/include/catalog/pg_attribute.h +204 -0
  58. data/ext/pg_query/include/catalog/pg_attribute_d.h +59 -0
  59. data/ext/pg_query/include/catalog/pg_authid.h +58 -0
  60. data/ext/pg_query/include/catalog/pg_authid_d.h +49 -0
  61. data/ext/pg_query/include/catalog/pg_class.h +200 -0
  62. data/ext/pg_query/include/catalog/pg_class_d.h +103 -0
  63. data/ext/pg_query/include/catalog/pg_collation.h +73 -0
  64. data/ext/pg_query/include/catalog/pg_collation_d.h +45 -0
  65. data/ext/pg_query/include/catalog/pg_constraint.h +247 -0
  66. data/ext/pg_query/include/catalog/pg_constraint_d.h +67 -0
  67. data/ext/pg_query/include/catalog/pg_control.h +250 -0
  68. data/ext/pg_query/include/catalog/pg_conversion.h +72 -0
  69. data/ext/pg_query/include/catalog/pg_conversion_d.h +35 -0
  70. data/ext/pg_query/include/catalog/pg_depend.h +73 -0
  71. data/ext/pg_query/include/catalog/pg_depend_d.h +34 -0
  72. data/ext/pg_query/include/catalog/pg_event_trigger.h +51 -0
  73. data/ext/pg_query/include/catalog/pg_event_trigger_d.h +34 -0
  74. data/ext/pg_query/include/catalog/pg_index.h +80 -0
  75. data/ext/pg_query/include/catalog/pg_index_d.h +56 -0
  76. data/ext/pg_query/include/catalog/pg_language.h +67 -0
  77. data/ext/pg_query/include/catalog/pg_language_d.h +39 -0
  78. data/ext/pg_query/include/catalog/pg_namespace.h +59 -0
  79. data/ext/pg_query/include/catalog/pg_namespace_d.h +34 -0
  80. data/ext/pg_query/include/catalog/pg_opclass.h +85 -0
  81. data/ext/pg_query/include/catalog/pg_opclass_d.h +49 -0
  82. data/ext/pg_query/include/catalog/pg_operator.h +102 -0
  83. data/ext/pg_query/include/catalog/pg_operator_d.h +106 -0
  84. data/ext/pg_query/include/catalog/pg_opfamily.h +60 -0
  85. data/ext/pg_query/include/catalog/pg_opfamily_d.h +47 -0
  86. data/ext/pg_query/include/catalog/pg_partitioned_table.h +63 -0
  87. data/ext/pg_query/include/catalog/pg_partitioned_table_d.h +35 -0
  88. data/ext/pg_query/include/catalog/pg_proc.h +211 -0
  89. data/ext/pg_query/include/catalog/pg_proc_d.h +99 -0
  90. data/ext/pg_query/include/catalog/pg_publication.h +115 -0
  91. data/ext/pg_query/include/catalog/pg_publication_d.h +36 -0
  92. data/ext/pg_query/include/catalog/pg_replication_origin.h +57 -0
  93. data/ext/pg_query/include/catalog/pg_replication_origin_d.h +29 -0
  94. data/ext/pg_query/include/catalog/pg_statistic.h +275 -0
  95. data/ext/pg_query/include/catalog/pg_statistic_d.h +194 -0
  96. data/ext/pg_query/include/catalog/pg_statistic_ext.h +74 -0
  97. data/ext/pg_query/include/catalog/pg_statistic_ext_d.h +40 -0
  98. data/ext/pg_query/include/catalog/pg_transform.h +45 -0
  99. data/ext/pg_query/include/catalog/pg_transform_d.h +32 -0
  100. data/ext/pg_query/include/catalog/pg_trigger.h +137 -0
  101. data/ext/pg_query/include/catalog/pg_trigger_d.h +106 -0
  102. data/ext/pg_query/include/catalog/pg_ts_config.h +50 -0
  103. data/ext/pg_query/include/catalog/pg_ts_config_d.h +32 -0
  104. data/ext/pg_query/include/catalog/pg_ts_dict.h +54 -0
  105. data/ext/pg_query/include/catalog/pg_ts_dict_d.h +33 -0
  106. data/ext/pg_query/include/catalog/pg_ts_parser.h +57 -0
  107. data/ext/pg_query/include/catalog/pg_ts_parser_d.h +35 -0
  108. data/ext/pg_query/include/catalog/pg_ts_template.h +48 -0
  109. data/ext/pg_query/include/catalog/pg_ts_template_d.h +32 -0
  110. data/ext/pg_query/include/catalog/pg_type.h +372 -0
  111. data/ext/pg_query/include/catalog/pg_type_d.h +285 -0
  112. data/ext/pg_query/include/catalog/storage.h +48 -0
  113. data/ext/pg_query/include/commands/async.h +54 -0
  114. data/ext/pg_query/include/commands/dbcommands.h +35 -0
  115. data/ext/pg_query/include/commands/defrem.h +173 -0
  116. data/ext/pg_query/include/commands/event_trigger.h +88 -0
  117. data/ext/pg_query/include/commands/explain.h +127 -0
  118. data/ext/pg_query/include/commands/prepare.h +61 -0
  119. data/ext/pg_query/include/commands/tablespace.h +67 -0
  120. data/ext/pg_query/include/commands/trigger.h +277 -0
  121. data/ext/pg_query/include/commands/user.h +37 -0
  122. data/ext/pg_query/include/commands/vacuum.h +293 -0
  123. data/ext/pg_query/include/commands/variable.h +38 -0
  124. data/ext/pg_query/include/common/file_perm.h +56 -0
  125. data/ext/pg_query/include/common/hashfn.h +104 -0
  126. data/ext/pg_query/include/common/ip.h +37 -0
  127. data/ext/pg_query/include/common/keywords.h +33 -0
  128. data/ext/pg_query/include/common/kwlookup.h +44 -0
  129. data/ext/pg_query/include/common/relpath.h +90 -0
  130. data/ext/pg_query/include/common/string.h +19 -0
  131. data/ext/pg_query/include/common/unicode_combining_table.h +196 -0
  132. data/ext/pg_query/include/datatype/timestamp.h +197 -0
  133. data/ext/pg_query/include/executor/execdesc.h +70 -0
  134. data/ext/pg_query/include/executor/executor.h +614 -0
  135. data/ext/pg_query/include/executor/functions.h +41 -0
  136. data/ext/pg_query/include/executor/instrument.h +101 -0
  137. data/ext/pg_query/include/executor/spi.h +175 -0
  138. data/ext/pg_query/include/executor/tablefunc.h +67 -0
  139. data/ext/pg_query/include/executor/tuptable.h +487 -0
  140. data/ext/pg_query/include/fmgr.h +775 -0
  141. data/ext/pg_query/include/funcapi.h +348 -0
  142. data/ext/pg_query/include/getaddrinfo.h +162 -0
  143. data/ext/pg_query/include/jit/jit.h +105 -0
  144. data/ext/pg_query/include/kwlist_d.h +1072 -0
  145. data/ext/pg_query/include/lib/ilist.h +727 -0
  146. data/ext/pg_query/include/lib/pairingheap.h +102 -0
  147. data/ext/pg_query/include/lib/simplehash.h +1059 -0
  148. data/ext/pg_query/include/lib/stringinfo.h +161 -0
  149. data/ext/pg_query/include/libpq/auth.h +29 -0
  150. data/ext/pg_query/include/libpq/crypt.h +46 -0
  151. data/ext/pg_query/include/libpq/hba.h +140 -0
  152. data/ext/pg_query/include/libpq/libpq-be.h +326 -0
  153. data/ext/pg_query/include/libpq/libpq.h +133 -0
  154. data/ext/pg_query/include/libpq/pqcomm.h +208 -0
  155. data/ext/pg_query/include/libpq/pqformat.h +210 -0
  156. data/ext/pg_query/include/libpq/pqsignal.h +42 -0
  157. data/ext/pg_query/include/mb/pg_wchar.h +672 -0
  158. data/ext/pg_query/include/mb/stringinfo_mb.h +24 -0
  159. data/ext/pg_query/include/miscadmin.h +476 -0
  160. data/ext/pg_query/include/nodes/bitmapset.h +122 -0
  161. data/ext/pg_query/include/nodes/execnodes.h +2520 -0
  162. data/ext/pg_query/include/nodes/extensible.h +160 -0
  163. data/ext/pg_query/include/nodes/lockoptions.h +61 -0
  164. data/ext/pg_query/include/nodes/makefuncs.h +108 -0
  165. data/ext/pg_query/include/nodes/memnodes.h +108 -0
  166. data/ext/pg_query/include/nodes/nodeFuncs.h +162 -0
  167. data/ext/pg_query/include/nodes/nodes.h +842 -0
  168. data/ext/pg_query/include/nodes/params.h +170 -0
  169. data/ext/pg_query/include/nodes/parsenodes.h +3579 -0
  170. data/ext/pg_query/include/nodes/pathnodes.h +2556 -0
  171. data/ext/pg_query/include/nodes/pg_list.h +605 -0
  172. data/ext/pg_query/include/nodes/plannodes.h +1251 -0
  173. data/ext/pg_query/include/nodes/primnodes.h +1541 -0
  174. data/ext/pg_query/include/nodes/print.h +34 -0
  175. data/ext/pg_query/include/nodes/tidbitmap.h +75 -0
  176. data/ext/pg_query/include/nodes/value.h +61 -0
  177. data/ext/pg_query/include/optimizer/cost.h +206 -0
  178. data/ext/pg_query/include/optimizer/geqo.h +88 -0
  179. data/ext/pg_query/include/optimizer/geqo_gene.h +45 -0
  180. data/ext/pg_query/include/optimizer/optimizer.h +199 -0
  181. data/ext/pg_query/include/optimizer/paths.h +249 -0
  182. data/ext/pg_query/include/optimizer/planmain.h +119 -0
  183. data/ext/pg_query/include/parser/analyze.h +49 -0
  184. data/ext/pg_query/include/parser/gram.h +1067 -0
  185. data/ext/pg_query/include/parser/gramparse.h +75 -0
  186. data/ext/pg_query/include/parser/kwlist.h +477 -0
  187. data/ext/pg_query/include/parser/parse_agg.h +68 -0
  188. data/ext/pg_query/include/parser/parse_clause.h +54 -0
  189. data/ext/pg_query/include/parser/parse_coerce.h +97 -0
  190. data/ext/pg_query/include/parser/parse_collate.h +27 -0
  191. data/ext/pg_query/include/parser/parse_expr.h +26 -0
  192. data/ext/pg_query/include/parser/parse_func.h +73 -0
  193. data/ext/pg_query/include/parser/parse_node.h +327 -0
  194. data/ext/pg_query/include/parser/parse_oper.h +67 -0
  195. data/ext/pg_query/include/parser/parse_relation.h +123 -0
  196. data/ext/pg_query/include/parser/parse_target.h +46 -0
  197. data/ext/pg_query/include/parser/parse_type.h +60 -0
  198. data/ext/pg_query/include/parser/parser.h +41 -0
  199. data/ext/pg_query/include/parser/parsetree.h +61 -0
  200. data/ext/pg_query/include/parser/scanner.h +152 -0
  201. data/ext/pg_query/include/parser/scansup.h +30 -0
  202. data/ext/pg_query/include/partitioning/partdefs.h +26 -0
  203. data/ext/pg_query/include/pg_config.h +989 -0
  204. data/ext/pg_query/include/pg_config_ext.h +8 -0
  205. data/ext/pg_query/include/pg_config_manual.h +350 -0
  206. data/ext/pg_query/include/pg_config_os.h +8 -0
  207. data/ext/pg_query/include/pg_getopt.h +56 -0
  208. data/ext/pg_query/include/pg_query.h +121 -0
  209. data/ext/pg_query/include/pg_query_enum_defs.c +2454 -0
  210. data/ext/pg_query/include/pg_query_fingerprint_conds.c +875 -0
  211. data/ext/pg_query/include/pg_query_fingerprint_defs.c +12413 -0
  212. data/ext/pg_query/include/pg_query_json_helper.c +61 -0
  213. data/ext/pg_query/include/pg_query_outfuncs_conds.c +686 -0
  214. data/ext/pg_query/include/pg_query_outfuncs_defs.c +2437 -0
  215. data/ext/pg_query/include/pg_query_readfuncs_conds.c +222 -0
  216. data/ext/pg_query/include/pg_query_readfuncs_defs.c +2878 -0
  217. data/ext/pg_query/include/pg_trace.h +17 -0
  218. data/ext/pg_query/include/pgstat.h +1487 -0
  219. data/ext/pg_query/include/pgtime.h +84 -0
  220. data/ext/pg_query/include/pl_gram.h +385 -0
  221. data/ext/pg_query/include/pl_reserved_kwlist.h +52 -0
  222. data/ext/pg_query/include/pl_reserved_kwlist_d.h +114 -0
  223. data/ext/pg_query/include/pl_unreserved_kwlist.h +112 -0
  224. data/ext/pg_query/include/pl_unreserved_kwlist_d.h +246 -0
  225. data/ext/pg_query/include/plerrcodes.h +990 -0
  226. data/ext/pg_query/include/plpgsql.h +1347 -0
  227. data/ext/pg_query/include/port.h +524 -0
  228. data/ext/pg_query/include/port/atomics.h +524 -0
  229. data/ext/pg_query/include/port/atomics/arch-arm.h +26 -0
  230. data/ext/pg_query/include/port/atomics/arch-ppc.h +254 -0
  231. data/ext/pg_query/include/port/atomics/arch-x86.h +252 -0
  232. data/ext/pg_query/include/port/atomics/fallback.h +170 -0
  233. data/ext/pg_query/include/port/atomics/generic-gcc.h +286 -0
  234. data/ext/pg_query/include/port/atomics/generic.h +401 -0
  235. data/ext/pg_query/include/port/pg_bitutils.h +226 -0
  236. data/ext/pg_query/include/port/pg_bswap.h +161 -0
  237. data/ext/pg_query/include/port/pg_crc32c.h +101 -0
  238. data/ext/pg_query/include/portability/instr_time.h +256 -0
  239. data/ext/pg_query/include/postgres.h +764 -0
  240. data/ext/pg_query/include/postgres_ext.h +74 -0
  241. data/ext/pg_query/include/postmaster/autovacuum.h +83 -0
  242. data/ext/pg_query/include/postmaster/bgworker.h +161 -0
  243. data/ext/pg_query/include/postmaster/bgworker_internals.h +64 -0
  244. data/ext/pg_query/include/postmaster/bgwriter.h +45 -0
  245. data/ext/pg_query/include/postmaster/fork_process.h +17 -0
  246. data/ext/pg_query/include/postmaster/interrupt.h +32 -0
  247. data/ext/pg_query/include/postmaster/pgarch.h +39 -0
  248. data/ext/pg_query/include/postmaster/postmaster.h +77 -0
  249. data/ext/pg_query/include/postmaster/syslogger.h +98 -0
  250. data/ext/pg_query/include/postmaster/walwriter.h +21 -0
  251. data/ext/pg_query/include/protobuf-c.h +1106 -0
  252. data/ext/pg_query/include/protobuf-c/protobuf-c.h +1106 -0
  253. data/ext/pg_query/include/protobuf/pg_query.pb-c.h +10846 -0
  254. data/ext/pg_query/include/protobuf/pg_query.pb.h +124718 -0
  255. data/ext/pg_query/include/regex/regex.h +184 -0
  256. data/ext/pg_query/include/replication/logicallauncher.h +31 -0
  257. data/ext/pg_query/include/replication/logicalproto.h +110 -0
  258. data/ext/pg_query/include/replication/logicalworker.h +19 -0
  259. data/ext/pg_query/include/replication/origin.h +73 -0
  260. data/ext/pg_query/include/replication/reorderbuffer.h +467 -0
  261. data/ext/pg_query/include/replication/slot.h +219 -0
  262. data/ext/pg_query/include/replication/syncrep.h +115 -0
  263. data/ext/pg_query/include/replication/walreceiver.h +340 -0
  264. data/ext/pg_query/include/replication/walsender.h +74 -0
  265. data/ext/pg_query/include/rewrite/prs2lock.h +46 -0
  266. data/ext/pg_query/include/rewrite/rewriteHandler.h +40 -0
  267. data/ext/pg_query/include/rewrite/rewriteManip.h +87 -0
  268. data/ext/pg_query/include/rewrite/rewriteSupport.h +26 -0
  269. data/ext/pg_query/include/storage/backendid.h +37 -0
  270. data/ext/pg_query/include/storage/block.h +121 -0
  271. data/ext/pg_query/include/storage/buf.h +46 -0
  272. data/ext/pg_query/include/storage/bufmgr.h +292 -0
  273. data/ext/pg_query/include/storage/bufpage.h +459 -0
  274. data/ext/pg_query/include/storage/condition_variable.h +62 -0
  275. data/ext/pg_query/include/storage/dsm.h +61 -0
  276. data/ext/pg_query/include/storage/dsm_impl.h +75 -0
  277. data/ext/pg_query/include/storage/fd.h +168 -0
  278. data/ext/pg_query/include/storage/ipc.h +81 -0
  279. data/ext/pg_query/include/storage/item.h +19 -0
  280. data/ext/pg_query/include/storage/itemid.h +184 -0
  281. data/ext/pg_query/include/storage/itemptr.h +206 -0
  282. data/ext/pg_query/include/storage/large_object.h +100 -0
  283. data/ext/pg_query/include/storage/latch.h +190 -0
  284. data/ext/pg_query/include/storage/lmgr.h +114 -0
  285. data/ext/pg_query/include/storage/lock.h +612 -0
  286. data/ext/pg_query/include/storage/lockdefs.h +59 -0
  287. data/ext/pg_query/include/storage/lwlock.h +232 -0
  288. data/ext/pg_query/include/storage/lwlocknames.h +51 -0
  289. data/ext/pg_query/include/storage/off.h +57 -0
  290. data/ext/pg_query/include/storage/pg_sema.h +61 -0
  291. data/ext/pg_query/include/storage/pg_shmem.h +90 -0
  292. data/ext/pg_query/include/storage/pmsignal.h +94 -0
  293. data/ext/pg_query/include/storage/predicate.h +87 -0
  294. data/ext/pg_query/include/storage/proc.h +333 -0
  295. data/ext/pg_query/include/storage/proclist_types.h +51 -0
  296. data/ext/pg_query/include/storage/procsignal.h +75 -0
  297. data/ext/pg_query/include/storage/relfilenode.h +99 -0
  298. data/ext/pg_query/include/storage/s_lock.h +1047 -0
  299. data/ext/pg_query/include/storage/sharedfileset.h +45 -0
  300. data/ext/pg_query/include/storage/shm_mq.h +85 -0
  301. data/ext/pg_query/include/storage/shm_toc.h +58 -0
  302. data/ext/pg_query/include/storage/shmem.h +81 -0
  303. data/ext/pg_query/include/storage/sinval.h +153 -0
  304. data/ext/pg_query/include/storage/sinvaladt.h +43 -0
  305. data/ext/pg_query/include/storage/smgr.h +109 -0
  306. data/ext/pg_query/include/storage/spin.h +77 -0
  307. data/ext/pg_query/include/storage/standby.h +91 -0
  308. data/ext/pg_query/include/storage/standbydefs.h +74 -0
  309. data/ext/pg_query/include/storage/sync.h +62 -0
  310. data/ext/pg_query/include/tcop/cmdtag.h +58 -0
  311. data/ext/pg_query/include/tcop/cmdtaglist.h +217 -0
  312. data/ext/pg_query/include/tcop/deparse_utility.h +108 -0
  313. data/ext/pg_query/include/tcop/dest.h +149 -0
  314. data/ext/pg_query/include/tcop/fastpath.h +21 -0
  315. data/ext/pg_query/include/tcop/pquery.h +45 -0
  316. data/ext/pg_query/include/tcop/tcopprot.h +89 -0
  317. data/ext/pg_query/include/tcop/utility.h +108 -0
  318. data/ext/pg_query/include/tsearch/ts_cache.h +98 -0
  319. data/ext/pg_query/include/utils/acl.h +312 -0
  320. data/ext/pg_query/include/utils/aclchk_internal.h +45 -0
  321. data/ext/pg_query/include/utils/array.h +458 -0
  322. data/ext/pg_query/include/utils/builtins.h +127 -0
  323. data/ext/pg_query/include/utils/bytea.h +27 -0
  324. data/ext/pg_query/include/utils/catcache.h +231 -0
  325. data/ext/pg_query/include/utils/date.h +90 -0
  326. data/ext/pg_query/include/utils/datetime.h +343 -0
  327. data/ext/pg_query/include/utils/datum.h +68 -0
  328. data/ext/pg_query/include/utils/dsa.h +123 -0
  329. data/ext/pg_query/include/utils/dynahash.h +19 -0
  330. data/ext/pg_query/include/utils/elog.h +439 -0
  331. data/ext/pg_query/include/utils/errcodes.h +352 -0
  332. data/ext/pg_query/include/utils/expandeddatum.h +159 -0
  333. data/ext/pg_query/include/utils/expandedrecord.h +231 -0
  334. data/ext/pg_query/include/utils/float.h +356 -0
  335. data/ext/pg_query/include/utils/fmgroids.h +2657 -0
  336. data/ext/pg_query/include/utils/fmgrprotos.h +2646 -0
  337. data/ext/pg_query/include/utils/fmgrtab.h +48 -0
  338. data/ext/pg_query/include/utils/guc.h +443 -0
  339. data/ext/pg_query/include/utils/guc_tables.h +272 -0
  340. data/ext/pg_query/include/utils/hsearch.h +149 -0
  341. data/ext/pg_query/include/utils/inval.h +64 -0
  342. data/ext/pg_query/include/utils/lsyscache.h +197 -0
  343. data/ext/pg_query/include/utils/memdebug.h +82 -0
  344. data/ext/pg_query/include/utils/memutils.h +225 -0
  345. data/ext/pg_query/include/utils/numeric.h +76 -0
  346. data/ext/pg_query/include/utils/palloc.h +136 -0
  347. data/ext/pg_query/include/utils/partcache.h +102 -0
  348. data/ext/pg_query/include/utils/pg_locale.h +119 -0
  349. data/ext/pg_query/include/utils/pg_lsn.h +29 -0
  350. data/ext/pg_query/include/utils/pidfile.h +56 -0
  351. data/ext/pg_query/include/utils/plancache.h +235 -0
  352. data/ext/pg_query/include/utils/portal.h +241 -0
  353. data/ext/pg_query/include/utils/probes.h +114 -0
  354. data/ext/pg_query/include/utils/ps_status.h +25 -0
  355. data/ext/pg_query/include/utils/queryenvironment.h +74 -0
  356. data/ext/pg_query/include/utils/regproc.h +28 -0
  357. data/ext/pg_query/include/utils/rel.h +644 -0
  358. data/ext/pg_query/include/utils/relcache.h +151 -0
  359. data/ext/pg_query/include/utils/reltrigger.h +81 -0
  360. data/ext/pg_query/include/utils/resowner.h +86 -0
  361. data/ext/pg_query/include/utils/rls.h +50 -0
  362. data/ext/pg_query/include/utils/ruleutils.h +44 -0
  363. data/ext/pg_query/include/utils/sharedtuplestore.h +61 -0
  364. data/ext/pg_query/include/utils/snapmgr.h +158 -0
  365. data/ext/pg_query/include/utils/snapshot.h +206 -0
  366. data/ext/pg_query/include/utils/sortsupport.h +276 -0
  367. data/ext/pg_query/include/utils/syscache.h +219 -0
  368. data/ext/pg_query/include/utils/timeout.h +88 -0
  369. data/ext/pg_query/include/utils/timestamp.h +116 -0
  370. data/ext/pg_query/include/utils/tuplesort.h +277 -0
  371. data/ext/pg_query/include/utils/tuplestore.h +91 -0
  372. data/ext/pg_query/include/utils/typcache.h +202 -0
  373. data/ext/pg_query/include/utils/tzparser.h +39 -0
  374. data/ext/pg_query/include/utils/varlena.h +39 -0
  375. data/ext/pg_query/include/utils/xml.h +84 -0
  376. data/ext/pg_query/include/xxhash.h +5445 -0
  377. data/ext/pg_query/include/xxhash/xxhash.h +5445 -0
  378. data/ext/pg_query/pg_query.c +104 -0
  379. data/ext/pg_query/pg_query.pb-c.c +37628 -0
  380. data/ext/pg_query/pg_query_deparse.c +9959 -0
  381. data/ext/pg_query/pg_query_fingerprint.c +295 -0
  382. data/ext/pg_query/pg_query_fingerprint.h +8 -0
  383. data/ext/pg_query/pg_query_internal.h +24 -0
  384. data/ext/pg_query/pg_query_json_plpgsql.c +738 -0
  385. data/ext/pg_query/pg_query_json_plpgsql.h +9 -0
  386. data/ext/pg_query/pg_query_normalize.c +439 -0
  387. data/ext/pg_query/pg_query_outfuncs.h +10 -0
  388. data/ext/pg_query/pg_query_outfuncs_json.c +297 -0
  389. data/ext/pg_query/pg_query_outfuncs_protobuf.c +237 -0
  390. data/ext/pg_query/pg_query_parse.c +148 -0
  391. data/ext/pg_query/pg_query_parse_plpgsql.c +460 -0
  392. data/ext/pg_query/pg_query_readfuncs.h +11 -0
  393. data/ext/pg_query/pg_query_readfuncs_protobuf.c +142 -0
  394. data/ext/pg_query/pg_query_ruby.c +108 -12
  395. data/ext/pg_query/pg_query_scan.c +173 -0
  396. data/ext/pg_query/pg_query_split.c +221 -0
  397. data/ext/pg_query/protobuf-c.c +3660 -0
  398. data/ext/pg_query/src_backend_catalog_namespace.c +1051 -0
  399. data/ext/pg_query/src_backend_catalog_pg_proc.c +142 -0
  400. data/ext/pg_query/src_backend_commands_define.c +117 -0
  401. data/ext/pg_query/src_backend_libpq_pqcomm.c +651 -0
  402. data/ext/pg_query/src_backend_nodes_bitmapset.c +513 -0
  403. data/ext/pg_query/src_backend_nodes_copyfuncs.c +6013 -0
  404. data/ext/pg_query/src_backend_nodes_equalfuncs.c +4003 -0
  405. data/ext/pg_query/src_backend_nodes_extensible.c +99 -0
  406. data/ext/pg_query/src_backend_nodes_list.c +922 -0
  407. data/ext/pg_query/src_backend_nodes_makefuncs.c +417 -0
  408. data/ext/pg_query/src_backend_nodes_nodeFuncs.c +1363 -0
  409. data/ext/pg_query/src_backend_nodes_value.c +84 -0
  410. data/ext/pg_query/src_backend_parser_gram.c +47456 -0
  411. data/ext/pg_query/src_backend_parser_parse_expr.c +313 -0
  412. data/ext/pg_query/src_backend_parser_parser.c +497 -0
  413. data/ext/pg_query/src_backend_parser_scan.c +7091 -0
  414. data/ext/pg_query/src_backend_parser_scansup.c +160 -0
  415. data/ext/pg_query/src_backend_postmaster_postmaster.c +2230 -0
  416. data/ext/pg_query/src_backend_storage_ipc_ipc.c +192 -0
  417. data/ext/pg_query/src_backend_storage_lmgr_s_lock.c +370 -0
  418. data/ext/pg_query/src_backend_tcop_postgres.c +776 -0
  419. data/ext/pg_query/src_backend_utils_adt_datum.c +326 -0
  420. data/ext/pg_query/src_backend_utils_adt_expandeddatum.c +98 -0
  421. data/ext/pg_query/src_backend_utils_adt_format_type.c +136 -0
  422. data/ext/pg_query/src_backend_utils_adt_ruleutils.c +1683 -0
  423. data/ext/pg_query/src_backend_utils_error_assert.c +74 -0
  424. data/ext/pg_query/src_backend_utils_error_elog.c +1748 -0
  425. data/ext/pg_query/src_backend_utils_fmgr_fmgr.c +570 -0
  426. data/ext/pg_query/src_backend_utils_hash_dynahash.c +1086 -0
  427. data/ext/pg_query/src_backend_utils_init_globals.c +168 -0
  428. data/ext/pg_query/src_backend_utils_mb_mbutils.c +839 -0
  429. data/ext/pg_query/src_backend_utils_misc_guc.c +1831 -0
  430. data/ext/pg_query/src_backend_utils_mmgr_aset.c +1560 -0
  431. data/ext/pg_query/src_backend_utils_mmgr_mcxt.c +1006 -0
  432. data/ext/pg_query/src_common_encnames.c +158 -0
  433. data/ext/pg_query/src_common_keywords.c +39 -0
  434. data/ext/pg_query/src_common_kwlist_d.h +1081 -0
  435. data/ext/pg_query/src_common_kwlookup.c +91 -0
  436. data/ext/pg_query/src_common_psprintf.c +158 -0
  437. data/ext/pg_query/src_common_string.c +86 -0
  438. data/ext/pg_query/src_common_stringinfo.c +336 -0
  439. data/ext/pg_query/src_common_wchar.c +1651 -0
  440. data/ext/pg_query/src_pl_plpgsql_src_pl_comp.c +1133 -0
  441. data/ext/pg_query/src_pl_plpgsql_src_pl_funcs.c +877 -0
  442. data/ext/pg_query/src_pl_plpgsql_src_pl_gram.c +6533 -0
  443. data/ext/pg_query/src_pl_plpgsql_src_pl_handler.c +107 -0
  444. data/ext/pg_query/src_pl_plpgsql_src_pl_reserved_kwlist_d.h +123 -0
  445. data/ext/pg_query/src_pl_plpgsql_src_pl_scanner.c +671 -0
  446. data/ext/pg_query/src_pl_plpgsql_src_pl_unreserved_kwlist_d.h +255 -0
  447. data/ext/pg_query/src_port_erand48.c +127 -0
  448. data/ext/pg_query/src_port_pg_bitutils.c +246 -0
  449. data/ext/pg_query/src_port_pgsleep.c +69 -0
  450. data/ext/pg_query/src_port_pgstrcasecmp.c +83 -0
  451. data/ext/pg_query/src_port_qsort.c +240 -0
  452. data/ext/pg_query/src_port_random.c +31 -0
  453. data/ext/pg_query/src_port_snprintf.c +1449 -0
  454. data/ext/pg_query/src_port_strerror.c +324 -0
  455. data/ext/pg_query/src_port_strnlen.c +39 -0
  456. data/ext/pg_query/xxhash.c +43 -0
  457. data/lib/pg_query.rb +7 -4
  458. data/lib/pg_query/constants.rb +21 -0
  459. data/lib/pg_query/deparse.rb +15 -1581
  460. data/lib/pg_query/filter_columns.rb +88 -85
  461. data/lib/pg_query/fingerprint.rb +122 -87
  462. data/lib/pg_query/json_field_names.rb +1402 -0
  463. data/lib/pg_query/node.rb +31 -0
  464. data/lib/pg_query/param_refs.rb +42 -37
  465. data/lib/pg_query/parse.rb +220 -203
  466. data/lib/pg_query/parse_error.rb +1 -1
  467. data/lib/pg_query/pg_query_pb.rb +3211 -0
  468. data/lib/pg_query/scan.rb +23 -0
  469. data/lib/pg_query/treewalker.rb +24 -40
  470. data/lib/pg_query/truncate.rb +71 -42
  471. data/lib/pg_query/version.rb +2 -2
  472. metadata +472 -11
  473. data/ext/pg_query/pg_query_ruby.h +0 -10
  474. data/lib/pg_query/deep_dup.rb +0 -16
  475. data/lib/pg_query/deparse/alter_table.rb +0 -42
  476. data/lib/pg_query/deparse/interval.rb +0 -105
  477. data/lib/pg_query/deparse/keywords.rb +0 -159
  478. data/lib/pg_query/deparse/rename.rb +0 -41
  479. data/lib/pg_query/legacy_parsetree.rb +0 -109
  480. data/lib/pg_query/node_types.rb +0 -296
@@ -0,0 +1,348 @@
1
+ /*-------------------------------------------------------------------------
2
+ *
3
+ * funcapi.h
4
+ * Definitions for functions which return composite type and/or sets
5
+ * or work on VARIADIC inputs.
6
+ *
7
+ * This file must be included by all Postgres modules that either define
8
+ * or call FUNCAPI-callable functions or macros.
9
+ *
10
+ *
11
+ * Copyright (c) 2002-2020, PostgreSQL Global Development Group
12
+ *
13
+ * src/include/funcapi.h
14
+ *
15
+ *-------------------------------------------------------------------------
16
+ */
17
+ #ifndef FUNCAPI_H
18
+ #define FUNCAPI_H
19
+
20
+ #include "access/tupdesc.h"
21
+ #include "executor/executor.h"
22
+ #include "executor/tuptable.h"
23
+ #include "fmgr.h"
24
+
25
+ /*-------------------------------------------------------------------------
26
+ * Support to ease writing Functions returning composite types
27
+ *-------------------------------------------------------------------------
28
+ *
29
+ * This struct holds arrays of individual attribute information
30
+ * needed to create a tuple from raw C strings. It also requires
31
+ * a copy of the TupleDesc. The information carried here
32
+ * is derived from the TupleDesc, but it is stored here to
33
+ * avoid redundant cpu cycles on each call to an SRF.
34
+ */
35
+ typedef struct AttInMetadata
36
+ {
37
+ /* full TupleDesc */
38
+ TupleDesc tupdesc;
39
+
40
+ /* array of attribute type input function finfo */
41
+ FmgrInfo *attinfuncs;
42
+
43
+ /* array of attribute type i/o parameter OIDs */
44
+ Oid *attioparams;
45
+
46
+ /* array of attribute typmod */
47
+ int32 *atttypmods;
48
+ } AttInMetadata;
49
+
50
+ /*-------------------------------------------------------------------------
51
+ * Support struct to ease writing Set Returning Functions (SRFs)
52
+ *-------------------------------------------------------------------------
53
+ *
54
+ * This struct holds function context for Set Returning Functions.
55
+ * Use fn_extra to hold a pointer to it across calls
56
+ */
57
+ typedef struct FuncCallContext
58
+ {
59
+ /*
60
+ * Number of times we've been called before
61
+ *
62
+ * call_cntr is initialized to 0 for you by SRF_FIRSTCALL_INIT(), and
63
+ * incremented for you every time SRF_RETURN_NEXT() is called.
64
+ */
65
+ uint64 call_cntr;
66
+
67
+ /*
68
+ * OPTIONAL maximum number of calls
69
+ *
70
+ * max_calls is here for convenience only and setting it is optional. If
71
+ * not set, you must provide alternative means to know when the function
72
+ * is done.
73
+ */
74
+ uint64 max_calls;
75
+
76
+ /*
77
+ * OPTIONAL pointer to miscellaneous user-provided context information
78
+ *
79
+ * user_fctx is for use as a pointer to your own struct to retain
80
+ * arbitrary context information between calls of your function.
81
+ */
82
+ void *user_fctx;
83
+
84
+ /*
85
+ * OPTIONAL pointer to struct containing attribute type input metadata
86
+ *
87
+ * attinmeta is for use when returning tuples (i.e. composite data types)
88
+ * and is not used when returning base data types. It is only needed if
89
+ * you intend to use BuildTupleFromCStrings() to create the return tuple.
90
+ */
91
+ AttInMetadata *attinmeta;
92
+
93
+ /*
94
+ * memory context used for structures that must live for multiple calls
95
+ *
96
+ * multi_call_memory_ctx is set by SRF_FIRSTCALL_INIT() for you, and used
97
+ * by SRF_RETURN_DONE() for cleanup. It is the most appropriate memory
98
+ * context for any memory that is to be reused across multiple calls of
99
+ * the SRF.
100
+ */
101
+ MemoryContext multi_call_memory_ctx;
102
+
103
+ /*
104
+ * OPTIONAL pointer to struct containing tuple description
105
+ *
106
+ * tuple_desc is for use when returning tuples (i.e. composite data types)
107
+ * and is only needed if you are going to build the tuples with
108
+ * heap_form_tuple() rather than with BuildTupleFromCStrings(). Note that
109
+ * the TupleDesc pointer stored here should usually have been run through
110
+ * BlessTupleDesc() first.
111
+ */
112
+ TupleDesc tuple_desc;
113
+
114
+ } FuncCallContext;
115
+
116
+ /*----------
117
+ * Support to ease writing functions returning composite types
118
+ *
119
+ * External declarations:
120
+ * get_call_result_type:
121
+ * Given a function's call info record, determine the kind of datatype
122
+ * it is supposed to return. If resultTypeId isn't NULL, *resultTypeId
123
+ * receives the actual datatype OID (this is mainly useful for scalar
124
+ * result types). If resultTupleDesc isn't NULL, *resultTupleDesc
125
+ * receives a pointer to a TupleDesc when the result is of a composite
126
+ * type, or NULL when it's a scalar result or the rowtype could not be
127
+ * determined. NB: the tupledesc should be copied if it is to be
128
+ * accessed over a long period.
129
+ * get_expr_result_type:
130
+ * Given an expression node, return the same info as for
131
+ * get_call_result_type. Note: the cases in which rowtypes cannot be
132
+ * determined are different from the cases for get_call_result_type.
133
+ * get_func_result_type:
134
+ * Given only a function's OID, return the same info as for
135
+ * get_call_result_type. Note: the cases in which rowtypes cannot be
136
+ * determined are different from the cases for get_call_result_type.
137
+ * Do *not* use this if you can use one of the others.
138
+ *
139
+ * See also get_expr_result_tupdesc(), which is a convenient wrapper around
140
+ * get_expr_result_type() for use when the caller only cares about
141
+ * determinable-rowtype cases.
142
+ *----------
143
+ */
144
+
145
+ /* Type categories for get_call_result_type and siblings */
146
+ typedef enum TypeFuncClass
147
+ {
148
+ TYPEFUNC_SCALAR, /* scalar result type */
149
+ TYPEFUNC_COMPOSITE, /* determinable rowtype result */
150
+ TYPEFUNC_COMPOSITE_DOMAIN, /* domain over determinable rowtype result */
151
+ TYPEFUNC_RECORD, /* indeterminate rowtype result */
152
+ TYPEFUNC_OTHER /* bogus type, eg pseudotype */
153
+ } TypeFuncClass;
154
+
155
+ extern TypeFuncClass get_call_result_type(FunctionCallInfo fcinfo,
156
+ Oid *resultTypeId,
157
+ TupleDesc *resultTupleDesc);
158
+ extern TypeFuncClass get_expr_result_type(Node *expr,
159
+ Oid *resultTypeId,
160
+ TupleDesc *resultTupleDesc);
161
+ extern TypeFuncClass get_func_result_type(Oid functionId,
162
+ Oid *resultTypeId,
163
+ TupleDesc *resultTupleDesc);
164
+
165
+ extern TupleDesc get_expr_result_tupdesc(Node *expr, bool noError);
166
+
167
+ extern bool resolve_polymorphic_argtypes(int numargs, Oid *argtypes,
168
+ char *argmodes,
169
+ Node *call_expr);
170
+
171
+ extern int get_func_arg_info(HeapTuple procTup,
172
+ Oid **p_argtypes, char ***p_argnames,
173
+ char **p_argmodes);
174
+
175
+ extern int get_func_input_arg_names(Datum proargnames, Datum proargmodes,
176
+ char ***arg_names);
177
+
178
+ extern int get_func_trftypes(HeapTuple procTup, Oid **p_trftypes);
179
+ extern char *get_func_result_name(Oid functionId);
180
+
181
+ extern TupleDesc build_function_result_tupdesc_d(char prokind,
182
+ Datum proallargtypes,
183
+ Datum proargmodes,
184
+ Datum proargnames);
185
+ extern TupleDesc build_function_result_tupdesc_t(HeapTuple procTuple);
186
+
187
+
188
+ /*----------
189
+ * Support to ease writing functions returning composite types
190
+ *
191
+ * External declarations:
192
+ * TupleDesc BlessTupleDesc(TupleDesc tupdesc) - "Bless" a completed tuple
193
+ * descriptor so that it can be used to return properly labeled tuples.
194
+ * You need to call this if you are going to use heap_form_tuple directly.
195
+ * TupleDescGetAttInMetadata does it for you, however, so no need to call
196
+ * it if you call TupleDescGetAttInMetadata.
197
+ * AttInMetadata *TupleDescGetAttInMetadata(TupleDesc tupdesc) - Build an
198
+ * AttInMetadata struct based on the given TupleDesc. AttInMetadata can
199
+ * be used in conjunction with C strings to produce a properly formed
200
+ * tuple.
201
+ * HeapTuple BuildTupleFromCStrings(AttInMetadata *attinmeta, char **values) -
202
+ * build a HeapTuple given user data in C string form. values is an array
203
+ * of C strings, one for each attribute of the return tuple.
204
+ * Datum HeapTupleHeaderGetDatum(HeapTupleHeader tuple) - convert a
205
+ * HeapTupleHeader to a Datum.
206
+ *
207
+ * Macro declarations:
208
+ * HeapTupleGetDatum(HeapTuple tuple) - convert a HeapTuple to a Datum.
209
+ *
210
+ * Obsolete routines and macros:
211
+ * TupleDesc RelationNameGetTupleDesc(const char *relname) - Use to get a
212
+ * TupleDesc based on a named relation.
213
+ * TupleDesc TypeGetTupleDesc(Oid typeoid, List *colaliases) - Use to get a
214
+ * TupleDesc based on a type OID.
215
+ * TupleGetDatum(TupleTableSlot *slot, HeapTuple tuple) - get a Datum
216
+ * given a tuple and a slot.
217
+ *----------
218
+ */
219
+
220
+ #define HeapTupleGetDatum(tuple) HeapTupleHeaderGetDatum((tuple)->t_data)
221
+ /* obsolete version of above */
222
+ #define TupleGetDatum(_slot, _tuple) HeapTupleGetDatum(_tuple)
223
+
224
+ extern TupleDesc RelationNameGetTupleDesc(const char *relname);
225
+ extern TupleDesc TypeGetTupleDesc(Oid typeoid, List *colaliases);
226
+
227
+ /* from execTuples.c */
228
+ extern TupleDesc BlessTupleDesc(TupleDesc tupdesc);
229
+ extern AttInMetadata *TupleDescGetAttInMetadata(TupleDesc tupdesc);
230
+ extern HeapTuple BuildTupleFromCStrings(AttInMetadata *attinmeta, char **values);
231
+ extern Datum HeapTupleHeaderGetDatum(HeapTupleHeader tuple);
232
+
233
+
234
+ /*----------
235
+ * Support for Set Returning Functions (SRFs)
236
+ *
237
+ * The basic API for SRFs using ValuePerCall mode looks something like this:
238
+ *
239
+ * Datum
240
+ * my_Set_Returning_Function(PG_FUNCTION_ARGS)
241
+ * {
242
+ * FuncCallContext *funcctx;
243
+ * Datum result;
244
+ * MemoryContext oldcontext;
245
+ * <user defined declarations>
246
+ *
247
+ * if (SRF_IS_FIRSTCALL())
248
+ * {
249
+ * funcctx = SRF_FIRSTCALL_INIT();
250
+ * // switch context when allocating stuff to be used in later calls
251
+ * oldcontext = MemoryContextSwitchTo(funcctx->multi_call_memory_ctx);
252
+ * <user defined code>
253
+ * <if returning composite>
254
+ * <build TupleDesc, and perhaps AttInMetadata>
255
+ * <endif returning composite>
256
+ * <user defined code>
257
+ * // return to original context when allocating transient memory
258
+ * MemoryContextSwitchTo(oldcontext);
259
+ * }
260
+ * <user defined code>
261
+ * funcctx = SRF_PERCALL_SETUP();
262
+ * <user defined code>
263
+ *
264
+ * if (funcctx->call_cntr < funcctx->max_calls)
265
+ * {
266
+ * <user defined code>
267
+ * <obtain result Datum>
268
+ * SRF_RETURN_NEXT(funcctx, result);
269
+ * }
270
+ * else
271
+ * SRF_RETURN_DONE(funcctx);
272
+ * }
273
+ *
274
+ * NOTE: there is no guarantee that a SRF using ValuePerCall mode will be
275
+ * run to completion; for example, a query with LIMIT might stop short of
276
+ * fetching all the rows. Therefore, do not expect that you can do resource
277
+ * cleanup just before SRF_RETURN_DONE(). You need not worry about releasing
278
+ * memory allocated in multi_call_memory_ctx, but holding file descriptors or
279
+ * other non-memory resources open across calls is a bug. SRFs that need
280
+ * such resources should not use these macros, but instead populate a
281
+ * tuplestore during a single call, and return that using SFRM_Materialize
282
+ * mode (see fmgr/README). Alternatively, set up a callback to release
283
+ * resources at query shutdown, using RegisterExprContextCallback().
284
+ *
285
+ *----------
286
+ */
287
+
288
+ /* from funcapi.c */
289
+ extern FuncCallContext *init_MultiFuncCall(PG_FUNCTION_ARGS);
290
+ extern FuncCallContext *per_MultiFuncCall(PG_FUNCTION_ARGS);
291
+ extern void end_MultiFuncCall(PG_FUNCTION_ARGS, FuncCallContext *funcctx);
292
+
293
+ #define SRF_IS_FIRSTCALL() (fcinfo->flinfo->fn_extra == NULL)
294
+
295
+ #define SRF_FIRSTCALL_INIT() init_MultiFuncCall(fcinfo)
296
+
297
+ #define SRF_PERCALL_SETUP() per_MultiFuncCall(fcinfo)
298
+
299
+ #define SRF_RETURN_NEXT(_funcctx, _result) \
300
+ do { \
301
+ ReturnSetInfo *rsi; \
302
+ (_funcctx)->call_cntr++; \
303
+ rsi = (ReturnSetInfo *) fcinfo->resultinfo; \
304
+ rsi->isDone = ExprMultipleResult; \
305
+ PG_RETURN_DATUM(_result); \
306
+ } while (0)
307
+
308
+ #define SRF_RETURN_NEXT_NULL(_funcctx) \
309
+ do { \
310
+ ReturnSetInfo *rsi; \
311
+ (_funcctx)->call_cntr++; \
312
+ rsi = (ReturnSetInfo *) fcinfo->resultinfo; \
313
+ rsi->isDone = ExprMultipleResult; \
314
+ PG_RETURN_NULL(); \
315
+ } while (0)
316
+
317
+ #define SRF_RETURN_DONE(_funcctx) \
318
+ do { \
319
+ ReturnSetInfo *rsi; \
320
+ end_MultiFuncCall(fcinfo, _funcctx); \
321
+ rsi = (ReturnSetInfo *) fcinfo->resultinfo; \
322
+ rsi->isDone = ExprEndResult; \
323
+ PG_RETURN_NULL(); \
324
+ } while (0)
325
+
326
+ /*----------
327
+ * Support to ease writing of functions dealing with VARIADIC inputs
328
+ *----------
329
+ *
330
+ * This function extracts a set of argument values, types and NULL markers
331
+ * for a given input function. This returns a set of data:
332
+ * - **values includes the set of Datum values extracted.
333
+ * - **types the data type OID for each element.
334
+ * - **nulls tracks if an element is NULL.
335
+ *
336
+ * variadic_start indicates the argument number where the VARIADIC argument
337
+ * starts.
338
+ * convert_unknown set to true will enforce the conversion of arguments
339
+ * with unknown data type to text.
340
+ *
341
+ * The return result is the number of elements stored, or -1 in the case of
342
+ * "VARIADIC NULL".
343
+ */
344
+ extern int extract_variadic_args(FunctionCallInfo fcinfo, int variadic_start,
345
+ bool convert_unknown, Datum **values,
346
+ Oid **types, bool **nulls);
347
+
348
+ #endif /* FUNCAPI_H */
@@ -0,0 +1,162 @@
1
+ /*-------------------------------------------------------------------------
2
+ *
3
+ * getaddrinfo.h
4
+ * Support getaddrinfo() on platforms that don't have it.
5
+ *
6
+ * Note: we use our own routines on platforms that don't HAVE_STRUCT_ADDRINFO,
7
+ * whether or not the library routine getaddrinfo() can be found. This
8
+ * policy is needed because on some platforms a manually installed libbind.a
9
+ * may provide getaddrinfo(), yet the system headers may not provide the
10
+ * struct definitions needed to call it. To avoid conflict with the libbind
11
+ * definition in such cases, we rename our routines to pg_xxx() via macros.
12
+ *
13
+ * This code will also work on platforms where struct addrinfo is defined
14
+ * in the system headers but no getaddrinfo() can be located.
15
+ *
16
+ * Copyright (c) 2003-2020, PostgreSQL Global Development Group
17
+ *
18
+ * src/include/getaddrinfo.h
19
+ *
20
+ *-------------------------------------------------------------------------
21
+ */
22
+ #ifndef GETADDRINFO_H
23
+ #define GETADDRINFO_H
24
+
25
+ #include <sys/socket.h>
26
+ #include <netdb.h>
27
+
28
+
29
+ /* Various macros that ought to be in <netdb.h>, but might not be */
30
+
31
+ #ifndef EAI_FAIL
32
+ #ifndef WIN32
33
+ #define EAI_BADFLAGS (-1)
34
+ #define EAI_NONAME (-2)
35
+ #define EAI_AGAIN (-3)
36
+ #define EAI_FAIL (-4)
37
+ #define EAI_FAMILY (-6)
38
+ #define EAI_SOCKTYPE (-7)
39
+ #define EAI_SERVICE (-8)
40
+ #define EAI_MEMORY (-10)
41
+ #define EAI_SYSTEM (-11)
42
+ #else /* WIN32 */
43
+ #ifdef _MSC_VER
44
+ #ifndef WSA_NOT_ENOUGH_MEMORY
45
+ #define WSA_NOT_ENOUGH_MEMORY (WSAENOBUFS)
46
+ #endif
47
+ #define WSATYPE_NOT_FOUND (WSABASEERR+109)
48
+ #endif
49
+ #define EAI_AGAIN WSATRY_AGAIN
50
+ #define EAI_BADFLAGS WSAEINVAL
51
+ #define EAI_FAIL WSANO_RECOVERY
52
+ #define EAI_FAMILY WSAEAFNOSUPPORT
53
+ #define EAI_MEMORY WSA_NOT_ENOUGH_MEMORY
54
+ #define EAI_NODATA WSANO_DATA
55
+ #define EAI_NONAME WSAHOST_NOT_FOUND
56
+ #define EAI_SERVICE WSATYPE_NOT_FOUND
57
+ #define EAI_SOCKTYPE WSAESOCKTNOSUPPORT
58
+ #endif /* !WIN32 */
59
+ #endif /* !EAI_FAIL */
60
+
61
+ #ifndef AI_PASSIVE
62
+ #define AI_PASSIVE 0x0001
63
+ #endif
64
+
65
+ #ifndef AI_NUMERICHOST
66
+ /*
67
+ * some platforms don't support AI_NUMERICHOST; define as zero if using
68
+ * the system version of getaddrinfo...
69
+ */
70
+ #if defined(HAVE_STRUCT_ADDRINFO) && defined(HAVE_GETADDRINFO)
71
+ #define AI_NUMERICHOST 0
72
+ #else
73
+ #define AI_NUMERICHOST 0x0004
74
+ #endif
75
+ #endif
76
+
77
+ #ifndef NI_NUMERICHOST
78
+ #define NI_NUMERICHOST 1
79
+ #endif
80
+ #ifndef NI_NUMERICSERV
81
+ #define NI_NUMERICSERV 2
82
+ #endif
83
+ #ifndef NI_NAMEREQD
84
+ #define NI_NAMEREQD 4
85
+ #endif
86
+
87
+ #ifndef NI_MAXHOST
88
+ #define NI_MAXHOST 1025
89
+ #endif
90
+ #ifndef NI_MAXSERV
91
+ #define NI_MAXSERV 32
92
+ #endif
93
+
94
+
95
+ #ifndef HAVE_STRUCT_ADDRINFO
96
+
97
+ #ifndef WIN32
98
+ struct addrinfo
99
+ {
100
+ int ai_flags;
101
+ int ai_family;
102
+ int ai_socktype;
103
+ int ai_protocol;
104
+ size_t ai_addrlen;
105
+ struct sockaddr *ai_addr;
106
+ char *ai_canonname;
107
+ struct addrinfo *ai_next;
108
+ };
109
+ #else
110
+ /*
111
+ * The order of the structure elements on Win32 doesn't match the
112
+ * order specified in the standard, but we have to match it for
113
+ * IPv6 to work.
114
+ */
115
+ struct addrinfo
116
+ {
117
+ int ai_flags;
118
+ int ai_family;
119
+ int ai_socktype;
120
+ int ai_protocol;
121
+ size_t ai_addrlen;
122
+ char *ai_canonname;
123
+ struct sockaddr *ai_addr;
124
+ struct addrinfo *ai_next;
125
+ };
126
+ #endif
127
+ #endif /* HAVE_STRUCT_ADDRINFO */
128
+
129
+
130
+ #ifndef HAVE_GETADDRINFO
131
+
132
+ /* Rename private copies per comments above */
133
+ #ifdef getaddrinfo
134
+ #undef getaddrinfo
135
+ #endif
136
+ #define getaddrinfo pg_getaddrinfo
137
+
138
+ #ifdef freeaddrinfo
139
+ #undef freeaddrinfo
140
+ #endif
141
+ #define freeaddrinfo pg_freeaddrinfo
142
+
143
+ #ifdef gai_strerror
144
+ #undef gai_strerror
145
+ #endif
146
+ #define gai_strerror pg_gai_strerror
147
+
148
+ #ifdef getnameinfo
149
+ #undef getnameinfo
150
+ #endif
151
+ #define getnameinfo pg_getnameinfo
152
+
153
+ extern int getaddrinfo(const char *node, const char *service,
154
+ const struct addrinfo *hints, struct addrinfo **res);
155
+ extern void freeaddrinfo(struct addrinfo *res);
156
+ extern const char *gai_strerror(int errcode);
157
+ extern int getnameinfo(const struct sockaddr *sa, int salen,
158
+ char *node, int nodelen,
159
+ char *service, int servicelen, int flags);
160
+ #endif /* HAVE_GETADDRINFO */
161
+
162
+ #endif /* GETADDRINFO_H */