pg_query 5.0.0 → 6.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (898) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +27 -0
  3. data/README.md +1 -1
  4. data/Rakefile +3 -4
  5. data/ext/pg_query/extconf.rb +14 -4
  6. data/ext/pg_query/include/pg_query.h +4 -3
  7. data/ext/pg_query/include/pg_query_enum_defs.c +424 -154
  8. data/ext/pg_query/include/pg_query_fingerprint_conds.c +68 -4
  9. data/ext/pg_query/include/pg_query_fingerprint_defs.c +2901 -1794
  10. data/ext/pg_query/include/pg_query_outfuncs_conds.c +51 -3
  11. data/ext/pg_query/include/pg_query_outfuncs_defs.c +211 -24
  12. data/ext/pg_query/include/pg_query_readfuncs_conds.c +17 -1
  13. data/ext/pg_query/include/pg_query_readfuncs_defs.c +272 -53
  14. data/ext/pg_query/include/postgres/access/amapi.h +299 -0
  15. data/ext/pg_query/include/postgres/access/attmap.h +54 -0
  16. data/ext/pg_query/include/postgres/access/attnum.h +64 -0
  17. data/ext/pg_query/include/postgres/access/brin_internal.h +116 -0
  18. data/ext/pg_query/include/postgres/access/brin_tuple.h +112 -0
  19. data/ext/pg_query/include/postgres/access/clog.h +62 -0
  20. data/ext/pg_query/include/postgres/access/commit_ts.h +73 -0
  21. data/ext/pg_query/include/postgres/access/detoast.h +82 -0
  22. data/ext/pg_query/include/postgres/access/genam.h +237 -0
  23. data/ext/pg_query/include/postgres/access/gin.h +91 -0
  24. data/ext/pg_query/include/postgres/access/htup.h +89 -0
  25. data/ext/pg_query/include/postgres/access/htup_details.h +811 -0
  26. data/ext/pg_query/include/postgres/access/itup.h +170 -0
  27. data/ext/pg_query/include/postgres/access/parallel.h +81 -0
  28. data/ext/pg_query/include/postgres/access/printtup.h +35 -0
  29. data/ext/pg_query/include/postgres/access/relation.h +28 -0
  30. data/ext/pg_query/include/postgres/access/relscan.h +191 -0
  31. data/ext/pg_query/include/postgres/access/rmgrlist.h +49 -0
  32. data/ext/pg_query/include/postgres/access/sdir.h +67 -0
  33. data/ext/pg_query/include/postgres/access/skey.h +151 -0
  34. data/ext/pg_query/include/postgres/access/slru.h +221 -0
  35. data/ext/pg_query/include/postgres/access/stratnum.h +85 -0
  36. data/ext/pg_query/include/postgres/access/sysattr.h +29 -0
  37. data/ext/pg_query/include/postgres/access/table.h +28 -0
  38. data/ext/pg_query/include/postgres/access/tableam.h +2109 -0
  39. data/ext/pg_query/include/postgres/access/tidstore.h +50 -0
  40. data/ext/pg_query/include/postgres/access/toast_compression.h +73 -0
  41. data/ext/pg_query/include/postgres/access/transam.h +375 -0
  42. data/ext/pg_query/include/postgres/access/tsmapi.h +82 -0
  43. data/ext/pg_query/include/postgres/access/tupconvert.h +54 -0
  44. data/ext/pg_query/include/postgres/access/tupdesc.h +154 -0
  45. data/ext/pg_query/include/postgres/access/tupmacs.h +207 -0
  46. data/ext/pg_query/include/postgres/access/twophase.h +65 -0
  47. data/ext/pg_query/include/postgres/access/xact.h +530 -0
  48. data/ext/pg_query/include/postgres/access/xlog.h +310 -0
  49. data/ext/pg_query/include/postgres/access/xlog_internal.h +405 -0
  50. data/ext/pg_query/include/postgres/access/xlogbackup.h +43 -0
  51. data/ext/pg_query/include/postgres/access/xlogdefs.h +82 -0
  52. data/ext/pg_query/include/postgres/access/xlogprefetcher.h +55 -0
  53. data/ext/pg_query/include/postgres/access/xlogreader.h +444 -0
  54. data/ext/pg_query/include/postgres/access/xlogrecord.h +248 -0
  55. data/ext/pg_query/include/postgres/access/xlogrecovery.h +158 -0
  56. data/ext/pg_query/include/postgres/archive/archive_module.h +67 -0
  57. data/ext/pg_query/include/postgres/c.h +1374 -0
  58. data/ext/pg_query/include/postgres/catalog/catalog.h +47 -0
  59. data/ext/pg_query/include/postgres/catalog/catversion.h +62 -0
  60. data/ext/pg_query/include/postgres/catalog/dependency.h +228 -0
  61. data/ext/pg_query/include/postgres/catalog/genbki.h +149 -0
  62. data/ext/pg_query/include/postgres/catalog/index.h +218 -0
  63. data/ext/pg_query/include/postgres/catalog/indexing.h +54 -0
  64. data/ext/pg_query/include/postgres/catalog/namespace.h +189 -0
  65. data/ext/pg_query/include/postgres/catalog/objectaccess.h +267 -0
  66. data/ext/pg_query/include/postgres/catalog/objectaddress.h +89 -0
  67. data/ext/pg_query/include/postgres/catalog/pg_aggregate.h +182 -0
  68. data/ext/pg_query/include/postgres/catalog/pg_aggregate_d.h +78 -0
  69. data/ext/pg_query/include/postgres/catalog/pg_am.h +66 -0
  70. data/ext/pg_query/include/postgres/catalog/pg_am_d.h +47 -0
  71. data/ext/pg_query/include/postgres/catalog/pg_attribute.h +240 -0
  72. data/ext/pg_query/include/postgres/catalog/pg_attribute_d.h +62 -0
  73. data/ext/pg_query/include/postgres/catalog/pg_authid.h +66 -0
  74. data/ext/pg_query/include/postgres/catalog/pg_authid_d.h +60 -0
  75. data/ext/pg_query/include/postgres/catalog/pg_class.h +235 -0
  76. data/ext/pg_query/include/postgres/catalog/pg_class_d.h +134 -0
  77. data/ext/pg_query/include/postgres/catalog/pg_collation.h +106 -0
  78. data/ext/pg_query/include/postgres/catalog/pg_collation_d.h +66 -0
  79. data/ext/pg_query/include/postgres/catalog/pg_constraint.h +278 -0
  80. data/ext/pg_query/include/postgres/catalog/pg_constraint_d.h +74 -0
  81. data/ext/pg_query/include/postgres/catalog/pg_control.h +260 -0
  82. data/ext/pg_query/include/postgres/catalog/pg_conversion.h +79 -0
  83. data/ext/pg_query/include/postgres/catalog/pg_conversion_d.h +38 -0
  84. data/ext/pg_query/include/postgres/catalog/pg_database.h +129 -0
  85. data/ext/pg_query/include/postgres/catalog/pg_database_d.h +53 -0
  86. data/ext/pg_query/include/postgres/catalog/pg_depend.h +77 -0
  87. data/ext/pg_query/include/postgres/catalog/pg_depend_d.h +36 -0
  88. data/ext/pg_query/include/postgres/catalog/pg_event_trigger.h +60 -0
  89. data/ext/pg_query/include/postgres/catalog/pg_event_trigger_d.h +36 -0
  90. data/ext/pg_query/include/postgres/catalog/pg_index.h +92 -0
  91. data/ext/pg_query/include/postgres/catalog/pg_index_d.h +59 -0
  92. data/ext/pg_query/include/postgres/catalog/pg_language.h +75 -0
  93. data/ext/pg_query/include/postgres/catalog/pg_language_d.h +41 -0
  94. data/ext/pg_query/include/postgres/catalog/pg_namespace.h +67 -0
  95. data/ext/pg_query/include/postgres/catalog/pg_namespace_d.h +36 -0
  96. data/ext/pg_query/include/postgres/catalog/pg_opclass.h +91 -0
  97. data/ext/pg_query/include/postgres/catalog/pg_opclass_d.h +51 -0
  98. data/ext/pg_query/include/postgres/catalog/pg_operator.h +124 -0
  99. data/ext/pg_query/include/postgres/catalog/pg_operator_d.h +142 -0
  100. data/ext/pg_query/include/postgres/catalog/pg_opfamily.h +67 -0
  101. data/ext/pg_query/include/postgres/catalog/pg_opfamily_d.h +51 -0
  102. data/ext/pg_query/include/postgres/catalog/pg_partitioned_table.h +76 -0
  103. data/ext/pg_query/include/postgres/catalog/pg_partitioned_table_d.h +36 -0
  104. data/ext/pg_query/include/postgres/catalog/pg_proc.h +223 -0
  105. data/ext/pg_query/include/postgres/catalog/pg_proc_d.h +101 -0
  106. data/ext/pg_query/include/postgres/catalog/pg_publication.h +161 -0
  107. data/ext/pg_query/include/postgres/catalog/pg_publication_d.h +38 -0
  108. data/ext/pg_query/include/postgres/catalog/pg_replication_origin.h +65 -0
  109. data/ext/pg_query/include/postgres/catalog/pg_replication_origin_d.h +33 -0
  110. data/ext/pg_query/include/postgres/catalog/pg_statistic.h +288 -0
  111. data/ext/pg_query/include/postgres/catalog/pg_statistic_d.h +199 -0
  112. data/ext/pg_query/include/postgres/catalog/pg_statistic_ext.h +91 -0
  113. data/ext/pg_query/include/postgres/catalog/pg_statistic_ext_d.h +45 -0
  114. data/ext/pg_query/include/postgres/catalog/pg_transform.h +51 -0
  115. data/ext/pg_query/include/postgres/catalog/pg_transform_d.h +34 -0
  116. data/ext/pg_query/include/postgres/catalog/pg_trigger.h +153 -0
  117. data/ext/pg_query/include/postgres/catalog/pg_trigger_d.h +109 -0
  118. data/ext/pg_query/include/postgres/catalog/pg_ts_config.h +56 -0
  119. data/ext/pg_query/include/postgres/catalog/pg_ts_config_d.h +34 -0
  120. data/ext/pg_query/include/postgres/catalog/pg_ts_dict.h +62 -0
  121. data/ext/pg_query/include/postgres/catalog/pg_ts_dict_d.h +35 -0
  122. data/ext/pg_query/include/postgres/catalog/pg_ts_parser.h +63 -0
  123. data/ext/pg_query/include/postgres/catalog/pg_ts_parser_d.h +37 -0
  124. data/ext/pg_query/include/postgres/catalog/pg_ts_template.h +54 -0
  125. data/ext/pg_query/include/postgres/catalog/pg_ts_template_d.h +34 -0
  126. data/ext/pg_query/include/postgres/catalog/pg_type.h +407 -0
  127. data/ext/pg_query/include/postgres/catalog/pg_type_d.h +324 -0
  128. data/ext/pg_query/include/postgres/catalog/storage.h +50 -0
  129. data/ext/pg_query/include/postgres/catalog/syscache_ids.h +104 -0
  130. data/ext/pg_query/include/postgres/commands/async.h +49 -0
  131. data/ext/pg_query/include/postgres/commands/dbcommands.h +37 -0
  132. data/ext/pg_query/include/postgres/commands/defrem.h +161 -0
  133. data/ext/pg_query/include/postgres/commands/event_trigger.h +91 -0
  134. data/ext/pg_query/include/postgres/commands/explain.h +145 -0
  135. data/ext/pg_query/include/postgres/commands/prepare.h +61 -0
  136. data/ext/pg_query/include/postgres/commands/tablespace.h +69 -0
  137. data/ext/pg_query/include/postgres/commands/trigger.h +288 -0
  138. data/ext/pg_query/include/postgres/commands/vacuum.h +388 -0
  139. data/ext/pg_query/include/postgres/common/cryptohash.h +39 -0
  140. data/ext/pg_query/include/postgres/common/file_perm.h +56 -0
  141. data/ext/pg_query/include/postgres/common/file_utils.h +65 -0
  142. data/ext/pg_query/include/postgres/common/hashfn.h +119 -0
  143. data/ext/pg_query/include/postgres/common/hashfn_unstable.h +453 -0
  144. data/ext/pg_query/include/postgres/common/int.h +512 -0
  145. data/ext/pg_query/include/postgres/common/keywords.h +29 -0
  146. data/ext/pg_query/include/postgres/common/kwlookup.h +44 -0
  147. data/ext/pg_query/include/postgres/common/pg_prng.h +62 -0
  148. data/ext/pg_query/include/postgres/common/relpath.h +97 -0
  149. data/ext/pg_query/include/postgres/common/scram-common.h +70 -0
  150. data/ext/pg_query/include/postgres/common/sha2.h +32 -0
  151. data/ext/pg_query/include/postgres/common/string.h +44 -0
  152. data/ext/pg_query/include/postgres/common/unicode_east_asian_fw_table.h +124 -0
  153. data/ext/pg_query/include/postgres/copyfuncs.funcs.c +5261 -0
  154. data/ext/pg_query/include/postgres/copyfuncs.switch.c +989 -0
  155. data/ext/pg_query/include/postgres/datatype/timestamp.h +269 -0
  156. data/ext/pg_query/include/postgres/equalfuncs.funcs.c +3310 -0
  157. data/ext/pg_query/include/postgres/equalfuncs.switch.c +836 -0
  158. data/ext/pg_query/include/postgres/executor/execdesc.h +70 -0
  159. data/ext/pg_query/include/postgres/executor/executor.h +681 -0
  160. data/ext/pg_query/include/postgres/executor/functions.h +56 -0
  161. data/ext/pg_query/include/postgres/executor/instrument.h +120 -0
  162. data/ext/pg_query/include/postgres/executor/spi.h +207 -0
  163. data/ext/pg_query/include/postgres/executor/tablefunc.h +67 -0
  164. data/ext/pg_query/include/postgres/executor/tuptable.h +523 -0
  165. data/ext/pg_query/include/postgres/fmgr.h +800 -0
  166. data/ext/pg_query/include/postgres/foreign/fdwapi.h +294 -0
  167. data/ext/pg_query/include/postgres/funcapi.h +360 -0
  168. data/ext/pg_query/include/postgres/gram.h +1168 -0
  169. data/ext/pg_query/include/postgres/gramparse.h +75 -0
  170. data/ext/pg_query/include/postgres/jit/jit.h +106 -0
  171. data/ext/pg_query/include/postgres/kwlist_d.h +1164 -0
  172. data/ext/pg_query/include/postgres/lib/dshash.h +130 -0
  173. data/ext/pg_query/include/postgres/lib/ilist.h +1159 -0
  174. data/ext/pg_query/include/postgres/lib/pairingheap.h +102 -0
  175. data/ext/pg_query/include/postgres/lib/simplehash.h +1206 -0
  176. data/ext/pg_query/include/postgres/lib/sort_template.h +445 -0
  177. data/ext/pg_query/include/postgres/lib/stringinfo.h +243 -0
  178. data/ext/pg_query/include/postgres/libpq/auth.h +37 -0
  179. data/ext/pg_query/include/postgres/libpq/crypt.h +47 -0
  180. data/ext/pg_query/include/postgres/libpq/hba.h +186 -0
  181. data/ext/pg_query/include/postgres/libpq/libpq-be.h +358 -0
  182. data/ext/pg_query/include/postgres/libpq/libpq.h +143 -0
  183. data/ext/pg_query/include/postgres/libpq/pqcomm.h +169 -0
  184. data/ext/pg_query/include/postgres/libpq/pqformat.h +209 -0
  185. data/ext/pg_query/include/postgres/libpq/pqsignal.h +54 -0
  186. data/ext/pg_query/include/postgres/libpq/protocol.h +89 -0
  187. data/ext/pg_query/include/postgres/libpq/sasl.h +136 -0
  188. data/ext/pg_query/include/postgres/libpq/scram.h +37 -0
  189. data/ext/pg_query/include/postgres/mb/pg_wchar.h +792 -0
  190. data/ext/pg_query/include/postgres/mb/stringinfo_mb.h +24 -0
  191. data/ext/pg_query/include/postgres/miscadmin.h +519 -0
  192. data/ext/pg_query/include/postgres/nodes/bitmapset.h +140 -0
  193. data/ext/pg_query/include/postgres/nodes/execnodes.h +2852 -0
  194. data/ext/pg_query/include/postgres/nodes/extensible.h +164 -0
  195. data/ext/pg_query/include/postgres/nodes/lockoptions.h +61 -0
  196. data/ext/pg_query/include/postgres/nodes/makefuncs.h +127 -0
  197. data/ext/pg_query/include/postgres/nodes/memnodes.h +152 -0
  198. data/ext/pg_query/include/postgres/nodes/miscnodes.h +56 -0
  199. data/ext/pg_query/include/postgres/nodes/nodeFuncs.h +222 -0
  200. data/ext/pg_query/include/postgres/nodes/nodes.h +435 -0
  201. data/ext/pg_query/include/postgres/nodes/nodetags.h +491 -0
  202. data/ext/pg_query/include/postgres/nodes/params.h +170 -0
  203. data/ext/pg_query/include/postgres/nodes/parsenodes.h +4233 -0
  204. data/ext/pg_query/include/postgres/nodes/pathnodes.h +3435 -0
  205. data/ext/pg_query/include/postgres/nodes/pg_list.h +686 -0
  206. data/ext/pg_query/include/postgres/nodes/plannodes.h +1593 -0
  207. data/ext/pg_query/include/postgres/nodes/primnodes.h +2335 -0
  208. data/ext/pg_query/include/postgres/nodes/print.h +34 -0
  209. data/ext/pg_query/include/postgres/nodes/queryjumble.h +86 -0
  210. data/ext/pg_query/include/postgres/nodes/replnodes.h +132 -0
  211. data/ext/pg_query/include/postgres/nodes/supportnodes.h +346 -0
  212. data/ext/pg_query/include/postgres/nodes/tidbitmap.h +75 -0
  213. data/ext/pg_query/include/postgres/nodes/value.h +90 -0
  214. data/ext/pg_query/include/postgres/optimizer/cost.h +216 -0
  215. data/ext/pg_query/include/postgres/optimizer/geqo.h +90 -0
  216. data/ext/pg_query/include/postgres/optimizer/geqo_gene.h +45 -0
  217. data/ext/pg_query/include/postgres/optimizer/optimizer.h +205 -0
  218. data/ext/pg_query/include/postgres/optimizer/paths.h +271 -0
  219. data/ext/pg_query/include/postgres/optimizer/planmain.h +123 -0
  220. data/ext/pg_query/include/postgres/parser/analyze.h +66 -0
  221. data/ext/pg_query/include/postgres/parser/kwlist.h +518 -0
  222. data/ext/pg_query/include/postgres/parser/parse_agg.h +65 -0
  223. data/ext/pg_query/include/postgres/parser/parse_coerce.h +102 -0
  224. data/ext/pg_query/include/postgres/parser/parse_expr.h +25 -0
  225. data/ext/pg_query/include/postgres/parser/parse_func.h +74 -0
  226. data/ext/pg_query/include/postgres/parser/parse_node.h +358 -0
  227. data/ext/pg_query/include/postgres/parser/parse_oper.h +68 -0
  228. data/ext/pg_query/include/postgres/parser/parse_relation.h +129 -0
  229. data/ext/pg_query/include/postgres/parser/parse_type.h +61 -0
  230. data/ext/pg_query/include/postgres/parser/parser.h +68 -0
  231. data/ext/pg_query/include/postgres/parser/parsetree.h +61 -0
  232. data/ext/pg_query/include/postgres/parser/scanner.h +152 -0
  233. data/ext/pg_query/include/postgres/parser/scansup.h +27 -0
  234. data/ext/pg_query/include/postgres/partitioning/partdefs.h +26 -0
  235. data/ext/pg_query/include/postgres/pg_config.h +977 -0
  236. data/ext/pg_query/include/postgres/pg_config_manual.h +385 -0
  237. data/ext/pg_query/include/postgres/pg_config_os.h +8 -0
  238. data/ext/pg_query/include/postgres/pg_getopt.h +56 -0
  239. data/ext/pg_query/include/postgres/pg_trace.h +17 -0
  240. data/ext/pg_query/include/postgres/pgstat.h +780 -0
  241. data/ext/pg_query/include/postgres/pgtime.h +94 -0
  242. data/ext/pg_query/include/postgres/pl_gram.h +385 -0
  243. data/ext/pg_query/include/postgres/pl_reserved_kwlist.h +52 -0
  244. data/ext/pg_query/include/postgres/pl_reserved_kwlist_d.h +114 -0
  245. data/ext/pg_query/include/postgres/pl_unreserved_kwlist.h +112 -0
  246. data/ext/pg_query/include/postgres/pl_unreserved_kwlist_d.h +246 -0
  247. data/ext/pg_query/include/postgres/plerrcodes.h +998 -0
  248. data/ext/pg_query/include/postgres/plpgsql.h +1342 -0
  249. data/ext/pg_query/include/postgres/port/atomics/arch-arm.h +32 -0
  250. data/ext/pg_query/include/postgres/port/atomics/arch-hppa.h +17 -0
  251. data/ext/pg_query/include/postgres/port/atomics/arch-ppc.h +256 -0
  252. data/ext/pg_query/include/postgres/port/atomics/arch-x86.h +254 -0
  253. data/ext/pg_query/include/postgres/port/atomics/fallback.h +170 -0
  254. data/ext/pg_query/include/postgres/port/atomics/generic-gcc.h +323 -0
  255. data/ext/pg_query/include/postgres/port/atomics/generic-msvc.h +119 -0
  256. data/ext/pg_query/include/postgres/port/atomics/generic-sunpro.h +121 -0
  257. data/ext/pg_query/include/postgres/port/atomics/generic.h +437 -0
  258. data/ext/pg_query/include/postgres/port/atomics.h +606 -0
  259. data/ext/pg_query/include/postgres/port/pg_bitutils.h +421 -0
  260. data/ext/pg_query/include/postgres/port/pg_bswap.h +161 -0
  261. data/ext/pg_query/include/postgres/port/pg_crc32c.h +110 -0
  262. data/ext/pg_query/include/postgres/port/pg_iovec.h +117 -0
  263. data/ext/pg_query/include/postgres/port/simd.h +422 -0
  264. data/ext/pg_query/include/postgres/port/win32/arpa/inet.h +3 -0
  265. data/ext/pg_query/include/postgres/port/win32/dlfcn.h +1 -0
  266. data/ext/pg_query/include/postgres/port/win32/grp.h +1 -0
  267. data/ext/pg_query/include/postgres/port/win32/netdb.h +7 -0
  268. data/ext/pg_query/include/postgres/port/win32/netinet/in.h +3 -0
  269. data/ext/pg_query/include/postgres/port/win32/netinet/tcp.h +7 -0
  270. data/ext/pg_query/include/postgres/port/win32/pwd.h +3 -0
  271. data/ext/pg_query/include/postgres/port/win32/sys/resource.h +20 -0
  272. data/ext/pg_query/include/postgres/port/win32/sys/select.h +3 -0
  273. data/ext/pg_query/include/postgres/port/win32/sys/socket.h +34 -0
  274. data/ext/pg_query/include/postgres/port/win32/sys/un.h +17 -0
  275. data/ext/pg_query/include/postgres/port/win32/sys/wait.h +3 -0
  276. data/ext/pg_query/include/postgres/port/win32.h +59 -0
  277. data/ext/pg_query/include/postgres/port/win32_msvc/dirent.h +34 -0
  278. data/ext/pg_query/include/postgres/port/win32_msvc/sys/file.h +1 -0
  279. data/ext/pg_query/include/postgres/port/win32_msvc/sys/param.h +1 -0
  280. data/ext/pg_query/include/postgres/port/win32_msvc/sys/time.h +1 -0
  281. data/ext/pg_query/include/postgres/port/win32_msvc/unistd.h +9 -0
  282. data/ext/pg_query/include/postgres/port/win32_msvc/utime.h +3 -0
  283. data/ext/pg_query/include/postgres/port/win32_port.h +584 -0
  284. data/ext/pg_query/include/postgres/port.h +524 -0
  285. data/ext/pg_query/include/postgres/portability/instr_time.h +197 -0
  286. data/ext/pg_query/include/postgres/postgres.h +579 -0
  287. data/ext/pg_query/include/postgres/postmaster/autovacuum.h +69 -0
  288. data/ext/pg_query/include/postgres/postmaster/bgworker.h +164 -0
  289. data/ext/pg_query/include/postgres/postmaster/bgworker_internals.h +60 -0
  290. data/ext/pg_query/include/postgres/postmaster/bgwriter.h +45 -0
  291. data/ext/pg_query/include/postgres/postmaster/interrupt.h +32 -0
  292. data/ext/pg_query/include/postgres/postmaster/pgarch.h +36 -0
  293. data/ext/pg_query/include/postgres/postmaster/postmaster.h +101 -0
  294. data/ext/pg_query/include/postgres/postmaster/startup.h +41 -0
  295. data/ext/pg_query/include/postgres/postmaster/syslogger.h +101 -0
  296. data/ext/pg_query/include/postgres/postmaster/walsummarizer.h +35 -0
  297. data/ext/pg_query/include/postgres/postmaster/walwriter.h +23 -0
  298. data/ext/pg_query/include/postgres/regex/regex.h +272 -0
  299. data/ext/pg_query/include/postgres/replication/logicallauncher.h +34 -0
  300. data/ext/pg_query/include/postgres/replication/logicalproto.h +274 -0
  301. data/ext/pg_query/include/postgres/replication/logicalworker.h +33 -0
  302. data/ext/pg_query/include/postgres/replication/origin.h +73 -0
  303. data/ext/pg_query/include/postgres/replication/reorderbuffer.h +743 -0
  304. data/ext/pg_query/include/postgres/replication/slot.h +285 -0
  305. data/ext/pg_query/include/postgres/replication/slotsync.h +38 -0
  306. data/ext/pg_query/include/postgres/replication/syncrep.h +109 -0
  307. data/ext/pg_query/include/postgres/replication/walreceiver.h +504 -0
  308. data/ext/pg_query/include/postgres/replication/walsender.h +76 -0
  309. data/ext/pg_query/include/postgres/rewrite/prs2lock.h +46 -0
  310. data/ext/pg_query/include/postgres/rewrite/rewriteHandler.h +41 -0
  311. data/ext/pg_query/include/postgres/rewrite/rewriteManip.h +96 -0
  312. data/ext/pg_query/include/postgres/rewrite/rewriteSupport.h +26 -0
  313. data/ext/pg_query/include/postgres/storage/block.h +108 -0
  314. data/ext/pg_query/include/postgres/storage/buf.h +46 -0
  315. data/ext/pg_query/include/postgres/storage/bufmgr.h +411 -0
  316. data/ext/pg_query/include/postgres/storage/bufpage.h +510 -0
  317. data/ext/pg_query/include/postgres/storage/condition_variable.h +73 -0
  318. data/ext/pg_query/include/postgres/storage/dsm.h +61 -0
  319. data/ext/pg_query/include/postgres/storage/dsm_impl.h +79 -0
  320. data/ext/pg_query/include/postgres/storage/fd.h +219 -0
  321. data/ext/pg_query/include/postgres/storage/fileset.h +40 -0
  322. data/ext/pg_query/include/postgres/storage/ipc.h +87 -0
  323. data/ext/pg_query/include/postgres/storage/item.h +19 -0
  324. data/ext/pg_query/include/postgres/storage/itemid.h +184 -0
  325. data/ext/pg_query/include/postgres/storage/itemptr.h +245 -0
  326. data/ext/pg_query/include/postgres/storage/large_object.h +100 -0
  327. data/ext/pg_query/include/postgres/storage/latch.h +196 -0
  328. data/ext/pg_query/include/postgres/storage/lmgr.h +126 -0
  329. data/ext/pg_query/include/postgres/storage/lock.h +624 -0
  330. data/ext/pg_query/include/postgres/storage/lockdefs.h +59 -0
  331. data/ext/pg_query/include/postgres/storage/lwlock.h +228 -0
  332. data/ext/pg_query/include/postgres/storage/lwlocknames.h +47 -0
  333. data/ext/pg_query/include/postgres/storage/off.h +57 -0
  334. data/ext/pg_query/include/postgres/storage/pg_sema.h +61 -0
  335. data/ext/pg_query/include/postgres/storage/pg_shmem.h +93 -0
  336. data/ext/pg_query/include/postgres/storage/pmsignal.h +105 -0
  337. data/ext/pg_query/include/postgres/storage/predicate.h +83 -0
  338. data/ext/pg_query/include/postgres/storage/proc.h +491 -0
  339. data/ext/pg_query/include/postgres/storage/procarray.h +103 -0
  340. data/ext/pg_query/include/postgres/storage/proclist_types.h +53 -0
  341. data/ext/pg_query/include/postgres/storage/procnumber.h +43 -0
  342. data/ext/pg_query/include/postgres/storage/procsignal.h +75 -0
  343. data/ext/pg_query/include/postgres/storage/read_stream.h +65 -0
  344. data/ext/pg_query/include/postgres/storage/relfilelocator.h +100 -0
  345. data/ext/pg_query/include/postgres/storage/s_lock.h +847 -0
  346. data/ext/pg_query/include/postgres/storage/sharedfileset.h +37 -0
  347. data/ext/pg_query/include/postgres/storage/shm_mq.h +86 -0
  348. data/ext/pg_query/include/postgres/storage/shm_toc.h +58 -0
  349. data/ext/pg_query/include/postgres/storage/shmem.h +59 -0
  350. data/ext/pg_query/include/postgres/storage/sinval.h +153 -0
  351. data/ext/pg_query/include/postgres/storage/smgr.h +127 -0
  352. data/ext/pg_query/include/postgres/storage/spin.h +77 -0
  353. data/ext/pg_query/include/postgres/storage/standby.h +109 -0
  354. data/ext/pg_query/include/postgres/storage/standbydefs.h +74 -0
  355. data/ext/pg_query/include/postgres/storage/sync.h +66 -0
  356. data/ext/pg_query/include/postgres/tcop/cmdtag.h +62 -0
  357. data/ext/pg_query/include/postgres/tcop/cmdtaglist.h +219 -0
  358. data/ext/pg_query/include/postgres/tcop/deparse_utility.h +108 -0
  359. data/ext/pg_query/include/postgres/tcop/dest.h +148 -0
  360. data/ext/pg_query/include/postgres/tcop/fastpath.h +20 -0
  361. data/ext/pg_query/include/postgres/tcop/pquery.h +51 -0
  362. data/ext/pg_query/include/postgres/tcop/tcopprot.h +98 -0
  363. data/ext/pg_query/include/postgres/tcop/utility.h +112 -0
  364. data/ext/pg_query/include/postgres/tsearch/ts_cache.h +96 -0
  365. data/ext/pg_query/include/postgres/utils/acl.h +290 -0
  366. data/ext/pg_query/include/postgres/utils/aclchk_internal.h +45 -0
  367. data/ext/pg_query/include/postgres/utils/array.h +481 -0
  368. data/ext/pg_query/include/postgres/utils/ascii.h +84 -0
  369. data/ext/pg_query/include/postgres/utils/backend_progress.h +46 -0
  370. data/ext/pg_query/include/postgres/utils/backend_status.h +340 -0
  371. data/ext/pg_query/include/postgres/utils/builtins.h +139 -0
  372. data/ext/pg_query/include/postgres/utils/bytea.h +28 -0
  373. data/ext/pg_query/include/postgres/utils/catcache.h +230 -0
  374. data/ext/pg_query/include/postgres/utils/date.h +118 -0
  375. data/ext/pg_query/include/postgres/utils/datetime.h +367 -0
  376. data/ext/pg_query/include/postgres/utils/datum.h +76 -0
  377. data/ext/pg_query/include/postgres/utils/dsa.h +166 -0
  378. data/ext/pg_query/include/postgres/utils/elog.h +540 -0
  379. data/ext/pg_query/include/postgres/utils/errcodes.h +352 -0
  380. data/ext/pg_query/include/postgres/utils/expandeddatum.h +170 -0
  381. data/ext/pg_query/include/postgres/utils/expandedrecord.h +241 -0
  382. data/ext/pg_query/include/postgres/utils/float.h +357 -0
  383. data/ext/pg_query/include/postgres/utils/fmgroids.h +3347 -0
  384. data/ext/pg_query/include/postgres/utils/fmgrprotos.h +2904 -0
  385. data/ext/pg_query/include/postgres/utils/fmgrtab.h +49 -0
  386. data/ext/pg_query/include/postgres/utils/guc.h +456 -0
  387. data/ext/pg_query/include/postgres/utils/guc_hooks.h +184 -0
  388. data/ext/pg_query/include/postgres/utils/guc_tables.h +323 -0
  389. data/ext/pg_query/include/postgres/utils/hsearch.h +153 -0
  390. data/ext/pg_query/include/postgres/utils/injection_point.h +44 -0
  391. data/ext/pg_query/include/postgres/utils/inval.h +68 -0
  392. data/ext/pg_query/include/postgres/utils/logtape.h +77 -0
  393. data/ext/pg_query/include/postgres/utils/lsyscache.h +215 -0
  394. data/ext/pg_query/include/postgres/utils/memdebug.h +82 -0
  395. data/ext/pg_query/include/postgres/utils/memutils.h +193 -0
  396. data/ext/pg_query/include/postgres/utils/memutils_internal.h +176 -0
  397. data/ext/pg_query/include/postgres/utils/memutils_memorychunk.h +253 -0
  398. data/ext/pg_query/include/postgres/utils/numeric.h +110 -0
  399. data/ext/pg_query/include/postgres/utils/palloc.h +151 -0
  400. data/ext/pg_query/include/postgres/utils/partcache.h +103 -0
  401. data/ext/pg_query/include/postgres/utils/pg_locale.h +136 -0
  402. data/ext/pg_query/include/postgres/utils/pgstat_internal.h +808 -0
  403. data/ext/pg_query/include/postgres/utils/plancache.h +238 -0
  404. data/ext/pg_query/include/postgres/utils/portal.h +252 -0
  405. data/ext/pg_query/include/postgres/utils/queryenvironment.h +74 -0
  406. data/ext/pg_query/include/postgres/utils/regproc.h +39 -0
  407. data/ext/pg_query/include/postgres/utils/rel.h +711 -0
  408. data/ext/pg_query/include/postgres/utils/relcache.h +155 -0
  409. data/ext/pg_query/include/postgres/utils/reltrigger.h +81 -0
  410. data/ext/pg_query/include/postgres/utils/resowner.h +167 -0
  411. data/ext/pg_query/include/postgres/utils/ruleutils.h +52 -0
  412. data/ext/pg_query/include/postgres/utils/sharedtuplestore.h +61 -0
  413. data/ext/pg_query/include/postgres/utils/snapmgr.h +130 -0
  414. data/ext/pg_query/include/postgres/utils/snapshot.h +219 -0
  415. data/ext/pg_query/include/postgres/utils/sortsupport.h +391 -0
  416. data/ext/pg_query/include/postgres/utils/syscache.h +131 -0
  417. data/ext/pg_query/include/postgres/utils/timeout.h +96 -0
  418. data/ext/pg_query/include/postgres/utils/timestamp.h +147 -0
  419. data/ext/pg_query/include/postgres/utils/tuplesort.h +472 -0
  420. data/ext/pg_query/include/postgres/utils/tuplestore.h +88 -0
  421. data/ext/pg_query/include/postgres/utils/typcache.h +210 -0
  422. data/ext/pg_query/include/postgres/utils/varlena.h +53 -0
  423. data/ext/pg_query/include/postgres/utils/wait_event.h +108 -0
  424. data/ext/pg_query/include/postgres/utils/wait_event_types.h +218 -0
  425. data/ext/pg_query/include/postgres/utils/xml.h +94 -0
  426. data/ext/pg_query/include/postgres/varatt.h +358 -0
  427. data/ext/pg_query/include/protobuf/pg_query.pb-c.h +1546 -792
  428. data/ext/pg_query/include/protobuf/pg_query.pb.h +58365 -46595
  429. data/ext/pg_query/pg_query.c +9 -0
  430. data/ext/pg_query/pg_query.pb-c.c +6598 -3739
  431. data/ext/pg_query/pg_query_fingerprint.c +4 -5
  432. data/ext/pg_query/pg_query_normalize.c +42 -1
  433. data/ext/pg_query/pg_query_outfuncs_json.c +9 -1
  434. data/ext/pg_query/pg_query_outfuncs_protobuf.c +1 -0
  435. data/ext/pg_query/pg_query_parse.c +1 -1
  436. data/ext/pg_query/pg_query_parse_plpgsql.c +18 -17
  437. data/ext/pg_query/pg_query_readfuncs_protobuf.c +3 -2
  438. data/ext/pg_query/pg_query_ruby.c +5 -0
  439. data/ext/pg_query/pg_query_ruby_freebsd.sym +0 -1
  440. data/ext/pg_query/pg_query_scan.c +1 -1
  441. data/ext/pg_query/pg_query_split.c +1 -1
  442. data/ext/pg_query/postgres_deparse.c +409 -21
  443. data/ext/pg_query/src_backend_catalog_namespace.c +241 -66
  444. data/ext/pg_query/src_backend_catalog_pg_proc.c +1 -3
  445. data/ext/pg_query/src_backend_commands_define.c +2 -3
  446. data/ext/pg_query/src_backend_nodes_bitmapset.c +137 -94
  447. data/ext/pg_query/src_backend_nodes_copyfuncs.c +1 -1
  448. data/ext/pg_query/src_backend_nodes_equalfuncs.c +1 -1
  449. data/ext/pg_query/src_backend_nodes_extensible.c +1 -1
  450. data/ext/pg_query/src_backend_nodes_list.c +3 -7
  451. data/ext/pg_query/src_backend_nodes_makefuncs.c +59 -20
  452. data/ext/pg_query/src_backend_nodes_nodeFuncs.c +109 -2
  453. data/ext/pg_query/src_backend_nodes_value.c +1 -1
  454. data/ext/pg_query/src_backend_parser_gram.c +34490 -32135
  455. data/ext/pg_query/src_backend_parser_parser.c +8 -8
  456. data/ext/pg_query/src_backend_parser_scan.c +5637 -3028
  457. data/ext/pg_query/src_backend_parser_scansup.c +2 -1
  458. data/ext/pg_query/src_backend_storage_ipc_ipc.c +1 -1
  459. data/ext/pg_query/src_backend_tcop_postgres.c +34 -10
  460. data/ext/pg_query/src_backend_utils_activity_pgstat_database.c +2 -2
  461. data/ext/pg_query/src_backend_utils_adt_datum.c +8 -6
  462. data/ext/pg_query/src_backend_utils_adt_expandeddatum.c +1 -1
  463. data/ext/pg_query/src_backend_utils_adt_format_type.c +1 -1
  464. data/ext/pg_query/src_backend_utils_adt_numutils.c +4 -5
  465. data/ext/pg_query/src_backend_utils_adt_ruleutils.c +101 -28
  466. data/ext/pg_query/src_backend_utils_error_assert.c +1 -1
  467. data/ext/pg_query/src_backend_utils_error_elog.c +60 -190
  468. data/ext/pg_query/src_backend_utils_fmgr_fmgr.c +4 -2
  469. data/ext/pg_query/src_backend_utils_init_globals.c +16 -4
  470. data/ext/pg_query/src_backend_utils_mb_mbutils.c +19 -81
  471. data/ext/pg_query/src_backend_utils_misc_guc_tables.c +16 -8
  472. data/ext/pg_query/src_backend_utils_mmgr_alignedalloc.c +8 -5
  473. data/ext/pg_query/src_backend_utils_mmgr_aset.c +308 -238
  474. data/ext/pg_query/src_backend_utils_mmgr_bump.c +728 -0
  475. data/ext/pg_query/src_backend_utils_mmgr_generation.c +273 -197
  476. data/ext/pg_query/src_backend_utils_mmgr_mcxt.c +270 -215
  477. data/ext/pg_query/src_backend_utils_mmgr_slab.c +154 -96
  478. data/ext/pg_query/src_common_encnames.c +43 -44
  479. data/ext/pg_query/src_common_hashfn.c +1 -1
  480. data/ext/pg_query/src_common_keywords.c +1 -1
  481. data/ext/pg_query/src_common_kwlist_d.h +511 -466
  482. data/ext/pg_query/src_common_kwlookup.c +1 -1
  483. data/ext/pg_query/src_common_psprintf.c +3 -3
  484. data/ext/pg_query/src_common_stringinfo.c +18 -1
  485. data/ext/pg_query/src_common_wchar.c +45 -108
  486. data/ext/pg_query/src_pl_plpgsql_src_pl_comp.c +99 -5
  487. data/ext/pg_query/src_pl_plpgsql_src_pl_funcs.c +1 -1
  488. data/ext/pg_query/src_pl_plpgsql_src_pl_gram.c +242 -143
  489. data/ext/pg_query/src_pl_plpgsql_src_pl_handler.c +1 -1
  490. data/ext/pg_query/src_pl_plpgsql_src_pl_reserved_kwlist_d.h +1 -1
  491. data/ext/pg_query/src_pl_plpgsql_src_pl_scanner.c +19 -1
  492. data/ext/pg_query/src_pl_plpgsql_src_pl_unreserved_kwlist_d.h +1 -1
  493. data/ext/pg_query/src_port_pg_bitutils.c +251 -32
  494. data/ext/pg_query/src_port_pgstrcasecmp.c +29 -1
  495. data/ext/pg_query/src_port_snprintf.c +4 -4
  496. data/ext/pg_query/src_port_strerror.c +1 -3
  497. data/ext/pg_query/src_port_strlcpy.c +79 -0
  498. data/lib/pg_query/fingerprint.rb +2 -3
  499. data/lib/pg_query/node.rb +16 -11
  500. data/lib/pg_query/param_refs.rb +1 -1
  501. data/lib/pg_query/parse.rb +1 -1
  502. data/lib/pg_query/pg_query_pb.rb +26 -3
  503. data/lib/pg_query/treewalker.rb +52 -12
  504. data/lib/pg_query/truncate.rb +1 -1
  505. data/lib/pg_query/version.rb +1 -1
  506. metadata +444 -400
  507. data/ext/pg_query/guc-file.c +0 -0
  508. data/ext/pg_query/include/access/amapi.h +0 -292
  509. data/ext/pg_query/include/access/attmap.h +0 -54
  510. data/ext/pg_query/include/access/attnum.h +0 -64
  511. data/ext/pg_query/include/access/clog.h +0 -63
  512. data/ext/pg_query/include/access/commit_ts.h +0 -74
  513. data/ext/pg_query/include/access/detoast.h +0 -82
  514. data/ext/pg_query/include/access/genam.h +0 -233
  515. data/ext/pg_query/include/access/gin.h +0 -91
  516. data/ext/pg_query/include/access/htup.h +0 -89
  517. data/ext/pg_query/include/access/htup_details.h +0 -811
  518. data/ext/pg_query/include/access/itup.h +0 -170
  519. data/ext/pg_query/include/access/parallel.h +0 -82
  520. data/ext/pg_query/include/access/printtup.h +0 -35
  521. data/ext/pg_query/include/access/relation.h +0 -28
  522. data/ext/pg_query/include/access/relscan.h +0 -191
  523. data/ext/pg_query/include/access/rmgrlist.h +0 -49
  524. data/ext/pg_query/include/access/sdir.h +0 -67
  525. data/ext/pg_query/include/access/skey.h +0 -151
  526. data/ext/pg_query/include/access/stratnum.h +0 -85
  527. data/ext/pg_query/include/access/sysattr.h +0 -29
  528. data/ext/pg_query/include/access/table.h +0 -28
  529. data/ext/pg_query/include/access/tableam.h +0 -2100
  530. data/ext/pg_query/include/access/toast_compression.h +0 -73
  531. data/ext/pg_query/include/access/transam.h +0 -375
  532. data/ext/pg_query/include/access/tsmapi.h +0 -82
  533. data/ext/pg_query/include/access/tupconvert.h +0 -54
  534. data/ext/pg_query/include/access/tupdesc.h +0 -154
  535. data/ext/pg_query/include/access/tupmacs.h +0 -207
  536. data/ext/pg_query/include/access/twophase.h +0 -65
  537. data/ext/pg_query/include/access/xact.h +0 -530
  538. data/ext/pg_query/include/access/xlog.h +0 -302
  539. data/ext/pg_query/include/access/xlog_internal.h +0 -404
  540. data/ext/pg_query/include/access/xlogbackup.h +0 -41
  541. data/ext/pg_query/include/access/xlogdefs.h +0 -82
  542. data/ext/pg_query/include/access/xlogprefetcher.h +0 -55
  543. data/ext/pg_query/include/access/xlogreader.h +0 -444
  544. data/ext/pg_query/include/access/xlogrecord.h +0 -248
  545. data/ext/pg_query/include/access/xlogrecovery.h +0 -158
  546. data/ext/pg_query/include/archive/archive_module.h +0 -59
  547. data/ext/pg_query/include/c.h +0 -1379
  548. data/ext/pg_query/include/catalog/catalog.h +0 -45
  549. data/ext/pg_query/include/catalog/catversion.h +0 -62
  550. data/ext/pg_query/include/catalog/dependency.h +0 -270
  551. data/ext/pg_query/include/catalog/genbki.h +0 -143
  552. data/ext/pg_query/include/catalog/index.h +0 -214
  553. data/ext/pg_query/include/catalog/indexing.h +0 -54
  554. data/ext/pg_query/include/catalog/namespace.h +0 -190
  555. data/ext/pg_query/include/catalog/objectaccess.h +0 -267
  556. data/ext/pg_query/include/catalog/objectaddress.h +0 -89
  557. data/ext/pg_query/include/catalog/pg_aggregate.h +0 -180
  558. data/ext/pg_query/include/catalog/pg_aggregate_d.h +0 -78
  559. data/ext/pg_query/include/catalog/pg_am.h +0 -63
  560. data/ext/pg_query/include/catalog/pg_am_d.h +0 -47
  561. data/ext/pg_query/include/catalog/pg_attribute.h +0 -223
  562. data/ext/pg_query/include/catalog/pg_attribute_d.h +0 -62
  563. data/ext/pg_query/include/catalog/pg_authid.h +0 -63
  564. data/ext/pg_query/include/catalog/pg_authid_d.h +0 -59
  565. data/ext/pg_query/include/catalog/pg_class.h +0 -230
  566. data/ext/pg_query/include/catalog/pg_class_d.h +0 -132
  567. data/ext/pg_query/include/catalog/pg_collation.h +0 -100
  568. data/ext/pg_query/include/catalog/pg_collation_d.h +0 -63
  569. data/ext/pg_query/include/catalog/pg_constraint.h +0 -273
  570. data/ext/pg_query/include/catalog/pg_constraint_d.h +0 -73
  571. data/ext/pg_query/include/catalog/pg_control.h +0 -258
  572. data/ext/pg_query/include/catalog/pg_conversion.h +0 -75
  573. data/ext/pg_query/include/catalog/pg_conversion_d.h +0 -38
  574. data/ext/pg_query/include/catalog/pg_database.h +0 -124
  575. data/ext/pg_query/include/catalog/pg_database_d.h +0 -52
  576. data/ext/pg_query/include/catalog/pg_depend.h +0 -77
  577. data/ext/pg_query/include/catalog/pg_depend_d.h +0 -36
  578. data/ext/pg_query/include/catalog/pg_event_trigger.h +0 -57
  579. data/ext/pg_query/include/catalog/pg_event_trigger_d.h +0 -36
  580. data/ext/pg_query/include/catalog/pg_index.h +0 -90
  581. data/ext/pg_query/include/catalog/pg_index_d.h +0 -59
  582. data/ext/pg_query/include/catalog/pg_language.h +0 -72
  583. data/ext/pg_query/include/catalog/pg_language_d.h +0 -41
  584. data/ext/pg_query/include/catalog/pg_namespace.h +0 -64
  585. data/ext/pg_query/include/catalog/pg_namespace_d.h +0 -36
  586. data/ext/pg_query/include/catalog/pg_opclass.h +0 -88
  587. data/ext/pg_query/include/catalog/pg_opclass_d.h +0 -51
  588. data/ext/pg_query/include/catalog/pg_operator.h +0 -107
  589. data/ext/pg_query/include/catalog/pg_operator_d.h +0 -142
  590. data/ext/pg_query/include/catalog/pg_opfamily.h +0 -64
  591. data/ext/pg_query/include/catalog/pg_opfamily_d.h +0 -51
  592. data/ext/pg_query/include/catalog/pg_partitioned_table.h +0 -74
  593. data/ext/pg_query/include/catalog/pg_partitioned_table_d.h +0 -36
  594. data/ext/pg_query/include/catalog/pg_proc.h +0 -220
  595. data/ext/pg_query/include/catalog/pg_proc_d.h +0 -101
  596. data/ext/pg_query/include/catalog/pg_publication.h +0 -158
  597. data/ext/pg_query/include/catalog/pg_publication_d.h +0 -38
  598. data/ext/pg_query/include/catalog/pg_replication_origin.h +0 -62
  599. data/ext/pg_query/include/catalog/pg_replication_origin_d.h +0 -33
  600. data/ext/pg_query/include/catalog/pg_statistic.h +0 -282
  601. data/ext/pg_query/include/catalog/pg_statistic_d.h +0 -195
  602. data/ext/pg_query/include/catalog/pg_statistic_ext.h +0 -88
  603. data/ext/pg_query/include/catalog/pg_statistic_ext_d.h +0 -45
  604. data/ext/pg_query/include/catalog/pg_transform.h +0 -48
  605. data/ext/pg_query/include/catalog/pg_transform_d.h +0 -34
  606. data/ext/pg_query/include/catalog/pg_trigger.h +0 -153
  607. data/ext/pg_query/include/catalog/pg_trigger_d.h +0 -109
  608. data/ext/pg_query/include/catalog/pg_ts_config.h +0 -53
  609. data/ext/pg_query/include/catalog/pg_ts_config_d.h +0 -34
  610. data/ext/pg_query/include/catalog/pg_ts_dict.h +0 -59
  611. data/ext/pg_query/include/catalog/pg_ts_dict_d.h +0 -35
  612. data/ext/pg_query/include/catalog/pg_ts_parser.h +0 -60
  613. data/ext/pg_query/include/catalog/pg_ts_parser_d.h +0 -37
  614. data/ext/pg_query/include/catalog/pg_ts_template.h +0 -51
  615. data/ext/pg_query/include/catalog/pg_ts_template_d.h +0 -34
  616. data/ext/pg_query/include/catalog/pg_type.h +0 -404
  617. data/ext/pg_query/include/catalog/pg_type_d.h +0 -324
  618. data/ext/pg_query/include/catalog/storage.h +0 -50
  619. data/ext/pg_query/include/commands/async.h +0 -53
  620. data/ext/pg_query/include/commands/dbcommands.h +0 -37
  621. data/ext/pg_query/include/commands/defrem.h +0 -161
  622. data/ext/pg_query/include/commands/event_trigger.h +0 -88
  623. data/ext/pg_query/include/commands/explain.h +0 -129
  624. data/ext/pg_query/include/commands/prepare.h +0 -61
  625. data/ext/pg_query/include/commands/tablespace.h +0 -69
  626. data/ext/pg_query/include/commands/trigger.h +0 -288
  627. data/ext/pg_query/include/commands/vacuum.h +0 -386
  628. data/ext/pg_query/include/common/cryptohash.h +0 -39
  629. data/ext/pg_query/include/common/file_perm.h +0 -56
  630. data/ext/pg_query/include/common/hashfn.h +0 -104
  631. data/ext/pg_query/include/common/int.h +0 -437
  632. data/ext/pg_query/include/common/ip.h +0 -33
  633. data/ext/pg_query/include/common/keywords.h +0 -29
  634. data/ext/pg_query/include/common/kwlookup.h +0 -44
  635. data/ext/pg_query/include/common/pg_prng.h +0 -61
  636. data/ext/pg_query/include/common/relpath.h +0 -97
  637. data/ext/pg_query/include/common/scram-common.h +0 -70
  638. data/ext/pg_query/include/common/sha2.h +0 -32
  639. data/ext/pg_query/include/common/string.h +0 -44
  640. data/ext/pg_query/include/common/unicode_east_asian_fw_table.h +0 -125
  641. data/ext/pg_query/include/copyfuncs.funcs.c +0 -5013
  642. data/ext/pg_query/include/copyfuncs.switch.c +0 -938
  643. data/ext/pg_query/include/datatype/timestamp.h +0 -243
  644. data/ext/pg_query/include/equalfuncs.funcs.c +0 -3097
  645. data/ext/pg_query/include/equalfuncs.switch.c +0 -785
  646. data/ext/pg_query/include/executor/execdesc.h +0 -70
  647. data/ext/pg_query/include/executor/executor.h +0 -680
  648. data/ext/pg_query/include/executor/functions.h +0 -55
  649. data/ext/pg_query/include/executor/instrument.h +0 -118
  650. data/ext/pg_query/include/executor/spi.h +0 -213
  651. data/ext/pg_query/include/executor/tablefunc.h +0 -67
  652. data/ext/pg_query/include/executor/tuptable.h +0 -494
  653. data/ext/pg_query/include/fmgr.h +0 -800
  654. data/ext/pg_query/include/foreign/fdwapi.h +0 -294
  655. data/ext/pg_query/include/funcapi.h +0 -360
  656. data/ext/pg_query/include/gram.h +0 -1127
  657. data/ext/pg_query/include/gramparse.h +0 -75
  658. data/ext/pg_query/include/jit/jit.h +0 -105
  659. data/ext/pg_query/include/kwlist_d.h +0 -1119
  660. data/ext/pg_query/include/lib/dshash.h +0 -115
  661. data/ext/pg_query/include/lib/ilist.h +0 -1159
  662. data/ext/pg_query/include/lib/pairingheap.h +0 -102
  663. data/ext/pg_query/include/lib/simplehash.h +0 -1184
  664. data/ext/pg_query/include/lib/sort_template.h +0 -432
  665. data/ext/pg_query/include/lib/stringinfo.h +0 -161
  666. data/ext/pg_query/include/libpq/auth.h +0 -37
  667. data/ext/pg_query/include/libpq/crypt.h +0 -47
  668. data/ext/pg_query/include/libpq/hba.h +0 -186
  669. data/ext/pg_query/include/libpq/libpq-be.h +0 -354
  670. data/ext/pg_query/include/libpq/libpq.h +0 -144
  671. data/ext/pg_query/include/libpq/pqcomm.h +0 -163
  672. data/ext/pg_query/include/libpq/pqformat.h +0 -210
  673. data/ext/pg_query/include/libpq/pqsignal.h +0 -54
  674. data/ext/pg_query/include/libpq/sasl.h +0 -136
  675. data/ext/pg_query/include/libpq/scram.h +0 -37
  676. data/ext/pg_query/include/mb/pg_wchar.h +0 -772
  677. data/ext/pg_query/include/mb/stringinfo_mb.h +0 -24
  678. data/ext/pg_query/include/miscadmin.h +0 -507
  679. data/ext/pg_query/include/nodes/bitmapset.h +0 -126
  680. data/ext/pg_query/include/nodes/execnodes.h +0 -2768
  681. data/ext/pg_query/include/nodes/extensible.h +0 -164
  682. data/ext/pg_query/include/nodes/lockoptions.h +0 -61
  683. data/ext/pg_query/include/nodes/makefuncs.h +0 -121
  684. data/ext/pg_query/include/nodes/memnodes.h +0 -113
  685. data/ext/pg_query/include/nodes/miscnodes.h +0 -56
  686. data/ext/pg_query/include/nodes/nodeFuncs.h +0 -222
  687. data/ext/pg_query/include/nodes/nodes.h +0 -446
  688. data/ext/pg_query/include/nodes/nodetags.h +0 -471
  689. data/ext/pg_query/include/nodes/params.h +0 -170
  690. data/ext/pg_query/include/nodes/parsenodes.h +0 -4050
  691. data/ext/pg_query/include/nodes/pathnodes.h +0 -3384
  692. data/ext/pg_query/include/nodes/pg_list.h +0 -635
  693. data/ext/pg_query/include/nodes/plannodes.h +0 -1592
  694. data/ext/pg_query/include/nodes/primnodes.h +0 -2041
  695. data/ext/pg_query/include/nodes/print.h +0 -34
  696. data/ext/pg_query/include/nodes/queryjumble.h +0 -86
  697. data/ext/pg_query/include/nodes/replnodes.h +0 -111
  698. data/ext/pg_query/include/nodes/supportnodes.h +0 -346
  699. data/ext/pg_query/include/nodes/tidbitmap.h +0 -75
  700. data/ext/pg_query/include/nodes/value.h +0 -90
  701. data/ext/pg_query/include/optimizer/cost.h +0 -215
  702. data/ext/pg_query/include/optimizer/geqo.h +0 -90
  703. data/ext/pg_query/include/optimizer/geqo_gene.h +0 -45
  704. data/ext/pg_query/include/optimizer/optimizer.h +0 -202
  705. data/ext/pg_query/include/optimizer/paths.h +0 -266
  706. data/ext/pg_query/include/optimizer/planmain.h +0 -117
  707. data/ext/pg_query/include/parser/analyze.h +0 -64
  708. data/ext/pg_query/include/parser/kwlist.h +0 -498
  709. data/ext/pg_query/include/parser/parse_agg.h +0 -65
  710. data/ext/pg_query/include/parser/parse_coerce.h +0 -102
  711. data/ext/pg_query/include/parser/parse_expr.h +0 -25
  712. data/ext/pg_query/include/parser/parse_func.h +0 -74
  713. data/ext/pg_query/include/parser/parse_node.h +0 -357
  714. data/ext/pg_query/include/parser/parse_oper.h +0 -65
  715. data/ext/pg_query/include/parser/parse_relation.h +0 -129
  716. data/ext/pg_query/include/parser/parse_type.h +0 -61
  717. data/ext/pg_query/include/parser/parser.h +0 -68
  718. data/ext/pg_query/include/parser/parsetree.h +0 -61
  719. data/ext/pg_query/include/parser/scanner.h +0 -152
  720. data/ext/pg_query/include/parser/scansup.h +0 -27
  721. data/ext/pg_query/include/partitioning/partdefs.h +0 -26
  722. data/ext/pg_query/include/pg_config.h +0 -843
  723. data/ext/pg_query/include/pg_config_manual.h +0 -372
  724. data/ext/pg_query/include/pg_config_os.h +0 -8
  725. data/ext/pg_query/include/pg_getopt.h +0 -56
  726. data/ext/pg_query/include/pg_trace.h +0 -17
  727. data/ext/pg_query/include/pgstat.h +0 -778
  728. data/ext/pg_query/include/pgtime.h +0 -94
  729. data/ext/pg_query/include/pl_gram.h +0 -385
  730. data/ext/pg_query/include/pl_reserved_kwlist.h +0 -52
  731. data/ext/pg_query/include/pl_reserved_kwlist_d.h +0 -114
  732. data/ext/pg_query/include/pl_unreserved_kwlist.h +0 -112
  733. data/ext/pg_query/include/pl_unreserved_kwlist_d.h +0 -246
  734. data/ext/pg_query/include/plerrcodes.h +0 -998
  735. data/ext/pg_query/include/plpgsql.h +0 -1340
  736. data/ext/pg_query/include/port/atomics/arch-arm.h +0 -32
  737. data/ext/pg_query/include/port/atomics/arch-ppc.h +0 -254
  738. data/ext/pg_query/include/port/atomics/arch-x86.h +0 -252
  739. data/ext/pg_query/include/port/atomics/fallback.h +0 -170
  740. data/ext/pg_query/include/port/atomics/generic-gcc.h +0 -286
  741. data/ext/pg_query/include/port/atomics/generic.h +0 -401
  742. data/ext/pg_query/include/port/atomics.h +0 -519
  743. data/ext/pg_query/include/port/pg_bitutils.h +0 -339
  744. data/ext/pg_query/include/port/pg_bswap.h +0 -161
  745. data/ext/pg_query/include/port/pg_crc32c.h +0 -101
  746. data/ext/pg_query/include/port/simd.h +0 -375
  747. data/ext/pg_query/include/port.h +0 -520
  748. data/ext/pg_query/include/portability/instr_time.h +0 -197
  749. data/ext/pg_query/include/postgres.h +0 -579
  750. data/ext/pg_query/include/postmaster/autovacuum.h +0 -80
  751. data/ext/pg_query/include/postmaster/auxprocess.h +0 -20
  752. data/ext/pg_query/include/postmaster/bgworker.h +0 -162
  753. data/ext/pg_query/include/postmaster/bgworker_internals.h +0 -64
  754. data/ext/pg_query/include/postmaster/bgwriter.h +0 -45
  755. data/ext/pg_query/include/postmaster/fork_process.h +0 -17
  756. data/ext/pg_query/include/postmaster/interrupt.h +0 -32
  757. data/ext/pg_query/include/postmaster/pgarch.h +0 -36
  758. data/ext/pg_query/include/postmaster/postmaster.h +0 -81
  759. data/ext/pg_query/include/postmaster/startup.h +0 -41
  760. data/ext/pg_query/include/postmaster/syslogger.h +0 -103
  761. data/ext/pg_query/include/postmaster/walwriter.h +0 -23
  762. data/ext/pg_query/include/regex/regex.h +0 -189
  763. data/ext/pg_query/include/replication/logicallauncher.h +0 -34
  764. data/ext/pg_query/include/replication/logicalproto.h +0 -274
  765. data/ext/pg_query/include/replication/logicalworker.h +0 -32
  766. data/ext/pg_query/include/replication/origin.h +0 -73
  767. data/ext/pg_query/include/replication/reorderbuffer.h +0 -753
  768. data/ext/pg_query/include/replication/slot.h +0 -249
  769. data/ext/pg_query/include/replication/syncrep.h +0 -109
  770. data/ext/pg_query/include/replication/walreceiver.h +0 -478
  771. data/ext/pg_query/include/replication/walsender.h +0 -74
  772. data/ext/pg_query/include/rewrite/prs2lock.h +0 -46
  773. data/ext/pg_query/include/rewrite/rewriteHandler.h +0 -35
  774. data/ext/pg_query/include/rewrite/rewriteManip.h +0 -96
  775. data/ext/pg_query/include/rewrite/rewriteSupport.h +0 -26
  776. data/ext/pg_query/include/src_backend_nodes_copyfuncs.funcs.c +0 -5321
  777. data/ext/pg_query/include/src_backend_nodes_equalfuncs.funcs.c +0 -3354
  778. data/ext/pg_query/include/storage/backendid.h +0 -37
  779. data/ext/pg_query/include/storage/block.h +0 -108
  780. data/ext/pg_query/include/storage/buf.h +0 -46
  781. data/ext/pg_query/include/storage/bufmgr.h +0 -393
  782. data/ext/pg_query/include/storage/bufpage.h +0 -510
  783. data/ext/pg_query/include/storage/condition_variable.h +0 -73
  784. data/ext/pg_query/include/storage/dsm.h +0 -61
  785. data/ext/pg_query/include/storage/dsm_impl.h +0 -79
  786. data/ext/pg_query/include/storage/fd.h +0 -202
  787. data/ext/pg_query/include/storage/fileset.h +0 -40
  788. data/ext/pg_query/include/storage/ipc.h +0 -84
  789. data/ext/pg_query/include/storage/item.h +0 -19
  790. data/ext/pg_query/include/storage/itemid.h +0 -184
  791. data/ext/pg_query/include/storage/itemptr.h +0 -245
  792. data/ext/pg_query/include/storage/large_object.h +0 -100
  793. data/ext/pg_query/include/storage/latch.h +0 -194
  794. data/ext/pg_query/include/storage/lmgr.h +0 -120
  795. data/ext/pg_query/include/storage/lock.h +0 -624
  796. data/ext/pg_query/include/storage/lockdefs.h +0 -59
  797. data/ext/pg_query/include/storage/lwlock.h +0 -220
  798. data/ext/pg_query/include/storage/lwlocknames.h +0 -50
  799. data/ext/pg_query/include/storage/off.h +0 -57
  800. data/ext/pg_query/include/storage/pg_sema.h +0 -61
  801. data/ext/pg_query/include/storage/pg_shmem.h +0 -92
  802. data/ext/pg_query/include/storage/pmsignal.h +0 -105
  803. data/ext/pg_query/include/storage/predicate.h +0 -87
  804. data/ext/pg_query/include/storage/proc.h +0 -466
  805. data/ext/pg_query/include/storage/procarray.h +0 -99
  806. data/ext/pg_query/include/storage/proclist_types.h +0 -51
  807. data/ext/pg_query/include/storage/procsignal.h +0 -73
  808. data/ext/pg_query/include/storage/relfilelocator.h +0 -99
  809. data/ext/pg_query/include/storage/s_lock.h +0 -867
  810. data/ext/pg_query/include/storage/sharedfileset.h +0 -37
  811. data/ext/pg_query/include/storage/shm_mq.h +0 -86
  812. data/ext/pg_query/include/storage/shm_toc.h +0 -58
  813. data/ext/pg_query/include/storage/shmem.h +0 -59
  814. data/ext/pg_query/include/storage/sinval.h +0 -153
  815. data/ext/pg_query/include/storage/sinvaladt.h +0 -45
  816. data/ext/pg_query/include/storage/smgr.h +0 -113
  817. data/ext/pg_query/include/storage/spin.h +0 -77
  818. data/ext/pg_query/include/storage/standby.h +0 -99
  819. data/ext/pg_query/include/storage/standbydefs.h +0 -74
  820. data/ext/pg_query/include/storage/sync.h +0 -66
  821. data/ext/pg_query/include/tcop/cmdtag.h +0 -63
  822. data/ext/pg_query/include/tcop/cmdtaglist.h +0 -218
  823. data/ext/pg_query/include/tcop/deparse_utility.h +0 -108
  824. data/ext/pg_query/include/tcop/dest.h +0 -147
  825. data/ext/pg_query/include/tcop/fastpath.h +0 -20
  826. data/ext/pg_query/include/tcop/pquery.h +0 -51
  827. data/ext/pg_query/include/tcop/tcopprot.h +0 -94
  828. data/ext/pg_query/include/tcop/utility.h +0 -112
  829. data/ext/pg_query/include/tsearch/ts_cache.h +0 -96
  830. data/ext/pg_query/include/utils/acl.h +0 -278
  831. data/ext/pg_query/include/utils/aclchk_internal.h +0 -45
  832. data/ext/pg_query/include/utils/array.h +0 -482
  833. data/ext/pg_query/include/utils/backend_progress.h +0 -45
  834. data/ext/pg_query/include/utils/backend_status.h +0 -342
  835. data/ext/pg_query/include/utils/builtins.h +0 -136
  836. data/ext/pg_query/include/utils/bytea.h +0 -28
  837. data/ext/pg_query/include/utils/catcache.h +0 -231
  838. data/ext/pg_query/include/utils/date.h +0 -118
  839. data/ext/pg_query/include/utils/datetime.h +0 -364
  840. data/ext/pg_query/include/utils/datum.h +0 -76
  841. data/ext/pg_query/include/utils/dsa.h +0 -127
  842. data/ext/pg_query/include/utils/elog.h +0 -545
  843. data/ext/pg_query/include/utils/errcodes.h +0 -354
  844. data/ext/pg_query/include/utils/expandeddatum.h +0 -170
  845. data/ext/pg_query/include/utils/expandedrecord.h +0 -241
  846. data/ext/pg_query/include/utils/float.h +0 -357
  847. data/ext/pg_query/include/utils/fmgroids.h +0 -3314
  848. data/ext/pg_query/include/utils/fmgrprotos.h +0 -2871
  849. data/ext/pg_query/include/utils/fmgrtab.h +0 -49
  850. data/ext/pg_query/include/utils/guc.h +0 -442
  851. data/ext/pg_query/include/utils/guc_hooks.h +0 -163
  852. data/ext/pg_query/include/utils/guc_tables.h +0 -322
  853. data/ext/pg_query/include/utils/hsearch.h +0 -153
  854. data/ext/pg_query/include/utils/inval.h +0 -68
  855. data/ext/pg_query/include/utils/logtape.h +0 -77
  856. data/ext/pg_query/include/utils/lsyscache.h +0 -212
  857. data/ext/pg_query/include/utils/memdebug.h +0 -82
  858. data/ext/pg_query/include/utils/memutils.h +0 -186
  859. data/ext/pg_query/include/utils/memutils_internal.h +0 -136
  860. data/ext/pg_query/include/utils/memutils_memorychunk.h +0 -237
  861. data/ext/pg_query/include/utils/numeric.h +0 -105
  862. data/ext/pg_query/include/utils/palloc.h +0 -165
  863. data/ext/pg_query/include/utils/partcache.h +0 -103
  864. data/ext/pg_query/include/utils/pg_locale.h +0 -135
  865. data/ext/pg_query/include/utils/pgstat_internal.h +0 -814
  866. data/ext/pg_query/include/utils/pidfile.h +0 -56
  867. data/ext/pg_query/include/utils/plancache.h +0 -236
  868. data/ext/pg_query/include/utils/portal.h +0 -252
  869. data/ext/pg_query/include/utils/queryenvironment.h +0 -74
  870. data/ext/pg_query/include/utils/regproc.h +0 -39
  871. data/ext/pg_query/include/utils/rel.h +0 -712
  872. data/ext/pg_query/include/utils/relcache.h +0 -158
  873. data/ext/pg_query/include/utils/reltrigger.h +0 -81
  874. data/ext/pg_query/include/utils/resowner.h +0 -86
  875. data/ext/pg_query/include/utils/ruleutils.h +0 -52
  876. data/ext/pg_query/include/utils/sharedtuplestore.h +0 -61
  877. data/ext/pg_query/include/utils/snapmgr.h +0 -181
  878. data/ext/pg_query/include/utils/snapshot.h +0 -219
  879. data/ext/pg_query/include/utils/sortsupport.h +0 -391
  880. data/ext/pg_query/include/utils/syscache.h +0 -227
  881. data/ext/pg_query/include/utils/timeout.h +0 -95
  882. data/ext/pg_query/include/utils/timestamp.h +0 -147
  883. data/ext/pg_query/include/utils/tuplesort.h +0 -445
  884. data/ext/pg_query/include/utils/tuplestore.h +0 -91
  885. data/ext/pg_query/include/utils/typcache.h +0 -209
  886. data/ext/pg_query/include/utils/varlena.h +0 -53
  887. data/ext/pg_query/include/utils/wait_event.h +0 -294
  888. data/ext/pg_query/include/utils/xml.h +0 -94
  889. data/ext/pg_query/include/varatt.h +0 -358
  890. data/ext/pg_query/src_backend_postmaster_postmaster.c +0 -2220
  891. data/ext/pg_query/src_port_strnlen.c +0 -39
  892. /data/ext/pg_query/include/{access → postgres/access}/rmgr.h +0 -0
  893. /data/ext/pg_query/include/{commands → postgres/commands}/user.h +0 -0
  894. /data/ext/pg_query/include/{common → postgres/common}/unicode_nonspacing_table.h +0 -0
  895. /data/ext/pg_query/include/{pg_config_ext.h → postgres/pg_config_ext.h} +0 -0
  896. /data/ext/pg_query/include/{postgres_ext.h → postgres/postgres_ext.h} +0 -0
  897. /data/ext/pg_query/include/{utils → postgres/utils}/probes.h +0 -0
  898. /data/ext/pg_query/include/{utils → postgres/utils}/ps_status.h +0 -0
@@ -36,6 +36,8 @@ typedef struct PgQuery__Param PgQuery__Param;
36
36
  typedef struct PgQuery__Aggref PgQuery__Aggref;
37
37
  typedef struct PgQuery__GroupingFunc PgQuery__GroupingFunc;
38
38
  typedef struct PgQuery__WindowFunc PgQuery__WindowFunc;
39
+ typedef struct PgQuery__WindowFuncRunCondition PgQuery__WindowFuncRunCondition;
40
+ typedef struct PgQuery__MergeSupportFunc PgQuery__MergeSupportFunc;
39
41
  typedef struct PgQuery__SubscriptingRef PgQuery__SubscriptingRef;
40
42
  typedef struct PgQuery__FuncExpr PgQuery__FuncExpr;
41
43
  typedef struct PgQuery__NamedArgExpr PgQuery__NamedArgExpr;
@@ -69,8 +71,14 @@ typedef struct PgQuery__JsonReturning PgQuery__JsonReturning;
69
71
  typedef struct PgQuery__JsonValueExpr PgQuery__JsonValueExpr;
70
72
  typedef struct PgQuery__JsonConstructorExpr PgQuery__JsonConstructorExpr;
71
73
  typedef struct PgQuery__JsonIsPredicate PgQuery__JsonIsPredicate;
74
+ typedef struct PgQuery__JsonBehavior PgQuery__JsonBehavior;
75
+ typedef struct PgQuery__JsonExpr PgQuery__JsonExpr;
76
+ typedef struct PgQuery__JsonTablePath PgQuery__JsonTablePath;
77
+ typedef struct PgQuery__JsonTablePathScan PgQuery__JsonTablePathScan;
78
+ typedef struct PgQuery__JsonTableSiblingJoin PgQuery__JsonTableSiblingJoin;
72
79
  typedef struct PgQuery__NullTest PgQuery__NullTest;
73
80
  typedef struct PgQuery__BooleanTest PgQuery__BooleanTest;
81
+ typedef struct PgQuery__MergeAction PgQuery__MergeAction;
74
82
  typedef struct PgQuery__CoerceToDomain PgQuery__CoerceToDomain;
75
83
  typedef struct PgQuery__CoerceToDomainValue PgQuery__CoerceToDomainValue;
76
84
  typedef struct PgQuery__SetToDefault PgQuery__SetToDefault;
@@ -114,6 +122,7 @@ typedef struct PgQuery__PartitionElem PgQuery__PartitionElem;
114
122
  typedef struct PgQuery__PartitionSpec PgQuery__PartitionSpec;
115
123
  typedef struct PgQuery__PartitionBoundSpec PgQuery__PartitionBoundSpec;
116
124
  typedef struct PgQuery__PartitionRangeDatum PgQuery__PartitionRangeDatum;
125
+ typedef struct PgQuery__SinglePartitionSpec PgQuery__SinglePartitionSpec;
117
126
  typedef struct PgQuery__PartitionCmd PgQuery__PartitionCmd;
118
127
  typedef struct PgQuery__RangeTblEntry PgQuery__RangeTblEntry;
119
128
  typedef struct PgQuery__RTEPermissionInfo PgQuery__RTEPermissionInfo;
@@ -131,10 +140,17 @@ typedef struct PgQuery__CTESearchClause PgQuery__CTESearchClause;
131
140
  typedef struct PgQuery__CTECycleClause PgQuery__CTECycleClause;
132
141
  typedef struct PgQuery__CommonTableExpr PgQuery__CommonTableExpr;
133
142
  typedef struct PgQuery__MergeWhenClause PgQuery__MergeWhenClause;
134
- typedef struct PgQuery__MergeAction PgQuery__MergeAction;
135
143
  typedef struct PgQuery__TriggerTransition PgQuery__TriggerTransition;
136
144
  typedef struct PgQuery__JsonOutput PgQuery__JsonOutput;
145
+ typedef struct PgQuery__JsonArgument PgQuery__JsonArgument;
146
+ typedef struct PgQuery__JsonFuncExpr PgQuery__JsonFuncExpr;
147
+ typedef struct PgQuery__JsonTablePathSpec PgQuery__JsonTablePathSpec;
148
+ typedef struct PgQuery__JsonTable PgQuery__JsonTable;
149
+ typedef struct PgQuery__JsonTableColumn PgQuery__JsonTableColumn;
137
150
  typedef struct PgQuery__JsonKeyValue PgQuery__JsonKeyValue;
151
+ typedef struct PgQuery__JsonParseExpr PgQuery__JsonParseExpr;
152
+ typedef struct PgQuery__JsonScalarExpr PgQuery__JsonScalarExpr;
153
+ typedef struct PgQuery__JsonSerializeExpr PgQuery__JsonSerializeExpr;
138
154
  typedef struct PgQuery__JsonObjectConstructor PgQuery__JsonObjectConstructor;
139
155
  typedef struct PgQuery__JsonArrayConstructor PgQuery__JsonArrayConstructor;
140
156
  typedef struct PgQuery__JsonArrayQueryConstructor PgQuery__JsonArrayQueryConstructor;
@@ -275,13 +291,6 @@ typedef struct PgQuery__ScanToken PgQuery__ScanToken;
275
291
 
276
292
  /* --- enums --- */
277
293
 
278
- typedef enum _PgQuery__OverridingKind {
279
- PG_QUERY__OVERRIDING_KIND__OVERRIDING_KIND_UNDEFINED = 0,
280
- PG_QUERY__OVERRIDING_KIND__OVERRIDING_NOT_SET = 1,
281
- PG_QUERY__OVERRIDING_KIND__OVERRIDING_USER_VALUE = 2,
282
- PG_QUERY__OVERRIDING_KIND__OVERRIDING_SYSTEM_VALUE = 3
283
- PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__OVERRIDING_KIND)
284
- } PgQuery__OverridingKind;
285
294
  typedef enum _PgQuery__QuerySource {
286
295
  PG_QUERY__QUERY_SOURCE__QUERY_SOURCE_UNDEFINED = 0,
287
296
  PG_QUERY__QUERY_SOURCE__QSRC_ORIGINAL = 1,
@@ -415,6 +424,22 @@ typedef enum _PgQuery__CTEMaterialize {
415
424
  PG_QUERY__CTEMATERIALIZE__CTEMaterializeNever = 3
416
425
  PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__CTEMATERIALIZE)
417
426
  } PgQuery__CTEMaterialize;
427
+ typedef enum _PgQuery__JsonQuotes {
428
+ PG_QUERY__JSON_QUOTES__JSON_QUOTES_UNDEFINED = 0,
429
+ PG_QUERY__JSON_QUOTES__JS_QUOTES_UNSPEC = 1,
430
+ PG_QUERY__JSON_QUOTES__JS_QUOTES_KEEP = 2,
431
+ PG_QUERY__JSON_QUOTES__JS_QUOTES_OMIT = 3
432
+ PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__JSON_QUOTES)
433
+ } PgQuery__JsonQuotes;
434
+ typedef enum _PgQuery__JsonTableColumnType {
435
+ PG_QUERY__JSON_TABLE_COLUMN_TYPE__JSON_TABLE_COLUMN_TYPE_UNDEFINED = 0,
436
+ PG_QUERY__JSON_TABLE_COLUMN_TYPE__JTC_FOR_ORDINALITY = 1,
437
+ PG_QUERY__JSON_TABLE_COLUMN_TYPE__JTC_REGULAR = 2,
438
+ PG_QUERY__JSON_TABLE_COLUMN_TYPE__JTC_EXISTS = 3,
439
+ PG_QUERY__JSON_TABLE_COLUMN_TYPE__JTC_FORMATTED = 4,
440
+ PG_QUERY__JSON_TABLE_COLUMN_TYPE__JTC_NESTED = 5
441
+ PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__JSON_TABLE_COLUMN_TYPE)
442
+ } PgQuery__JsonTableColumnType;
418
443
  typedef enum _PgQuery__SetOperation {
419
444
  PG_QUERY__SET_OPERATION__SET_OPERATION_UNDEFINED = 0,
420
445
  PG_QUERY__SET_OPERATION__SETOP_NONE = 1,
@@ -493,66 +518,67 @@ typedef enum _PgQuery__AlterTableType {
493
518
  PG_QUERY__ALTER_TABLE_TYPE__AT_CookedColumnDefault = 4,
494
519
  PG_QUERY__ALTER_TABLE_TYPE__AT_DropNotNull = 5,
495
520
  PG_QUERY__ALTER_TABLE_TYPE__AT_SetNotNull = 6,
496
- PG_QUERY__ALTER_TABLE_TYPE__AT_DropExpression = 7,
497
- PG_QUERY__ALTER_TABLE_TYPE__AT_CheckNotNull = 8,
498
- PG_QUERY__ALTER_TABLE_TYPE__AT_SetStatistics = 9,
499
- PG_QUERY__ALTER_TABLE_TYPE__AT_SetOptions = 10,
500
- PG_QUERY__ALTER_TABLE_TYPE__AT_ResetOptions = 11,
501
- PG_QUERY__ALTER_TABLE_TYPE__AT_SetStorage = 12,
502
- PG_QUERY__ALTER_TABLE_TYPE__AT_SetCompression = 13,
503
- PG_QUERY__ALTER_TABLE_TYPE__AT_DropColumn = 14,
504
- PG_QUERY__ALTER_TABLE_TYPE__AT_AddIndex = 15,
505
- PG_QUERY__ALTER_TABLE_TYPE__AT_ReAddIndex = 16,
506
- PG_QUERY__ALTER_TABLE_TYPE__AT_AddConstraint = 17,
507
- PG_QUERY__ALTER_TABLE_TYPE__AT_ReAddConstraint = 18,
508
- PG_QUERY__ALTER_TABLE_TYPE__AT_ReAddDomainConstraint = 19,
509
- PG_QUERY__ALTER_TABLE_TYPE__AT_AlterConstraint = 20,
510
- PG_QUERY__ALTER_TABLE_TYPE__AT_ValidateConstraint = 21,
511
- PG_QUERY__ALTER_TABLE_TYPE__AT_AddIndexConstraint = 22,
512
- PG_QUERY__ALTER_TABLE_TYPE__AT_DropConstraint = 23,
513
- PG_QUERY__ALTER_TABLE_TYPE__AT_ReAddComment = 24,
514
- PG_QUERY__ALTER_TABLE_TYPE__AT_AlterColumnType = 25,
515
- PG_QUERY__ALTER_TABLE_TYPE__AT_AlterColumnGenericOptions = 26,
516
- PG_QUERY__ALTER_TABLE_TYPE__AT_ChangeOwner = 27,
517
- PG_QUERY__ALTER_TABLE_TYPE__AT_ClusterOn = 28,
518
- PG_QUERY__ALTER_TABLE_TYPE__AT_DropCluster = 29,
519
- PG_QUERY__ALTER_TABLE_TYPE__AT_SetLogged = 30,
520
- PG_QUERY__ALTER_TABLE_TYPE__AT_SetUnLogged = 31,
521
- PG_QUERY__ALTER_TABLE_TYPE__AT_DropOids = 32,
522
- PG_QUERY__ALTER_TABLE_TYPE__AT_SetAccessMethod = 33,
523
- PG_QUERY__ALTER_TABLE_TYPE__AT_SetTableSpace = 34,
524
- PG_QUERY__ALTER_TABLE_TYPE__AT_SetRelOptions = 35,
525
- PG_QUERY__ALTER_TABLE_TYPE__AT_ResetRelOptions = 36,
526
- PG_QUERY__ALTER_TABLE_TYPE__AT_ReplaceRelOptions = 37,
527
- PG_QUERY__ALTER_TABLE_TYPE__AT_EnableTrig = 38,
528
- PG_QUERY__ALTER_TABLE_TYPE__AT_EnableAlwaysTrig = 39,
529
- PG_QUERY__ALTER_TABLE_TYPE__AT_EnableReplicaTrig = 40,
530
- PG_QUERY__ALTER_TABLE_TYPE__AT_DisableTrig = 41,
531
- PG_QUERY__ALTER_TABLE_TYPE__AT_EnableTrigAll = 42,
532
- PG_QUERY__ALTER_TABLE_TYPE__AT_DisableTrigAll = 43,
533
- PG_QUERY__ALTER_TABLE_TYPE__AT_EnableTrigUser = 44,
534
- PG_QUERY__ALTER_TABLE_TYPE__AT_DisableTrigUser = 45,
535
- PG_QUERY__ALTER_TABLE_TYPE__AT_EnableRule = 46,
536
- PG_QUERY__ALTER_TABLE_TYPE__AT_EnableAlwaysRule = 47,
537
- PG_QUERY__ALTER_TABLE_TYPE__AT_EnableReplicaRule = 48,
538
- PG_QUERY__ALTER_TABLE_TYPE__AT_DisableRule = 49,
539
- PG_QUERY__ALTER_TABLE_TYPE__AT_AddInherit = 50,
540
- PG_QUERY__ALTER_TABLE_TYPE__AT_DropInherit = 51,
541
- PG_QUERY__ALTER_TABLE_TYPE__AT_AddOf = 52,
542
- PG_QUERY__ALTER_TABLE_TYPE__AT_DropOf = 53,
543
- PG_QUERY__ALTER_TABLE_TYPE__AT_ReplicaIdentity = 54,
544
- PG_QUERY__ALTER_TABLE_TYPE__AT_EnableRowSecurity = 55,
545
- PG_QUERY__ALTER_TABLE_TYPE__AT_DisableRowSecurity = 56,
546
- PG_QUERY__ALTER_TABLE_TYPE__AT_ForceRowSecurity = 57,
547
- PG_QUERY__ALTER_TABLE_TYPE__AT_NoForceRowSecurity = 58,
548
- PG_QUERY__ALTER_TABLE_TYPE__AT_GenericOptions = 59,
549
- PG_QUERY__ALTER_TABLE_TYPE__AT_AttachPartition = 60,
550
- PG_QUERY__ALTER_TABLE_TYPE__AT_DetachPartition = 61,
551
- PG_QUERY__ALTER_TABLE_TYPE__AT_DetachPartitionFinalize = 62,
552
- PG_QUERY__ALTER_TABLE_TYPE__AT_AddIdentity = 63,
553
- PG_QUERY__ALTER_TABLE_TYPE__AT_SetIdentity = 64,
554
- PG_QUERY__ALTER_TABLE_TYPE__AT_DropIdentity = 65,
555
- PG_QUERY__ALTER_TABLE_TYPE__AT_ReAddStatistics = 66
521
+ PG_QUERY__ALTER_TABLE_TYPE__AT_SetExpression = 7,
522
+ PG_QUERY__ALTER_TABLE_TYPE__AT_DropExpression = 8,
523
+ PG_QUERY__ALTER_TABLE_TYPE__AT_CheckNotNull = 9,
524
+ PG_QUERY__ALTER_TABLE_TYPE__AT_SetStatistics = 10,
525
+ PG_QUERY__ALTER_TABLE_TYPE__AT_SetOptions = 11,
526
+ PG_QUERY__ALTER_TABLE_TYPE__AT_ResetOptions = 12,
527
+ PG_QUERY__ALTER_TABLE_TYPE__AT_SetStorage = 13,
528
+ PG_QUERY__ALTER_TABLE_TYPE__AT_SetCompression = 14,
529
+ PG_QUERY__ALTER_TABLE_TYPE__AT_DropColumn = 15,
530
+ PG_QUERY__ALTER_TABLE_TYPE__AT_AddIndex = 16,
531
+ PG_QUERY__ALTER_TABLE_TYPE__AT_ReAddIndex = 17,
532
+ PG_QUERY__ALTER_TABLE_TYPE__AT_AddConstraint = 18,
533
+ PG_QUERY__ALTER_TABLE_TYPE__AT_ReAddConstraint = 19,
534
+ PG_QUERY__ALTER_TABLE_TYPE__AT_ReAddDomainConstraint = 20,
535
+ PG_QUERY__ALTER_TABLE_TYPE__AT_AlterConstraint = 21,
536
+ PG_QUERY__ALTER_TABLE_TYPE__AT_ValidateConstraint = 22,
537
+ PG_QUERY__ALTER_TABLE_TYPE__AT_AddIndexConstraint = 23,
538
+ PG_QUERY__ALTER_TABLE_TYPE__AT_DropConstraint = 24,
539
+ PG_QUERY__ALTER_TABLE_TYPE__AT_ReAddComment = 25,
540
+ PG_QUERY__ALTER_TABLE_TYPE__AT_AlterColumnType = 26,
541
+ PG_QUERY__ALTER_TABLE_TYPE__AT_AlterColumnGenericOptions = 27,
542
+ PG_QUERY__ALTER_TABLE_TYPE__AT_ChangeOwner = 28,
543
+ PG_QUERY__ALTER_TABLE_TYPE__AT_ClusterOn = 29,
544
+ PG_QUERY__ALTER_TABLE_TYPE__AT_DropCluster = 30,
545
+ PG_QUERY__ALTER_TABLE_TYPE__AT_SetLogged = 31,
546
+ PG_QUERY__ALTER_TABLE_TYPE__AT_SetUnLogged = 32,
547
+ PG_QUERY__ALTER_TABLE_TYPE__AT_DropOids = 33,
548
+ PG_QUERY__ALTER_TABLE_TYPE__AT_SetAccessMethod = 34,
549
+ PG_QUERY__ALTER_TABLE_TYPE__AT_SetTableSpace = 35,
550
+ PG_QUERY__ALTER_TABLE_TYPE__AT_SetRelOptions = 36,
551
+ PG_QUERY__ALTER_TABLE_TYPE__AT_ResetRelOptions = 37,
552
+ PG_QUERY__ALTER_TABLE_TYPE__AT_ReplaceRelOptions = 38,
553
+ PG_QUERY__ALTER_TABLE_TYPE__AT_EnableTrig = 39,
554
+ PG_QUERY__ALTER_TABLE_TYPE__AT_EnableAlwaysTrig = 40,
555
+ PG_QUERY__ALTER_TABLE_TYPE__AT_EnableReplicaTrig = 41,
556
+ PG_QUERY__ALTER_TABLE_TYPE__AT_DisableTrig = 42,
557
+ PG_QUERY__ALTER_TABLE_TYPE__AT_EnableTrigAll = 43,
558
+ PG_QUERY__ALTER_TABLE_TYPE__AT_DisableTrigAll = 44,
559
+ PG_QUERY__ALTER_TABLE_TYPE__AT_EnableTrigUser = 45,
560
+ PG_QUERY__ALTER_TABLE_TYPE__AT_DisableTrigUser = 46,
561
+ PG_QUERY__ALTER_TABLE_TYPE__AT_EnableRule = 47,
562
+ PG_QUERY__ALTER_TABLE_TYPE__AT_EnableAlwaysRule = 48,
563
+ PG_QUERY__ALTER_TABLE_TYPE__AT_EnableReplicaRule = 49,
564
+ PG_QUERY__ALTER_TABLE_TYPE__AT_DisableRule = 50,
565
+ PG_QUERY__ALTER_TABLE_TYPE__AT_AddInherit = 51,
566
+ PG_QUERY__ALTER_TABLE_TYPE__AT_DropInherit = 52,
567
+ PG_QUERY__ALTER_TABLE_TYPE__AT_AddOf = 53,
568
+ PG_QUERY__ALTER_TABLE_TYPE__AT_DropOf = 54,
569
+ PG_QUERY__ALTER_TABLE_TYPE__AT_ReplicaIdentity = 55,
570
+ PG_QUERY__ALTER_TABLE_TYPE__AT_EnableRowSecurity = 56,
571
+ PG_QUERY__ALTER_TABLE_TYPE__AT_DisableRowSecurity = 57,
572
+ PG_QUERY__ALTER_TABLE_TYPE__AT_ForceRowSecurity = 58,
573
+ PG_QUERY__ALTER_TABLE_TYPE__AT_NoForceRowSecurity = 59,
574
+ PG_QUERY__ALTER_TABLE_TYPE__AT_GenericOptions = 60,
575
+ PG_QUERY__ALTER_TABLE_TYPE__AT_AttachPartition = 61,
576
+ PG_QUERY__ALTER_TABLE_TYPE__AT_DetachPartition = 62,
577
+ PG_QUERY__ALTER_TABLE_TYPE__AT_DetachPartitionFinalize = 63,
578
+ PG_QUERY__ALTER_TABLE_TYPE__AT_AddIdentity = 64,
579
+ PG_QUERY__ALTER_TABLE_TYPE__AT_SetIdentity = 65,
580
+ PG_QUERY__ALTER_TABLE_TYPE__AT_DropIdentity = 66,
581
+ PG_QUERY__ALTER_TABLE_TYPE__AT_ReAddStatistics = 67
556
582
  PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__ALTER_TABLE_TYPE)
557
583
  } PgQuery__AlterTableType;
558
584
  typedef enum _PgQuery__GrantTargetType {
@@ -696,6 +722,13 @@ typedef enum _PgQuery__AlterSubscriptionType {
696
722
  PG_QUERY__ALTER_SUBSCRIPTION_TYPE__ALTER_SUBSCRIPTION_SKIP = 8
697
723
  PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__ALTER_SUBSCRIPTION_TYPE)
698
724
  } PgQuery__AlterSubscriptionType;
725
+ typedef enum _PgQuery__OverridingKind {
726
+ PG_QUERY__OVERRIDING_KIND__OVERRIDING_KIND_UNDEFINED = 0,
727
+ PG_QUERY__OVERRIDING_KIND__OVERRIDING_NOT_SET = 1,
728
+ PG_QUERY__OVERRIDING_KIND__OVERRIDING_USER_VALUE = 2,
729
+ PG_QUERY__OVERRIDING_KIND__OVERRIDING_SYSTEM_VALUE = 3
730
+ PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__OVERRIDING_KIND)
731
+ } PgQuery__OverridingKind;
699
732
  typedef enum _PgQuery__OnCommitAction {
700
733
  PG_QUERY__ON_COMMIT_ACTION__ON_COMMIT_ACTION_UNDEFINED = 0,
701
734
  PG_QUERY__ON_COMMIT_ACTION__ONCOMMIT_NOOP = 1,
@@ -704,6 +737,12 @@ typedef enum _PgQuery__OnCommitAction {
704
737
  PG_QUERY__ON_COMMIT_ACTION__ONCOMMIT_DROP = 4
705
738
  PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__ON_COMMIT_ACTION)
706
739
  } PgQuery__OnCommitAction;
740
+ typedef enum _PgQuery__TableFuncType {
741
+ PG_QUERY__TABLE_FUNC_TYPE__TABLE_FUNC_TYPE_UNDEFINED = 0,
742
+ PG_QUERY__TABLE_FUNC_TYPE__TFT_XMLTABLE = 1,
743
+ PG_QUERY__TABLE_FUNC_TYPE__TFT_JSON_TABLE = 2
744
+ PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__TABLE_FUNC_TYPE)
745
+ } PgQuery__TableFuncType;
707
746
  typedef enum _PgQuery__ParamKind {
708
747
  PG_QUERY__PARAM_KIND__PARAM_KIND_UNDEFINED = 0,
709
748
  PG_QUERY__PARAM_KIND__PARAM_EXTERN = 1,
@@ -820,7 +859,10 @@ typedef enum _PgQuery__JsonConstructorType {
820
859
  PG_QUERY__JSON_CONSTRUCTOR_TYPE__JSCTOR_JSON_OBJECT = 1,
821
860
  PG_QUERY__JSON_CONSTRUCTOR_TYPE__JSCTOR_JSON_ARRAY = 2,
822
861
  PG_QUERY__JSON_CONSTRUCTOR_TYPE__JSCTOR_JSON_OBJECTAGG = 3,
823
- PG_QUERY__JSON_CONSTRUCTOR_TYPE__JSCTOR_JSON_ARRAYAGG = 4
862
+ PG_QUERY__JSON_CONSTRUCTOR_TYPE__JSCTOR_JSON_ARRAYAGG = 4,
863
+ PG_QUERY__JSON_CONSTRUCTOR_TYPE__JSCTOR_JSON_PARSE = 5,
864
+ PG_QUERY__JSON_CONSTRUCTOR_TYPE__JSCTOR_JSON_SCALAR = 6,
865
+ PG_QUERY__JSON_CONSTRUCTOR_TYPE__JSCTOR_JSON_SERIALIZE = 7
824
866
  PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__JSON_CONSTRUCTOR_TYPE)
825
867
  } PgQuery__JsonConstructorType;
826
868
  typedef enum _PgQuery__JsonValueType {
@@ -831,6 +873,35 @@ typedef enum _PgQuery__JsonValueType {
831
873
  PG_QUERY__JSON_VALUE_TYPE__JS_TYPE_SCALAR = 4
832
874
  PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__JSON_VALUE_TYPE)
833
875
  } PgQuery__JsonValueType;
876
+ typedef enum _PgQuery__JsonWrapper {
877
+ PG_QUERY__JSON_WRAPPER__JSON_WRAPPER_UNDEFINED = 0,
878
+ PG_QUERY__JSON_WRAPPER__JSW_UNSPEC = 1,
879
+ PG_QUERY__JSON_WRAPPER__JSW_NONE = 2,
880
+ PG_QUERY__JSON_WRAPPER__JSW_CONDITIONAL = 3,
881
+ PG_QUERY__JSON_WRAPPER__JSW_UNCONDITIONAL = 4
882
+ PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__JSON_WRAPPER)
883
+ } PgQuery__JsonWrapper;
884
+ typedef enum _PgQuery__JsonBehaviorType {
885
+ PG_QUERY__JSON_BEHAVIOR_TYPE__JSON_BEHAVIOR_TYPE_UNDEFINED = 0,
886
+ PG_QUERY__JSON_BEHAVIOR_TYPE__JSON_BEHAVIOR_NULL = 1,
887
+ PG_QUERY__JSON_BEHAVIOR_TYPE__JSON_BEHAVIOR_ERROR = 2,
888
+ PG_QUERY__JSON_BEHAVIOR_TYPE__JSON_BEHAVIOR_EMPTY = 3,
889
+ PG_QUERY__JSON_BEHAVIOR_TYPE__JSON_BEHAVIOR_TRUE = 4,
890
+ PG_QUERY__JSON_BEHAVIOR_TYPE__JSON_BEHAVIOR_FALSE = 5,
891
+ PG_QUERY__JSON_BEHAVIOR_TYPE__JSON_BEHAVIOR_UNKNOWN = 6,
892
+ PG_QUERY__JSON_BEHAVIOR_TYPE__JSON_BEHAVIOR_EMPTY_ARRAY = 7,
893
+ PG_QUERY__JSON_BEHAVIOR_TYPE__JSON_BEHAVIOR_EMPTY_OBJECT = 8,
894
+ PG_QUERY__JSON_BEHAVIOR_TYPE__JSON_BEHAVIOR_DEFAULT = 9
895
+ PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__JSON_BEHAVIOR_TYPE)
896
+ } PgQuery__JsonBehaviorType;
897
+ typedef enum _PgQuery__JsonExprOp {
898
+ PG_QUERY__JSON_EXPR_OP__JSON_EXPR_OP_UNDEFINED = 0,
899
+ PG_QUERY__JSON_EXPR_OP__JSON_EXISTS_OP = 1,
900
+ PG_QUERY__JSON_EXPR_OP__JSON_QUERY_OP = 2,
901
+ PG_QUERY__JSON_EXPR_OP__JSON_VALUE_OP = 3,
902
+ PG_QUERY__JSON_EXPR_OP__JSON_TABLE_OP = 4
903
+ PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__JSON_EXPR_OP)
904
+ } PgQuery__JsonExprOp;
834
905
  typedef enum _PgQuery__NullTestType {
835
906
  PG_QUERY__NULL_TEST_TYPE__NULL_TEST_TYPE_UNDEFINED = 0,
836
907
  PG_QUERY__NULL_TEST_TYPE__IS_NULL = 1,
@@ -847,6 +918,13 @@ typedef enum _PgQuery__BoolTestType {
847
918
  PG_QUERY__BOOL_TEST_TYPE__IS_NOT_UNKNOWN = 6
848
919
  PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__BOOL_TEST_TYPE)
849
920
  } PgQuery__BoolTestType;
921
+ typedef enum _PgQuery__MergeMatchKind {
922
+ PG_QUERY__MERGE_MATCH_KIND__MERGE_MATCH_KIND_UNDEFINED = 0,
923
+ PG_QUERY__MERGE_MATCH_KIND__MERGE_WHEN_MATCHED = 1,
924
+ PG_QUERY__MERGE_MATCH_KIND__MERGE_WHEN_NOT_MATCHED_BY_SOURCE = 2,
925
+ PG_QUERY__MERGE_MATCH_KIND__MERGE_WHEN_NOT_MATCHED_BY_TARGET = 3
926
+ PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__MERGE_MATCH_KIND)
927
+ } PgQuery__MergeMatchKind;
850
928
  typedef enum _PgQuery__CmdType {
851
929
  PG_QUERY__CMD_TYPE__CMD_TYPE_UNDEFINED = 0,
852
930
  PG_QUERY__CMD_TYPE__CMD_UNKNOWN = 1,
@@ -1124,420 +1202,440 @@ typedef enum _PgQuery__Token {
1124
1202
  PG_QUERY__TOKEN__COMMITTED = 342,
1125
1203
  PG_QUERY__TOKEN__COMPRESSION = 343,
1126
1204
  PG_QUERY__TOKEN__CONCURRENTLY = 344,
1127
- PG_QUERY__TOKEN__CONFIGURATION = 345,
1128
- PG_QUERY__TOKEN__CONFLICT = 346,
1129
- PG_QUERY__TOKEN__CONNECTION = 347,
1130
- PG_QUERY__TOKEN__CONSTRAINT = 348,
1131
- PG_QUERY__TOKEN__CONSTRAINTS = 349,
1132
- PG_QUERY__TOKEN__CONTENT_P = 350,
1133
- PG_QUERY__TOKEN__CONTINUE_P = 351,
1134
- PG_QUERY__TOKEN__CONVERSION_P = 352,
1135
- PG_QUERY__TOKEN__COPY = 353,
1136
- PG_QUERY__TOKEN__COST = 354,
1137
- PG_QUERY__TOKEN__CREATE = 355,
1138
- PG_QUERY__TOKEN__CROSS = 356,
1139
- PG_QUERY__TOKEN__CSV = 357,
1140
- PG_QUERY__TOKEN__CUBE = 358,
1141
- PG_QUERY__TOKEN__CURRENT_P = 359,
1142
- PG_QUERY__TOKEN__CURRENT_CATALOG = 360,
1143
- PG_QUERY__TOKEN__CURRENT_DATE = 361,
1144
- PG_QUERY__TOKEN__CURRENT_ROLE = 362,
1145
- PG_QUERY__TOKEN__CURRENT_SCHEMA = 363,
1146
- PG_QUERY__TOKEN__CURRENT_TIME = 364,
1147
- PG_QUERY__TOKEN__CURRENT_TIMESTAMP = 365,
1148
- PG_QUERY__TOKEN__CURRENT_USER = 366,
1149
- PG_QUERY__TOKEN__CURSOR = 367,
1150
- PG_QUERY__TOKEN__CYCLE = 368,
1151
- PG_QUERY__TOKEN__DATA_P = 369,
1152
- PG_QUERY__TOKEN__DATABASE = 370,
1153
- PG_QUERY__TOKEN__DAY_P = 371,
1154
- PG_QUERY__TOKEN__DEALLOCATE = 372,
1155
- PG_QUERY__TOKEN__DEC = 373,
1156
- PG_QUERY__TOKEN__DECIMAL_P = 374,
1157
- PG_QUERY__TOKEN__DECLARE = 375,
1158
- PG_QUERY__TOKEN__DEFAULT = 376,
1159
- PG_QUERY__TOKEN__DEFAULTS = 377,
1160
- PG_QUERY__TOKEN__DEFERRABLE = 378,
1161
- PG_QUERY__TOKEN__DEFERRED = 379,
1162
- PG_QUERY__TOKEN__DEFINER = 380,
1163
- PG_QUERY__TOKEN__DELETE_P = 381,
1164
- PG_QUERY__TOKEN__DELIMITER = 382,
1165
- PG_QUERY__TOKEN__DELIMITERS = 383,
1166
- PG_QUERY__TOKEN__DEPENDS = 384,
1167
- PG_QUERY__TOKEN__DEPTH = 385,
1168
- PG_QUERY__TOKEN__DESC = 386,
1169
- PG_QUERY__TOKEN__DETACH = 387,
1170
- PG_QUERY__TOKEN__DICTIONARY = 388,
1171
- PG_QUERY__TOKEN__DISABLE_P = 389,
1172
- PG_QUERY__TOKEN__DISCARD = 390,
1173
- PG_QUERY__TOKEN__DISTINCT = 391,
1174
- PG_QUERY__TOKEN__DO = 392,
1175
- PG_QUERY__TOKEN__DOCUMENT_P = 393,
1176
- PG_QUERY__TOKEN__DOMAIN_P = 394,
1177
- PG_QUERY__TOKEN__DOUBLE_P = 395,
1178
- PG_QUERY__TOKEN__DROP = 396,
1179
- PG_QUERY__TOKEN__EACH = 397,
1180
- PG_QUERY__TOKEN__ELSE = 398,
1181
- PG_QUERY__TOKEN__ENABLE_P = 399,
1182
- PG_QUERY__TOKEN__ENCODING = 400,
1183
- PG_QUERY__TOKEN__ENCRYPTED = 401,
1184
- PG_QUERY__TOKEN__END_P = 402,
1185
- PG_QUERY__TOKEN__ENUM_P = 403,
1186
- PG_QUERY__TOKEN__ESCAPE = 404,
1187
- PG_QUERY__TOKEN__EVENT = 405,
1188
- PG_QUERY__TOKEN__EXCEPT = 406,
1189
- PG_QUERY__TOKEN__EXCLUDE = 407,
1190
- PG_QUERY__TOKEN__EXCLUDING = 408,
1191
- PG_QUERY__TOKEN__EXCLUSIVE = 409,
1192
- PG_QUERY__TOKEN__EXECUTE = 410,
1193
- PG_QUERY__TOKEN__EXISTS = 411,
1194
- PG_QUERY__TOKEN__EXPLAIN = 412,
1195
- PG_QUERY__TOKEN__EXPRESSION = 413,
1196
- PG_QUERY__TOKEN__EXTENSION = 414,
1197
- PG_QUERY__TOKEN__EXTERNAL = 415,
1198
- PG_QUERY__TOKEN__EXTRACT = 416,
1199
- PG_QUERY__TOKEN__FALSE_P = 417,
1200
- PG_QUERY__TOKEN__FAMILY = 418,
1201
- PG_QUERY__TOKEN__FETCH = 419,
1202
- PG_QUERY__TOKEN__FILTER = 420,
1203
- PG_QUERY__TOKEN__FINALIZE = 421,
1204
- PG_QUERY__TOKEN__FIRST_P = 422,
1205
- PG_QUERY__TOKEN__FLOAT_P = 423,
1206
- PG_QUERY__TOKEN__FOLLOWING = 424,
1207
- PG_QUERY__TOKEN__FOR = 425,
1208
- PG_QUERY__TOKEN__FORCE = 426,
1209
- PG_QUERY__TOKEN__FOREIGN = 427,
1210
- PG_QUERY__TOKEN__FORMAT = 428,
1211
- PG_QUERY__TOKEN__FORWARD = 429,
1212
- PG_QUERY__TOKEN__FREEZE = 430,
1213
- PG_QUERY__TOKEN__FROM = 431,
1214
- PG_QUERY__TOKEN__FULL = 432,
1215
- PG_QUERY__TOKEN__FUNCTION = 433,
1216
- PG_QUERY__TOKEN__FUNCTIONS = 434,
1217
- PG_QUERY__TOKEN__GENERATED = 435,
1218
- PG_QUERY__TOKEN__GLOBAL = 436,
1219
- PG_QUERY__TOKEN__GRANT = 437,
1220
- PG_QUERY__TOKEN__GRANTED = 438,
1221
- PG_QUERY__TOKEN__GREATEST = 439,
1222
- PG_QUERY__TOKEN__GROUP_P = 440,
1223
- PG_QUERY__TOKEN__GROUPING = 441,
1224
- PG_QUERY__TOKEN__GROUPS = 442,
1225
- PG_QUERY__TOKEN__HANDLER = 443,
1226
- PG_QUERY__TOKEN__HAVING = 444,
1227
- PG_QUERY__TOKEN__HEADER_P = 445,
1228
- PG_QUERY__TOKEN__HOLD = 446,
1229
- PG_QUERY__TOKEN__HOUR_P = 447,
1230
- PG_QUERY__TOKEN__IDENTITY_P = 448,
1231
- PG_QUERY__TOKEN__IF_P = 449,
1232
- PG_QUERY__TOKEN__ILIKE = 450,
1233
- PG_QUERY__TOKEN__IMMEDIATE = 451,
1234
- PG_QUERY__TOKEN__IMMUTABLE = 452,
1235
- PG_QUERY__TOKEN__IMPLICIT_P = 453,
1236
- PG_QUERY__TOKEN__IMPORT_P = 454,
1237
- PG_QUERY__TOKEN__IN_P = 455,
1238
- PG_QUERY__TOKEN__INCLUDE = 456,
1239
- PG_QUERY__TOKEN__INCLUDING = 457,
1240
- PG_QUERY__TOKEN__INCREMENT = 458,
1241
- PG_QUERY__TOKEN__INDENT = 459,
1242
- PG_QUERY__TOKEN__INDEX = 460,
1243
- PG_QUERY__TOKEN__INDEXES = 461,
1244
- PG_QUERY__TOKEN__INHERIT = 462,
1245
- PG_QUERY__TOKEN__INHERITS = 463,
1246
- PG_QUERY__TOKEN__INITIALLY = 464,
1247
- PG_QUERY__TOKEN__INLINE_P = 465,
1248
- PG_QUERY__TOKEN__INNER_P = 466,
1249
- PG_QUERY__TOKEN__INOUT = 467,
1250
- PG_QUERY__TOKEN__INPUT_P = 468,
1251
- PG_QUERY__TOKEN__INSENSITIVE = 469,
1252
- PG_QUERY__TOKEN__INSERT = 470,
1253
- PG_QUERY__TOKEN__INSTEAD = 471,
1254
- PG_QUERY__TOKEN__INT_P = 472,
1255
- PG_QUERY__TOKEN__INTEGER = 473,
1256
- PG_QUERY__TOKEN__INTERSECT = 474,
1257
- PG_QUERY__TOKEN__INTERVAL = 475,
1258
- PG_QUERY__TOKEN__INTO = 476,
1259
- PG_QUERY__TOKEN__INVOKER = 477,
1260
- PG_QUERY__TOKEN__IS = 478,
1261
- PG_QUERY__TOKEN__ISNULL = 479,
1262
- PG_QUERY__TOKEN__ISOLATION = 480,
1263
- PG_QUERY__TOKEN__JOIN = 481,
1264
- PG_QUERY__TOKEN__JSON = 482,
1265
- PG_QUERY__TOKEN__JSON_ARRAY = 483,
1266
- PG_QUERY__TOKEN__JSON_ARRAYAGG = 484,
1267
- PG_QUERY__TOKEN__JSON_OBJECT = 485,
1268
- PG_QUERY__TOKEN__JSON_OBJECTAGG = 486,
1269
- PG_QUERY__TOKEN__KEY = 487,
1270
- PG_QUERY__TOKEN__KEYS = 488,
1271
- PG_QUERY__TOKEN__LABEL = 489,
1272
- PG_QUERY__TOKEN__LANGUAGE = 490,
1273
- PG_QUERY__TOKEN__LARGE_P = 491,
1274
- PG_QUERY__TOKEN__LAST_P = 492,
1275
- PG_QUERY__TOKEN__LATERAL_P = 493,
1276
- PG_QUERY__TOKEN__LEADING = 494,
1277
- PG_QUERY__TOKEN__LEAKPROOF = 495,
1278
- PG_QUERY__TOKEN__LEAST = 496,
1279
- PG_QUERY__TOKEN__LEFT = 497,
1280
- PG_QUERY__TOKEN__LEVEL = 498,
1281
- PG_QUERY__TOKEN__LIKE = 499,
1282
- PG_QUERY__TOKEN__LIMIT = 500,
1283
- PG_QUERY__TOKEN__LISTEN = 501,
1284
- PG_QUERY__TOKEN__LOAD = 502,
1285
- PG_QUERY__TOKEN__LOCAL = 503,
1286
- PG_QUERY__TOKEN__LOCALTIME = 504,
1287
- PG_QUERY__TOKEN__LOCALTIMESTAMP = 505,
1288
- PG_QUERY__TOKEN__LOCATION = 506,
1289
- PG_QUERY__TOKEN__LOCK_P = 507,
1290
- PG_QUERY__TOKEN__LOCKED = 508,
1291
- PG_QUERY__TOKEN__LOGGED = 509,
1292
- PG_QUERY__TOKEN__MAPPING = 510,
1293
- PG_QUERY__TOKEN__MATCH = 511,
1294
- PG_QUERY__TOKEN__MATCHED = 512,
1295
- PG_QUERY__TOKEN__MATERIALIZED = 513,
1296
- PG_QUERY__TOKEN__MAXVALUE = 514,
1297
- PG_QUERY__TOKEN__MERGE = 515,
1298
- PG_QUERY__TOKEN__METHOD = 516,
1299
- PG_QUERY__TOKEN__MINUTE_P = 517,
1300
- PG_QUERY__TOKEN__MINVALUE = 518,
1301
- PG_QUERY__TOKEN__MODE = 519,
1302
- PG_QUERY__TOKEN__MONTH_P = 520,
1303
- PG_QUERY__TOKEN__MOVE = 521,
1304
- PG_QUERY__TOKEN__NAME_P = 522,
1305
- PG_QUERY__TOKEN__NAMES = 523,
1306
- PG_QUERY__TOKEN__NATIONAL = 524,
1307
- PG_QUERY__TOKEN__NATURAL = 525,
1308
- PG_QUERY__TOKEN__NCHAR = 526,
1309
- PG_QUERY__TOKEN__NEW = 527,
1310
- PG_QUERY__TOKEN__NEXT = 528,
1311
- PG_QUERY__TOKEN__NFC = 529,
1312
- PG_QUERY__TOKEN__NFD = 530,
1313
- PG_QUERY__TOKEN__NFKC = 531,
1314
- PG_QUERY__TOKEN__NFKD = 532,
1315
- PG_QUERY__TOKEN__NO = 533,
1316
- PG_QUERY__TOKEN__NONE = 534,
1317
- PG_QUERY__TOKEN__NORMALIZE = 535,
1318
- PG_QUERY__TOKEN__NORMALIZED = 536,
1319
- PG_QUERY__TOKEN__NOT = 537,
1320
- PG_QUERY__TOKEN__NOTHING = 538,
1321
- PG_QUERY__TOKEN__NOTIFY = 539,
1322
- PG_QUERY__TOKEN__NOTNULL = 540,
1323
- PG_QUERY__TOKEN__NOWAIT = 541,
1324
- PG_QUERY__TOKEN__NULL_P = 542,
1325
- PG_QUERY__TOKEN__NULLIF = 543,
1326
- PG_QUERY__TOKEN__NULLS_P = 544,
1327
- PG_QUERY__TOKEN__NUMERIC = 545,
1328
- PG_QUERY__TOKEN__OBJECT_P = 546,
1329
- PG_QUERY__TOKEN__OF = 547,
1330
- PG_QUERY__TOKEN__OFF = 548,
1331
- PG_QUERY__TOKEN__OFFSET = 549,
1332
- PG_QUERY__TOKEN__OIDS = 550,
1333
- PG_QUERY__TOKEN__OLD = 551,
1334
- PG_QUERY__TOKEN__ON = 552,
1335
- PG_QUERY__TOKEN__ONLY = 553,
1336
- PG_QUERY__TOKEN__OPERATOR = 554,
1337
- PG_QUERY__TOKEN__OPTION = 555,
1338
- PG_QUERY__TOKEN__OPTIONS = 556,
1339
- PG_QUERY__TOKEN__OR = 557,
1340
- PG_QUERY__TOKEN__ORDER = 558,
1341
- PG_QUERY__TOKEN__ORDINALITY = 559,
1342
- PG_QUERY__TOKEN__OTHERS = 560,
1343
- PG_QUERY__TOKEN__OUT_P = 561,
1344
- PG_QUERY__TOKEN__OUTER_P = 562,
1345
- PG_QUERY__TOKEN__OVER = 563,
1346
- PG_QUERY__TOKEN__OVERLAPS = 564,
1347
- PG_QUERY__TOKEN__OVERLAY = 565,
1348
- PG_QUERY__TOKEN__OVERRIDING = 566,
1349
- PG_QUERY__TOKEN__OWNED = 567,
1350
- PG_QUERY__TOKEN__OWNER = 568,
1351
- PG_QUERY__TOKEN__PARALLEL = 569,
1352
- PG_QUERY__TOKEN__PARAMETER = 570,
1353
- PG_QUERY__TOKEN__PARSER = 571,
1354
- PG_QUERY__TOKEN__PARTIAL = 572,
1355
- PG_QUERY__TOKEN__PARTITION = 573,
1356
- PG_QUERY__TOKEN__PASSING = 574,
1357
- PG_QUERY__TOKEN__PASSWORD = 575,
1358
- PG_QUERY__TOKEN__PLACING = 576,
1359
- PG_QUERY__TOKEN__PLANS = 577,
1360
- PG_QUERY__TOKEN__POLICY = 578,
1361
- PG_QUERY__TOKEN__POSITION = 579,
1362
- PG_QUERY__TOKEN__PRECEDING = 580,
1363
- PG_QUERY__TOKEN__PRECISION = 581,
1364
- PG_QUERY__TOKEN__PRESERVE = 582,
1365
- PG_QUERY__TOKEN__PREPARE = 583,
1366
- PG_QUERY__TOKEN__PREPARED = 584,
1367
- PG_QUERY__TOKEN__PRIMARY = 585,
1368
- PG_QUERY__TOKEN__PRIOR = 586,
1369
- PG_QUERY__TOKEN__PRIVILEGES = 587,
1370
- PG_QUERY__TOKEN__PROCEDURAL = 588,
1371
- PG_QUERY__TOKEN__PROCEDURE = 589,
1372
- PG_QUERY__TOKEN__PROCEDURES = 590,
1373
- PG_QUERY__TOKEN__PROGRAM = 591,
1374
- PG_QUERY__TOKEN__PUBLICATION = 592,
1375
- PG_QUERY__TOKEN__QUOTE = 593,
1376
- PG_QUERY__TOKEN__RANGE = 594,
1377
- PG_QUERY__TOKEN__READ = 595,
1378
- PG_QUERY__TOKEN__REAL = 596,
1379
- PG_QUERY__TOKEN__REASSIGN = 597,
1380
- PG_QUERY__TOKEN__RECHECK = 598,
1381
- PG_QUERY__TOKEN__RECURSIVE = 599,
1382
- PG_QUERY__TOKEN__REF_P = 600,
1383
- PG_QUERY__TOKEN__REFERENCES = 601,
1384
- PG_QUERY__TOKEN__REFERENCING = 602,
1385
- PG_QUERY__TOKEN__REFRESH = 603,
1386
- PG_QUERY__TOKEN__REINDEX = 604,
1387
- PG_QUERY__TOKEN__RELATIVE_P = 605,
1388
- PG_QUERY__TOKEN__RELEASE = 606,
1389
- PG_QUERY__TOKEN__RENAME = 607,
1390
- PG_QUERY__TOKEN__REPEATABLE = 608,
1391
- PG_QUERY__TOKEN__REPLACE = 609,
1392
- PG_QUERY__TOKEN__REPLICA = 610,
1393
- PG_QUERY__TOKEN__RESET = 611,
1394
- PG_QUERY__TOKEN__RESTART = 612,
1395
- PG_QUERY__TOKEN__RESTRICT = 613,
1396
- PG_QUERY__TOKEN__RETURN = 614,
1397
- PG_QUERY__TOKEN__RETURNING = 615,
1398
- PG_QUERY__TOKEN__RETURNS = 616,
1399
- PG_QUERY__TOKEN__REVOKE = 617,
1400
- PG_QUERY__TOKEN__RIGHT = 618,
1401
- PG_QUERY__TOKEN__ROLE = 619,
1402
- PG_QUERY__TOKEN__ROLLBACK = 620,
1403
- PG_QUERY__TOKEN__ROLLUP = 621,
1404
- PG_QUERY__TOKEN__ROUTINE = 622,
1405
- PG_QUERY__TOKEN__ROUTINES = 623,
1406
- PG_QUERY__TOKEN__ROW = 624,
1407
- PG_QUERY__TOKEN__ROWS = 625,
1408
- PG_QUERY__TOKEN__RULE = 626,
1409
- PG_QUERY__TOKEN__SAVEPOINT = 627,
1410
- PG_QUERY__TOKEN__SCALAR = 628,
1411
- PG_QUERY__TOKEN__SCHEMA = 629,
1412
- PG_QUERY__TOKEN__SCHEMAS = 630,
1413
- PG_QUERY__TOKEN__SCROLL = 631,
1414
- PG_QUERY__TOKEN__SEARCH = 632,
1415
- PG_QUERY__TOKEN__SECOND_P = 633,
1416
- PG_QUERY__TOKEN__SECURITY = 634,
1417
- PG_QUERY__TOKEN__SELECT = 635,
1418
- PG_QUERY__TOKEN__SEQUENCE = 636,
1419
- PG_QUERY__TOKEN__SEQUENCES = 637,
1420
- PG_QUERY__TOKEN__SERIALIZABLE = 638,
1421
- PG_QUERY__TOKEN__SERVER = 639,
1422
- PG_QUERY__TOKEN__SESSION = 640,
1423
- PG_QUERY__TOKEN__SESSION_USER = 641,
1424
- PG_QUERY__TOKEN__SET = 642,
1425
- PG_QUERY__TOKEN__SETS = 643,
1426
- PG_QUERY__TOKEN__SETOF = 644,
1427
- PG_QUERY__TOKEN__SHARE = 645,
1428
- PG_QUERY__TOKEN__SHOW = 646,
1429
- PG_QUERY__TOKEN__SIMILAR = 647,
1430
- PG_QUERY__TOKEN__SIMPLE = 648,
1431
- PG_QUERY__TOKEN__SKIP = 649,
1432
- PG_QUERY__TOKEN__SMALLINT = 650,
1433
- PG_QUERY__TOKEN__SNAPSHOT = 651,
1434
- PG_QUERY__TOKEN__SOME = 652,
1435
- PG_QUERY__TOKEN__SQL_P = 653,
1436
- PG_QUERY__TOKEN__STABLE = 654,
1437
- PG_QUERY__TOKEN__STANDALONE_P = 655,
1438
- PG_QUERY__TOKEN__START = 656,
1439
- PG_QUERY__TOKEN__STATEMENT = 657,
1440
- PG_QUERY__TOKEN__STATISTICS = 658,
1441
- PG_QUERY__TOKEN__STDIN = 659,
1442
- PG_QUERY__TOKEN__STDOUT = 660,
1443
- PG_QUERY__TOKEN__STORAGE = 661,
1444
- PG_QUERY__TOKEN__STORED = 662,
1445
- PG_QUERY__TOKEN__STRICT_P = 663,
1446
- PG_QUERY__TOKEN__STRIP_P = 664,
1447
- PG_QUERY__TOKEN__SUBSCRIPTION = 665,
1448
- PG_QUERY__TOKEN__SUBSTRING = 666,
1449
- PG_QUERY__TOKEN__SUPPORT = 667,
1450
- PG_QUERY__TOKEN__SYMMETRIC = 668,
1451
- PG_QUERY__TOKEN__SYSID = 669,
1452
- PG_QUERY__TOKEN__SYSTEM_P = 670,
1453
- PG_QUERY__TOKEN__SYSTEM_USER = 671,
1454
- PG_QUERY__TOKEN__TABLE = 672,
1455
- PG_QUERY__TOKEN__TABLES = 673,
1456
- PG_QUERY__TOKEN__TABLESAMPLE = 674,
1457
- PG_QUERY__TOKEN__TABLESPACE = 675,
1458
- PG_QUERY__TOKEN__TEMP = 676,
1459
- PG_QUERY__TOKEN__TEMPLATE = 677,
1460
- PG_QUERY__TOKEN__TEMPORARY = 678,
1461
- PG_QUERY__TOKEN__TEXT_P = 679,
1462
- PG_QUERY__TOKEN__THEN = 680,
1463
- PG_QUERY__TOKEN__TIES = 681,
1464
- PG_QUERY__TOKEN__TIME = 682,
1465
- PG_QUERY__TOKEN__TIMESTAMP = 683,
1466
- PG_QUERY__TOKEN__TO = 684,
1467
- PG_QUERY__TOKEN__TRAILING = 685,
1468
- PG_QUERY__TOKEN__TRANSACTION = 686,
1469
- PG_QUERY__TOKEN__TRANSFORM = 687,
1470
- PG_QUERY__TOKEN__TREAT = 688,
1471
- PG_QUERY__TOKEN__TRIGGER = 689,
1472
- PG_QUERY__TOKEN__TRIM = 690,
1473
- PG_QUERY__TOKEN__TRUE_P = 691,
1474
- PG_QUERY__TOKEN__TRUNCATE = 692,
1475
- PG_QUERY__TOKEN__TRUSTED = 693,
1476
- PG_QUERY__TOKEN__TYPE_P = 694,
1477
- PG_QUERY__TOKEN__TYPES_P = 695,
1478
- PG_QUERY__TOKEN__UESCAPE = 696,
1479
- PG_QUERY__TOKEN__UNBOUNDED = 697,
1480
- PG_QUERY__TOKEN__UNCOMMITTED = 698,
1481
- PG_QUERY__TOKEN__UNENCRYPTED = 699,
1482
- PG_QUERY__TOKEN__UNION = 700,
1483
- PG_QUERY__TOKEN__UNIQUE = 701,
1484
- PG_QUERY__TOKEN__UNKNOWN = 702,
1485
- PG_QUERY__TOKEN__UNLISTEN = 703,
1486
- PG_QUERY__TOKEN__UNLOGGED = 704,
1487
- PG_QUERY__TOKEN__UNTIL = 705,
1488
- PG_QUERY__TOKEN__UPDATE = 706,
1489
- PG_QUERY__TOKEN__USER = 707,
1490
- PG_QUERY__TOKEN__USING = 708,
1491
- PG_QUERY__TOKEN__VACUUM = 709,
1492
- PG_QUERY__TOKEN__VALID = 710,
1493
- PG_QUERY__TOKEN__VALIDATE = 711,
1494
- PG_QUERY__TOKEN__VALIDATOR = 712,
1495
- PG_QUERY__TOKEN__VALUE_P = 713,
1496
- PG_QUERY__TOKEN__VALUES = 714,
1497
- PG_QUERY__TOKEN__VARCHAR = 715,
1498
- PG_QUERY__TOKEN__VARIADIC = 716,
1499
- PG_QUERY__TOKEN__VARYING = 717,
1500
- PG_QUERY__TOKEN__VERBOSE = 718,
1501
- PG_QUERY__TOKEN__VERSION_P = 719,
1502
- PG_QUERY__TOKEN__VIEW = 720,
1503
- PG_QUERY__TOKEN__VIEWS = 721,
1504
- PG_QUERY__TOKEN__VOLATILE = 722,
1505
- PG_QUERY__TOKEN__WHEN = 723,
1506
- PG_QUERY__TOKEN__WHERE = 724,
1507
- PG_QUERY__TOKEN__WHITESPACE_P = 725,
1508
- PG_QUERY__TOKEN__WINDOW = 726,
1509
- PG_QUERY__TOKEN__WITH = 727,
1510
- PG_QUERY__TOKEN__WITHIN = 728,
1511
- PG_QUERY__TOKEN__WITHOUT = 729,
1512
- PG_QUERY__TOKEN__WORK = 730,
1513
- PG_QUERY__TOKEN__WRAPPER = 731,
1514
- PG_QUERY__TOKEN__WRITE = 732,
1515
- PG_QUERY__TOKEN__XML_P = 733,
1516
- PG_QUERY__TOKEN__XMLATTRIBUTES = 734,
1517
- PG_QUERY__TOKEN__XMLCONCAT = 735,
1518
- PG_QUERY__TOKEN__XMLELEMENT = 736,
1519
- PG_QUERY__TOKEN__XMLEXISTS = 737,
1520
- PG_QUERY__TOKEN__XMLFOREST = 738,
1521
- PG_QUERY__TOKEN__XMLNAMESPACES = 739,
1522
- PG_QUERY__TOKEN__XMLPARSE = 740,
1523
- PG_QUERY__TOKEN__XMLPI = 741,
1524
- PG_QUERY__TOKEN__XMLROOT = 742,
1525
- PG_QUERY__TOKEN__XMLSERIALIZE = 743,
1526
- PG_QUERY__TOKEN__XMLTABLE = 744,
1527
- PG_QUERY__TOKEN__YEAR_P = 745,
1528
- PG_QUERY__TOKEN__YES_P = 746,
1529
- PG_QUERY__TOKEN__ZONE = 747,
1530
- PG_QUERY__TOKEN__FORMAT_LA = 748,
1531
- PG_QUERY__TOKEN__NOT_LA = 749,
1532
- PG_QUERY__TOKEN__NULLS_LA = 750,
1533
- PG_QUERY__TOKEN__WITH_LA = 751,
1534
- PG_QUERY__TOKEN__WITHOUT_LA = 752,
1535
- PG_QUERY__TOKEN__MODE_TYPE_NAME = 753,
1536
- PG_QUERY__TOKEN__MODE_PLPGSQL_EXPR = 754,
1537
- PG_QUERY__TOKEN__MODE_PLPGSQL_ASSIGN1 = 755,
1538
- PG_QUERY__TOKEN__MODE_PLPGSQL_ASSIGN2 = 756,
1539
- PG_QUERY__TOKEN__MODE_PLPGSQL_ASSIGN3 = 757,
1540
- PG_QUERY__TOKEN__UMINUS = 758
1205
+ PG_QUERY__TOKEN__CONDITIONAL = 345,
1206
+ PG_QUERY__TOKEN__CONFIGURATION = 346,
1207
+ PG_QUERY__TOKEN__CONFLICT = 347,
1208
+ PG_QUERY__TOKEN__CONNECTION = 348,
1209
+ PG_QUERY__TOKEN__CONSTRAINT = 349,
1210
+ PG_QUERY__TOKEN__CONSTRAINTS = 350,
1211
+ PG_QUERY__TOKEN__CONTENT_P = 351,
1212
+ PG_QUERY__TOKEN__CONTINUE_P = 352,
1213
+ PG_QUERY__TOKEN__CONVERSION_P = 353,
1214
+ PG_QUERY__TOKEN__COPY = 354,
1215
+ PG_QUERY__TOKEN__COST = 355,
1216
+ PG_QUERY__TOKEN__CREATE = 356,
1217
+ PG_QUERY__TOKEN__CROSS = 357,
1218
+ PG_QUERY__TOKEN__CSV = 358,
1219
+ PG_QUERY__TOKEN__CUBE = 359,
1220
+ PG_QUERY__TOKEN__CURRENT_P = 360,
1221
+ PG_QUERY__TOKEN__CURRENT_CATALOG = 361,
1222
+ PG_QUERY__TOKEN__CURRENT_DATE = 362,
1223
+ PG_QUERY__TOKEN__CURRENT_ROLE = 363,
1224
+ PG_QUERY__TOKEN__CURRENT_SCHEMA = 364,
1225
+ PG_QUERY__TOKEN__CURRENT_TIME = 365,
1226
+ PG_QUERY__TOKEN__CURRENT_TIMESTAMP = 366,
1227
+ PG_QUERY__TOKEN__CURRENT_USER = 367,
1228
+ PG_QUERY__TOKEN__CURSOR = 368,
1229
+ PG_QUERY__TOKEN__CYCLE = 369,
1230
+ PG_QUERY__TOKEN__DATA_P = 370,
1231
+ PG_QUERY__TOKEN__DATABASE = 371,
1232
+ PG_QUERY__TOKEN__DAY_P = 372,
1233
+ PG_QUERY__TOKEN__DEALLOCATE = 373,
1234
+ PG_QUERY__TOKEN__DEC = 374,
1235
+ PG_QUERY__TOKEN__DECIMAL_P = 375,
1236
+ PG_QUERY__TOKEN__DECLARE = 376,
1237
+ PG_QUERY__TOKEN__DEFAULT = 377,
1238
+ PG_QUERY__TOKEN__DEFAULTS = 378,
1239
+ PG_QUERY__TOKEN__DEFERRABLE = 379,
1240
+ PG_QUERY__TOKEN__DEFERRED = 380,
1241
+ PG_QUERY__TOKEN__DEFINER = 381,
1242
+ PG_QUERY__TOKEN__DELETE_P = 382,
1243
+ PG_QUERY__TOKEN__DELIMITER = 383,
1244
+ PG_QUERY__TOKEN__DELIMITERS = 384,
1245
+ PG_QUERY__TOKEN__DEPENDS = 385,
1246
+ PG_QUERY__TOKEN__DEPTH = 386,
1247
+ PG_QUERY__TOKEN__DESC = 387,
1248
+ PG_QUERY__TOKEN__DETACH = 388,
1249
+ PG_QUERY__TOKEN__DICTIONARY = 389,
1250
+ PG_QUERY__TOKEN__DISABLE_P = 390,
1251
+ PG_QUERY__TOKEN__DISCARD = 391,
1252
+ PG_QUERY__TOKEN__DISTINCT = 392,
1253
+ PG_QUERY__TOKEN__DO = 393,
1254
+ PG_QUERY__TOKEN__DOCUMENT_P = 394,
1255
+ PG_QUERY__TOKEN__DOMAIN_P = 395,
1256
+ PG_QUERY__TOKEN__DOUBLE_P = 396,
1257
+ PG_QUERY__TOKEN__DROP = 397,
1258
+ PG_QUERY__TOKEN__EACH = 398,
1259
+ PG_QUERY__TOKEN__ELSE = 399,
1260
+ PG_QUERY__TOKEN__EMPTY_P = 400,
1261
+ PG_QUERY__TOKEN__ENABLE_P = 401,
1262
+ PG_QUERY__TOKEN__ENCODING = 402,
1263
+ PG_QUERY__TOKEN__ENCRYPTED = 403,
1264
+ PG_QUERY__TOKEN__END_P = 404,
1265
+ PG_QUERY__TOKEN__ENUM_P = 405,
1266
+ PG_QUERY__TOKEN__ERROR_P = 406,
1267
+ PG_QUERY__TOKEN__ESCAPE = 407,
1268
+ PG_QUERY__TOKEN__EVENT = 408,
1269
+ PG_QUERY__TOKEN__EXCEPT = 409,
1270
+ PG_QUERY__TOKEN__EXCLUDE = 410,
1271
+ PG_QUERY__TOKEN__EXCLUDING = 411,
1272
+ PG_QUERY__TOKEN__EXCLUSIVE = 412,
1273
+ PG_QUERY__TOKEN__EXECUTE = 413,
1274
+ PG_QUERY__TOKEN__EXISTS = 414,
1275
+ PG_QUERY__TOKEN__EXPLAIN = 415,
1276
+ PG_QUERY__TOKEN__EXPRESSION = 416,
1277
+ PG_QUERY__TOKEN__EXTENSION = 417,
1278
+ PG_QUERY__TOKEN__EXTERNAL = 418,
1279
+ PG_QUERY__TOKEN__EXTRACT = 419,
1280
+ PG_QUERY__TOKEN__FALSE_P = 420,
1281
+ PG_QUERY__TOKEN__FAMILY = 421,
1282
+ PG_QUERY__TOKEN__FETCH = 422,
1283
+ PG_QUERY__TOKEN__FILTER = 423,
1284
+ PG_QUERY__TOKEN__FINALIZE = 424,
1285
+ PG_QUERY__TOKEN__FIRST_P = 425,
1286
+ PG_QUERY__TOKEN__FLOAT_P = 426,
1287
+ PG_QUERY__TOKEN__FOLLOWING = 427,
1288
+ PG_QUERY__TOKEN__FOR = 428,
1289
+ PG_QUERY__TOKEN__FORCE = 429,
1290
+ PG_QUERY__TOKEN__FOREIGN = 430,
1291
+ PG_QUERY__TOKEN__FORMAT = 431,
1292
+ PG_QUERY__TOKEN__FORWARD = 432,
1293
+ PG_QUERY__TOKEN__FREEZE = 433,
1294
+ PG_QUERY__TOKEN__FROM = 434,
1295
+ PG_QUERY__TOKEN__FULL = 435,
1296
+ PG_QUERY__TOKEN__FUNCTION = 436,
1297
+ PG_QUERY__TOKEN__FUNCTIONS = 437,
1298
+ PG_QUERY__TOKEN__GENERATED = 438,
1299
+ PG_QUERY__TOKEN__GLOBAL = 439,
1300
+ PG_QUERY__TOKEN__GRANT = 440,
1301
+ PG_QUERY__TOKEN__GRANTED = 441,
1302
+ PG_QUERY__TOKEN__GREATEST = 442,
1303
+ PG_QUERY__TOKEN__GROUP_P = 443,
1304
+ PG_QUERY__TOKEN__GROUPING = 444,
1305
+ PG_QUERY__TOKEN__GROUPS = 445,
1306
+ PG_QUERY__TOKEN__HANDLER = 446,
1307
+ PG_QUERY__TOKEN__HAVING = 447,
1308
+ PG_QUERY__TOKEN__HEADER_P = 448,
1309
+ PG_QUERY__TOKEN__HOLD = 449,
1310
+ PG_QUERY__TOKEN__HOUR_P = 450,
1311
+ PG_QUERY__TOKEN__IDENTITY_P = 451,
1312
+ PG_QUERY__TOKEN__IF_P = 452,
1313
+ PG_QUERY__TOKEN__ILIKE = 453,
1314
+ PG_QUERY__TOKEN__IMMEDIATE = 454,
1315
+ PG_QUERY__TOKEN__IMMUTABLE = 455,
1316
+ PG_QUERY__TOKEN__IMPLICIT_P = 456,
1317
+ PG_QUERY__TOKEN__IMPORT_P = 457,
1318
+ PG_QUERY__TOKEN__IN_P = 458,
1319
+ PG_QUERY__TOKEN__INCLUDE = 459,
1320
+ PG_QUERY__TOKEN__INCLUDING = 460,
1321
+ PG_QUERY__TOKEN__INCREMENT = 461,
1322
+ PG_QUERY__TOKEN__INDENT = 462,
1323
+ PG_QUERY__TOKEN__INDEX = 463,
1324
+ PG_QUERY__TOKEN__INDEXES = 464,
1325
+ PG_QUERY__TOKEN__INHERIT = 465,
1326
+ PG_QUERY__TOKEN__INHERITS = 466,
1327
+ PG_QUERY__TOKEN__INITIALLY = 467,
1328
+ PG_QUERY__TOKEN__INLINE_P = 468,
1329
+ PG_QUERY__TOKEN__INNER_P = 469,
1330
+ PG_QUERY__TOKEN__INOUT = 470,
1331
+ PG_QUERY__TOKEN__INPUT_P = 471,
1332
+ PG_QUERY__TOKEN__INSENSITIVE = 472,
1333
+ PG_QUERY__TOKEN__INSERT = 473,
1334
+ PG_QUERY__TOKEN__INSTEAD = 474,
1335
+ PG_QUERY__TOKEN__INT_P = 475,
1336
+ PG_QUERY__TOKEN__INTEGER = 476,
1337
+ PG_QUERY__TOKEN__INTERSECT = 477,
1338
+ PG_QUERY__TOKEN__INTERVAL = 478,
1339
+ PG_QUERY__TOKEN__INTO = 479,
1340
+ PG_QUERY__TOKEN__INVOKER = 480,
1341
+ PG_QUERY__TOKEN__IS = 481,
1342
+ PG_QUERY__TOKEN__ISNULL = 482,
1343
+ PG_QUERY__TOKEN__ISOLATION = 483,
1344
+ PG_QUERY__TOKEN__JOIN = 484,
1345
+ PG_QUERY__TOKEN__JSON = 485,
1346
+ PG_QUERY__TOKEN__JSON_ARRAY = 486,
1347
+ PG_QUERY__TOKEN__JSON_ARRAYAGG = 487,
1348
+ PG_QUERY__TOKEN__JSON_EXISTS = 488,
1349
+ PG_QUERY__TOKEN__JSON_OBJECT = 489,
1350
+ PG_QUERY__TOKEN__JSON_OBJECTAGG = 490,
1351
+ PG_QUERY__TOKEN__JSON_QUERY = 491,
1352
+ PG_QUERY__TOKEN__JSON_SCALAR = 492,
1353
+ PG_QUERY__TOKEN__JSON_SERIALIZE = 493,
1354
+ PG_QUERY__TOKEN__JSON_TABLE = 494,
1355
+ PG_QUERY__TOKEN__JSON_VALUE = 495,
1356
+ PG_QUERY__TOKEN__KEEP = 496,
1357
+ PG_QUERY__TOKEN__KEY = 497,
1358
+ PG_QUERY__TOKEN__KEYS = 498,
1359
+ PG_QUERY__TOKEN__LABEL = 499,
1360
+ PG_QUERY__TOKEN__LANGUAGE = 500,
1361
+ PG_QUERY__TOKEN__LARGE_P = 501,
1362
+ PG_QUERY__TOKEN__LAST_P = 502,
1363
+ PG_QUERY__TOKEN__LATERAL_P = 503,
1364
+ PG_QUERY__TOKEN__LEADING = 504,
1365
+ PG_QUERY__TOKEN__LEAKPROOF = 505,
1366
+ PG_QUERY__TOKEN__LEAST = 506,
1367
+ PG_QUERY__TOKEN__LEFT = 507,
1368
+ PG_QUERY__TOKEN__LEVEL = 508,
1369
+ PG_QUERY__TOKEN__LIKE = 509,
1370
+ PG_QUERY__TOKEN__LIMIT = 510,
1371
+ PG_QUERY__TOKEN__LISTEN = 511,
1372
+ PG_QUERY__TOKEN__LOAD = 512,
1373
+ PG_QUERY__TOKEN__LOCAL = 513,
1374
+ PG_QUERY__TOKEN__LOCALTIME = 514,
1375
+ PG_QUERY__TOKEN__LOCALTIMESTAMP = 515,
1376
+ PG_QUERY__TOKEN__LOCATION = 516,
1377
+ PG_QUERY__TOKEN__LOCK_P = 517,
1378
+ PG_QUERY__TOKEN__LOCKED = 518,
1379
+ PG_QUERY__TOKEN__LOGGED = 519,
1380
+ PG_QUERY__TOKEN__MAPPING = 520,
1381
+ PG_QUERY__TOKEN__MATCH = 521,
1382
+ PG_QUERY__TOKEN__MATCHED = 522,
1383
+ PG_QUERY__TOKEN__MATERIALIZED = 523,
1384
+ PG_QUERY__TOKEN__MAXVALUE = 524,
1385
+ PG_QUERY__TOKEN__MERGE = 525,
1386
+ PG_QUERY__TOKEN__MERGE_ACTION = 526,
1387
+ PG_QUERY__TOKEN__METHOD = 527,
1388
+ PG_QUERY__TOKEN__MINUTE_P = 528,
1389
+ PG_QUERY__TOKEN__MINVALUE = 529,
1390
+ PG_QUERY__TOKEN__MODE = 530,
1391
+ PG_QUERY__TOKEN__MONTH_P = 531,
1392
+ PG_QUERY__TOKEN__MOVE = 532,
1393
+ PG_QUERY__TOKEN__NAME_P = 533,
1394
+ PG_QUERY__TOKEN__NAMES = 534,
1395
+ PG_QUERY__TOKEN__NATIONAL = 535,
1396
+ PG_QUERY__TOKEN__NATURAL = 536,
1397
+ PG_QUERY__TOKEN__NCHAR = 537,
1398
+ PG_QUERY__TOKEN__NESTED = 538,
1399
+ PG_QUERY__TOKEN__NEW = 539,
1400
+ PG_QUERY__TOKEN__NEXT = 540,
1401
+ PG_QUERY__TOKEN__NFC = 541,
1402
+ PG_QUERY__TOKEN__NFD = 542,
1403
+ PG_QUERY__TOKEN__NFKC = 543,
1404
+ PG_QUERY__TOKEN__NFKD = 544,
1405
+ PG_QUERY__TOKEN__NO = 545,
1406
+ PG_QUERY__TOKEN__NONE = 546,
1407
+ PG_QUERY__TOKEN__NORMALIZE = 547,
1408
+ PG_QUERY__TOKEN__NORMALIZED = 548,
1409
+ PG_QUERY__TOKEN__NOT = 549,
1410
+ PG_QUERY__TOKEN__NOTHING = 550,
1411
+ PG_QUERY__TOKEN__NOTIFY = 551,
1412
+ PG_QUERY__TOKEN__NOTNULL = 552,
1413
+ PG_QUERY__TOKEN__NOWAIT = 553,
1414
+ PG_QUERY__TOKEN__NULL_P = 554,
1415
+ PG_QUERY__TOKEN__NULLIF = 555,
1416
+ PG_QUERY__TOKEN__NULLS_P = 556,
1417
+ PG_QUERY__TOKEN__NUMERIC = 557,
1418
+ PG_QUERY__TOKEN__OBJECT_P = 558,
1419
+ PG_QUERY__TOKEN__OF = 559,
1420
+ PG_QUERY__TOKEN__OFF = 560,
1421
+ PG_QUERY__TOKEN__OFFSET = 561,
1422
+ PG_QUERY__TOKEN__OIDS = 562,
1423
+ PG_QUERY__TOKEN__OLD = 563,
1424
+ PG_QUERY__TOKEN__OMIT = 564,
1425
+ PG_QUERY__TOKEN__ON = 565,
1426
+ PG_QUERY__TOKEN__ONLY = 566,
1427
+ PG_QUERY__TOKEN__OPERATOR = 567,
1428
+ PG_QUERY__TOKEN__OPTION = 568,
1429
+ PG_QUERY__TOKEN__OPTIONS = 569,
1430
+ PG_QUERY__TOKEN__OR = 570,
1431
+ PG_QUERY__TOKEN__ORDER = 571,
1432
+ PG_QUERY__TOKEN__ORDINALITY = 572,
1433
+ PG_QUERY__TOKEN__OTHERS = 573,
1434
+ PG_QUERY__TOKEN__OUT_P = 574,
1435
+ PG_QUERY__TOKEN__OUTER_P = 575,
1436
+ PG_QUERY__TOKEN__OVER = 576,
1437
+ PG_QUERY__TOKEN__OVERLAPS = 577,
1438
+ PG_QUERY__TOKEN__OVERLAY = 578,
1439
+ PG_QUERY__TOKEN__OVERRIDING = 579,
1440
+ PG_QUERY__TOKEN__OWNED = 580,
1441
+ PG_QUERY__TOKEN__OWNER = 581,
1442
+ PG_QUERY__TOKEN__PARALLEL = 582,
1443
+ PG_QUERY__TOKEN__PARAMETER = 583,
1444
+ PG_QUERY__TOKEN__PARSER = 584,
1445
+ PG_QUERY__TOKEN__PARTIAL = 585,
1446
+ PG_QUERY__TOKEN__PARTITION = 586,
1447
+ PG_QUERY__TOKEN__PASSING = 587,
1448
+ PG_QUERY__TOKEN__PASSWORD = 588,
1449
+ PG_QUERY__TOKEN__PATH = 589,
1450
+ PG_QUERY__TOKEN__PLACING = 590,
1451
+ PG_QUERY__TOKEN__PLAN = 591,
1452
+ PG_QUERY__TOKEN__PLANS = 592,
1453
+ PG_QUERY__TOKEN__POLICY = 593,
1454
+ PG_QUERY__TOKEN__POSITION = 594,
1455
+ PG_QUERY__TOKEN__PRECEDING = 595,
1456
+ PG_QUERY__TOKEN__PRECISION = 596,
1457
+ PG_QUERY__TOKEN__PRESERVE = 597,
1458
+ PG_QUERY__TOKEN__PREPARE = 598,
1459
+ PG_QUERY__TOKEN__PREPARED = 599,
1460
+ PG_QUERY__TOKEN__PRIMARY = 600,
1461
+ PG_QUERY__TOKEN__PRIOR = 601,
1462
+ PG_QUERY__TOKEN__PRIVILEGES = 602,
1463
+ PG_QUERY__TOKEN__PROCEDURAL = 603,
1464
+ PG_QUERY__TOKEN__PROCEDURE = 604,
1465
+ PG_QUERY__TOKEN__PROCEDURES = 605,
1466
+ PG_QUERY__TOKEN__PROGRAM = 606,
1467
+ PG_QUERY__TOKEN__PUBLICATION = 607,
1468
+ PG_QUERY__TOKEN__QUOTE = 608,
1469
+ PG_QUERY__TOKEN__QUOTES = 609,
1470
+ PG_QUERY__TOKEN__RANGE = 610,
1471
+ PG_QUERY__TOKEN__READ = 611,
1472
+ PG_QUERY__TOKEN__REAL = 612,
1473
+ PG_QUERY__TOKEN__REASSIGN = 613,
1474
+ PG_QUERY__TOKEN__RECHECK = 614,
1475
+ PG_QUERY__TOKEN__RECURSIVE = 615,
1476
+ PG_QUERY__TOKEN__REF_P = 616,
1477
+ PG_QUERY__TOKEN__REFERENCES = 617,
1478
+ PG_QUERY__TOKEN__REFERENCING = 618,
1479
+ PG_QUERY__TOKEN__REFRESH = 619,
1480
+ PG_QUERY__TOKEN__REINDEX = 620,
1481
+ PG_QUERY__TOKEN__RELATIVE_P = 621,
1482
+ PG_QUERY__TOKEN__RELEASE = 622,
1483
+ PG_QUERY__TOKEN__RENAME = 623,
1484
+ PG_QUERY__TOKEN__REPEATABLE = 624,
1485
+ PG_QUERY__TOKEN__REPLACE = 625,
1486
+ PG_QUERY__TOKEN__REPLICA = 626,
1487
+ PG_QUERY__TOKEN__RESET = 627,
1488
+ PG_QUERY__TOKEN__RESTART = 628,
1489
+ PG_QUERY__TOKEN__RESTRICT = 629,
1490
+ PG_QUERY__TOKEN__RETURN = 630,
1491
+ PG_QUERY__TOKEN__RETURNING = 631,
1492
+ PG_QUERY__TOKEN__RETURNS = 632,
1493
+ PG_QUERY__TOKEN__REVOKE = 633,
1494
+ PG_QUERY__TOKEN__RIGHT = 634,
1495
+ PG_QUERY__TOKEN__ROLE = 635,
1496
+ PG_QUERY__TOKEN__ROLLBACK = 636,
1497
+ PG_QUERY__TOKEN__ROLLUP = 637,
1498
+ PG_QUERY__TOKEN__ROUTINE = 638,
1499
+ PG_QUERY__TOKEN__ROUTINES = 639,
1500
+ PG_QUERY__TOKEN__ROW = 640,
1501
+ PG_QUERY__TOKEN__ROWS = 641,
1502
+ PG_QUERY__TOKEN__RULE = 642,
1503
+ PG_QUERY__TOKEN__SAVEPOINT = 643,
1504
+ PG_QUERY__TOKEN__SCALAR = 644,
1505
+ PG_QUERY__TOKEN__SCHEMA = 645,
1506
+ PG_QUERY__TOKEN__SCHEMAS = 646,
1507
+ PG_QUERY__TOKEN__SCROLL = 647,
1508
+ PG_QUERY__TOKEN__SEARCH = 648,
1509
+ PG_QUERY__TOKEN__SECOND_P = 649,
1510
+ PG_QUERY__TOKEN__SECURITY = 650,
1511
+ PG_QUERY__TOKEN__SELECT = 651,
1512
+ PG_QUERY__TOKEN__SEQUENCE = 652,
1513
+ PG_QUERY__TOKEN__SEQUENCES = 653,
1514
+ PG_QUERY__TOKEN__SERIALIZABLE = 654,
1515
+ PG_QUERY__TOKEN__SERVER = 655,
1516
+ PG_QUERY__TOKEN__SESSION = 656,
1517
+ PG_QUERY__TOKEN__SESSION_USER = 657,
1518
+ PG_QUERY__TOKEN__SET = 658,
1519
+ PG_QUERY__TOKEN__SETS = 659,
1520
+ PG_QUERY__TOKEN__SETOF = 660,
1521
+ PG_QUERY__TOKEN__SHARE = 661,
1522
+ PG_QUERY__TOKEN__SHOW = 662,
1523
+ PG_QUERY__TOKEN__SIMILAR = 663,
1524
+ PG_QUERY__TOKEN__SIMPLE = 664,
1525
+ PG_QUERY__TOKEN__SKIP = 665,
1526
+ PG_QUERY__TOKEN__SMALLINT = 666,
1527
+ PG_QUERY__TOKEN__SNAPSHOT = 667,
1528
+ PG_QUERY__TOKEN__SOME = 668,
1529
+ PG_QUERY__TOKEN__SOURCE = 669,
1530
+ PG_QUERY__TOKEN__SQL_P = 670,
1531
+ PG_QUERY__TOKEN__STABLE = 671,
1532
+ PG_QUERY__TOKEN__STANDALONE_P = 672,
1533
+ PG_QUERY__TOKEN__START = 673,
1534
+ PG_QUERY__TOKEN__STATEMENT = 674,
1535
+ PG_QUERY__TOKEN__STATISTICS = 675,
1536
+ PG_QUERY__TOKEN__STDIN = 676,
1537
+ PG_QUERY__TOKEN__STDOUT = 677,
1538
+ PG_QUERY__TOKEN__STORAGE = 678,
1539
+ PG_QUERY__TOKEN__STORED = 679,
1540
+ PG_QUERY__TOKEN__STRICT_P = 680,
1541
+ PG_QUERY__TOKEN__STRING_P = 681,
1542
+ PG_QUERY__TOKEN__STRIP_P = 682,
1543
+ PG_QUERY__TOKEN__SUBSCRIPTION = 683,
1544
+ PG_QUERY__TOKEN__SUBSTRING = 684,
1545
+ PG_QUERY__TOKEN__SUPPORT = 685,
1546
+ PG_QUERY__TOKEN__SYMMETRIC = 686,
1547
+ PG_QUERY__TOKEN__SYSID = 687,
1548
+ PG_QUERY__TOKEN__SYSTEM_P = 688,
1549
+ PG_QUERY__TOKEN__SYSTEM_USER = 689,
1550
+ PG_QUERY__TOKEN__TABLE = 690,
1551
+ PG_QUERY__TOKEN__TABLES = 691,
1552
+ PG_QUERY__TOKEN__TABLESAMPLE = 692,
1553
+ PG_QUERY__TOKEN__TABLESPACE = 693,
1554
+ PG_QUERY__TOKEN__TARGET = 694,
1555
+ PG_QUERY__TOKEN__TEMP = 695,
1556
+ PG_QUERY__TOKEN__TEMPLATE = 696,
1557
+ PG_QUERY__TOKEN__TEMPORARY = 697,
1558
+ PG_QUERY__TOKEN__TEXT_P = 698,
1559
+ PG_QUERY__TOKEN__THEN = 699,
1560
+ PG_QUERY__TOKEN__TIES = 700,
1561
+ PG_QUERY__TOKEN__TIME = 701,
1562
+ PG_QUERY__TOKEN__TIMESTAMP = 702,
1563
+ PG_QUERY__TOKEN__TO = 703,
1564
+ PG_QUERY__TOKEN__TRAILING = 704,
1565
+ PG_QUERY__TOKEN__TRANSACTION = 705,
1566
+ PG_QUERY__TOKEN__TRANSFORM = 706,
1567
+ PG_QUERY__TOKEN__TREAT = 707,
1568
+ PG_QUERY__TOKEN__TRIGGER = 708,
1569
+ PG_QUERY__TOKEN__TRIM = 709,
1570
+ PG_QUERY__TOKEN__TRUE_P = 710,
1571
+ PG_QUERY__TOKEN__TRUNCATE = 711,
1572
+ PG_QUERY__TOKEN__TRUSTED = 712,
1573
+ PG_QUERY__TOKEN__TYPE_P = 713,
1574
+ PG_QUERY__TOKEN__TYPES_P = 714,
1575
+ PG_QUERY__TOKEN__UESCAPE = 715,
1576
+ PG_QUERY__TOKEN__UNBOUNDED = 716,
1577
+ PG_QUERY__TOKEN__UNCONDITIONAL = 717,
1578
+ PG_QUERY__TOKEN__UNCOMMITTED = 718,
1579
+ PG_QUERY__TOKEN__UNENCRYPTED = 719,
1580
+ PG_QUERY__TOKEN__UNION = 720,
1581
+ PG_QUERY__TOKEN__UNIQUE = 721,
1582
+ PG_QUERY__TOKEN__UNKNOWN = 722,
1583
+ PG_QUERY__TOKEN__UNLISTEN = 723,
1584
+ PG_QUERY__TOKEN__UNLOGGED = 724,
1585
+ PG_QUERY__TOKEN__UNTIL = 725,
1586
+ PG_QUERY__TOKEN__UPDATE = 726,
1587
+ PG_QUERY__TOKEN__USER = 727,
1588
+ PG_QUERY__TOKEN__USING = 728,
1589
+ PG_QUERY__TOKEN__VACUUM = 729,
1590
+ PG_QUERY__TOKEN__VALID = 730,
1591
+ PG_QUERY__TOKEN__VALIDATE = 731,
1592
+ PG_QUERY__TOKEN__VALIDATOR = 732,
1593
+ PG_QUERY__TOKEN__VALUE_P = 733,
1594
+ PG_QUERY__TOKEN__VALUES = 734,
1595
+ PG_QUERY__TOKEN__VARCHAR = 735,
1596
+ PG_QUERY__TOKEN__VARIADIC = 736,
1597
+ PG_QUERY__TOKEN__VARYING = 737,
1598
+ PG_QUERY__TOKEN__VERBOSE = 738,
1599
+ PG_QUERY__TOKEN__VERSION_P = 739,
1600
+ PG_QUERY__TOKEN__VIEW = 740,
1601
+ PG_QUERY__TOKEN__VIEWS = 741,
1602
+ PG_QUERY__TOKEN__VOLATILE = 742,
1603
+ PG_QUERY__TOKEN__WHEN = 743,
1604
+ PG_QUERY__TOKEN__WHERE = 744,
1605
+ PG_QUERY__TOKEN__WHITESPACE_P = 745,
1606
+ PG_QUERY__TOKEN__WINDOW = 746,
1607
+ PG_QUERY__TOKEN__WITH = 747,
1608
+ PG_QUERY__TOKEN__WITHIN = 748,
1609
+ PG_QUERY__TOKEN__WITHOUT = 749,
1610
+ PG_QUERY__TOKEN__WORK = 750,
1611
+ PG_QUERY__TOKEN__WRAPPER = 751,
1612
+ PG_QUERY__TOKEN__WRITE = 752,
1613
+ PG_QUERY__TOKEN__XML_P = 753,
1614
+ PG_QUERY__TOKEN__XMLATTRIBUTES = 754,
1615
+ PG_QUERY__TOKEN__XMLCONCAT = 755,
1616
+ PG_QUERY__TOKEN__XMLELEMENT = 756,
1617
+ PG_QUERY__TOKEN__XMLEXISTS = 757,
1618
+ PG_QUERY__TOKEN__XMLFOREST = 758,
1619
+ PG_QUERY__TOKEN__XMLNAMESPACES = 759,
1620
+ PG_QUERY__TOKEN__XMLPARSE = 760,
1621
+ PG_QUERY__TOKEN__XMLPI = 761,
1622
+ PG_QUERY__TOKEN__XMLROOT = 762,
1623
+ PG_QUERY__TOKEN__XMLSERIALIZE = 763,
1624
+ PG_QUERY__TOKEN__XMLTABLE = 764,
1625
+ PG_QUERY__TOKEN__YEAR_P = 765,
1626
+ PG_QUERY__TOKEN__YES_P = 766,
1627
+ PG_QUERY__TOKEN__ZONE = 767,
1628
+ PG_QUERY__TOKEN__FORMAT_LA = 768,
1629
+ PG_QUERY__TOKEN__NOT_LA = 769,
1630
+ PG_QUERY__TOKEN__NULLS_LA = 770,
1631
+ PG_QUERY__TOKEN__WITH_LA = 771,
1632
+ PG_QUERY__TOKEN__WITHOUT_LA = 772,
1633
+ PG_QUERY__TOKEN__MODE_TYPE_NAME = 773,
1634
+ PG_QUERY__TOKEN__MODE_PLPGSQL_EXPR = 774,
1635
+ PG_QUERY__TOKEN__MODE_PLPGSQL_ASSIGN1 = 775,
1636
+ PG_QUERY__TOKEN__MODE_PLPGSQL_ASSIGN2 = 776,
1637
+ PG_QUERY__TOKEN__MODE_PLPGSQL_ASSIGN3 = 777,
1638
+ PG_QUERY__TOKEN__UMINUS = 778
1541
1639
  PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__TOKEN)
1542
1640
  } PgQuery__Token;
1543
1641
 
@@ -1578,249 +1676,265 @@ typedef enum {
1578
1676
  PG_QUERY__NODE__NODE_AGGREF = 7,
1579
1677
  PG_QUERY__NODE__NODE_GROUPING_FUNC = 8,
1580
1678
  PG_QUERY__NODE__NODE_WINDOW_FUNC = 9,
1581
- PG_QUERY__NODE__NODE_SUBSCRIPTING_REF = 10,
1582
- PG_QUERY__NODE__NODE_FUNC_EXPR = 11,
1583
- PG_QUERY__NODE__NODE_NAMED_ARG_EXPR = 12,
1584
- PG_QUERY__NODE__NODE_OP_EXPR = 13,
1585
- PG_QUERY__NODE__NODE_DISTINCT_EXPR = 14,
1586
- PG_QUERY__NODE__NODE_NULL_IF_EXPR = 15,
1587
- PG_QUERY__NODE__NODE_SCALAR_ARRAY_OP_EXPR = 16,
1588
- PG_QUERY__NODE__NODE_BOOL_EXPR = 17,
1589
- PG_QUERY__NODE__NODE_SUB_LINK = 18,
1590
- PG_QUERY__NODE__NODE_SUB_PLAN = 19,
1591
- PG_QUERY__NODE__NODE_ALTERNATIVE_SUB_PLAN = 20,
1592
- PG_QUERY__NODE__NODE_FIELD_SELECT = 21,
1593
- PG_QUERY__NODE__NODE_FIELD_STORE = 22,
1594
- PG_QUERY__NODE__NODE_RELABEL_TYPE = 23,
1595
- PG_QUERY__NODE__NODE_COERCE_VIA_IO = 24,
1596
- PG_QUERY__NODE__NODE_ARRAY_COERCE_EXPR = 25,
1597
- PG_QUERY__NODE__NODE_CONVERT_ROWTYPE_EXPR = 26,
1598
- PG_QUERY__NODE__NODE_COLLATE_EXPR = 27,
1599
- PG_QUERY__NODE__NODE_CASE_EXPR = 28,
1600
- PG_QUERY__NODE__NODE_CASE_WHEN = 29,
1601
- PG_QUERY__NODE__NODE_CASE_TEST_EXPR = 30,
1602
- PG_QUERY__NODE__NODE_ARRAY_EXPR = 31,
1603
- PG_QUERY__NODE__NODE_ROW_EXPR = 32,
1604
- PG_QUERY__NODE__NODE_ROW_COMPARE_EXPR = 33,
1605
- PG_QUERY__NODE__NODE_COALESCE_EXPR = 34,
1606
- PG_QUERY__NODE__NODE_MIN_MAX_EXPR = 35,
1607
- PG_QUERY__NODE__NODE_SQLVALUE_FUNCTION = 36,
1608
- PG_QUERY__NODE__NODE_XML_EXPR = 37,
1609
- PG_QUERY__NODE__NODE_JSON_FORMAT = 38,
1610
- PG_QUERY__NODE__NODE_JSON_RETURNING = 39,
1611
- PG_QUERY__NODE__NODE_JSON_VALUE_EXPR = 40,
1612
- PG_QUERY__NODE__NODE_JSON_CONSTRUCTOR_EXPR = 41,
1613
- PG_QUERY__NODE__NODE_JSON_IS_PREDICATE = 42,
1614
- PG_QUERY__NODE__NODE_NULL_TEST = 43,
1615
- PG_QUERY__NODE__NODE_BOOLEAN_TEST = 44,
1616
- PG_QUERY__NODE__NODE_COERCE_TO_DOMAIN = 45,
1617
- PG_QUERY__NODE__NODE_COERCE_TO_DOMAIN_VALUE = 46,
1618
- PG_QUERY__NODE__NODE_SET_TO_DEFAULT = 47,
1619
- PG_QUERY__NODE__NODE_CURRENT_OF_EXPR = 48,
1620
- PG_QUERY__NODE__NODE_NEXT_VALUE_EXPR = 49,
1621
- PG_QUERY__NODE__NODE_INFERENCE_ELEM = 50,
1622
- PG_QUERY__NODE__NODE_TARGET_ENTRY = 51,
1623
- PG_QUERY__NODE__NODE_RANGE_TBL_REF = 52,
1624
- PG_QUERY__NODE__NODE_JOIN_EXPR = 53,
1625
- PG_QUERY__NODE__NODE_FROM_EXPR = 54,
1626
- PG_QUERY__NODE__NODE_ON_CONFLICT_EXPR = 55,
1627
- PG_QUERY__NODE__NODE_QUERY = 56,
1628
- PG_QUERY__NODE__NODE_TYPE_NAME = 57,
1629
- PG_QUERY__NODE__NODE_COLUMN_REF = 58,
1630
- PG_QUERY__NODE__NODE_PARAM_REF = 59,
1631
- PG_QUERY__NODE__NODE_A_EXPR = 60,
1632
- PG_QUERY__NODE__NODE_TYPE_CAST = 61,
1633
- PG_QUERY__NODE__NODE_COLLATE_CLAUSE = 62,
1634
- PG_QUERY__NODE__NODE_ROLE_SPEC = 63,
1635
- PG_QUERY__NODE__NODE_FUNC_CALL = 64,
1636
- PG_QUERY__NODE__NODE_A_STAR = 65,
1637
- PG_QUERY__NODE__NODE_A_INDICES = 66,
1638
- PG_QUERY__NODE__NODE_A_INDIRECTION = 67,
1639
- PG_QUERY__NODE__NODE_A_ARRAY_EXPR = 68,
1640
- PG_QUERY__NODE__NODE_RES_TARGET = 69,
1641
- PG_QUERY__NODE__NODE_MULTI_ASSIGN_REF = 70,
1642
- PG_QUERY__NODE__NODE_SORT_BY = 71,
1643
- PG_QUERY__NODE__NODE_WINDOW_DEF = 72,
1644
- PG_QUERY__NODE__NODE_RANGE_SUBSELECT = 73,
1645
- PG_QUERY__NODE__NODE_RANGE_FUNCTION = 74,
1646
- PG_QUERY__NODE__NODE_RANGE_TABLE_FUNC = 75,
1647
- PG_QUERY__NODE__NODE_RANGE_TABLE_FUNC_COL = 76,
1648
- PG_QUERY__NODE__NODE_RANGE_TABLE_SAMPLE = 77,
1649
- PG_QUERY__NODE__NODE_COLUMN_DEF = 78,
1650
- PG_QUERY__NODE__NODE_TABLE_LIKE_CLAUSE = 79,
1651
- PG_QUERY__NODE__NODE_INDEX_ELEM = 80,
1652
- PG_QUERY__NODE__NODE_DEF_ELEM = 81,
1653
- PG_QUERY__NODE__NODE_LOCKING_CLAUSE = 82,
1654
- PG_QUERY__NODE__NODE_XML_SERIALIZE = 83,
1655
- PG_QUERY__NODE__NODE_PARTITION_ELEM = 84,
1656
- PG_QUERY__NODE__NODE_PARTITION_SPEC = 85,
1657
- PG_QUERY__NODE__NODE_PARTITION_BOUND_SPEC = 86,
1658
- PG_QUERY__NODE__NODE_PARTITION_RANGE_DATUM = 87,
1659
- PG_QUERY__NODE__NODE_PARTITION_CMD = 88,
1660
- PG_QUERY__NODE__NODE_RANGE_TBL_ENTRY = 89,
1661
- PG_QUERY__NODE__NODE_RTEPERMISSION_INFO = 90,
1662
- PG_QUERY__NODE__NODE_RANGE_TBL_FUNCTION = 91,
1663
- PG_QUERY__NODE__NODE_TABLE_SAMPLE_CLAUSE = 92,
1664
- PG_QUERY__NODE__NODE_WITH_CHECK_OPTION = 93,
1665
- PG_QUERY__NODE__NODE_SORT_GROUP_CLAUSE = 94,
1666
- PG_QUERY__NODE__NODE_GROUPING_SET = 95,
1667
- PG_QUERY__NODE__NODE_WINDOW_CLAUSE = 96,
1668
- PG_QUERY__NODE__NODE_ROW_MARK_CLAUSE = 97,
1669
- PG_QUERY__NODE__NODE_WITH_CLAUSE = 98,
1670
- PG_QUERY__NODE__NODE_INFER_CLAUSE = 99,
1671
- PG_QUERY__NODE__NODE_ON_CONFLICT_CLAUSE = 100,
1672
- PG_QUERY__NODE__NODE_CTESEARCH_CLAUSE = 101,
1673
- PG_QUERY__NODE__NODE_CTECYCLE_CLAUSE = 102,
1674
- PG_QUERY__NODE__NODE_COMMON_TABLE_EXPR = 103,
1675
- PG_QUERY__NODE__NODE_MERGE_WHEN_CLAUSE = 104,
1676
- PG_QUERY__NODE__NODE_MERGE_ACTION = 105,
1677
- PG_QUERY__NODE__NODE_TRIGGER_TRANSITION = 106,
1678
- PG_QUERY__NODE__NODE_JSON_OUTPUT = 107,
1679
- PG_QUERY__NODE__NODE_JSON_KEY_VALUE = 108,
1680
- PG_QUERY__NODE__NODE_JSON_OBJECT_CONSTRUCTOR = 109,
1681
- PG_QUERY__NODE__NODE_JSON_ARRAY_CONSTRUCTOR = 110,
1682
- PG_QUERY__NODE__NODE_JSON_ARRAY_QUERY_CONSTRUCTOR = 111,
1683
- PG_QUERY__NODE__NODE_JSON_AGG_CONSTRUCTOR = 112,
1684
- PG_QUERY__NODE__NODE_JSON_OBJECT_AGG = 113,
1685
- PG_QUERY__NODE__NODE_JSON_ARRAY_AGG = 114,
1686
- PG_QUERY__NODE__NODE_RAW_STMT = 115,
1687
- PG_QUERY__NODE__NODE_INSERT_STMT = 116,
1688
- PG_QUERY__NODE__NODE_DELETE_STMT = 117,
1689
- PG_QUERY__NODE__NODE_UPDATE_STMT = 118,
1690
- PG_QUERY__NODE__NODE_MERGE_STMT = 119,
1691
- PG_QUERY__NODE__NODE_SELECT_STMT = 120,
1692
- PG_QUERY__NODE__NODE_SET_OPERATION_STMT = 121,
1693
- PG_QUERY__NODE__NODE_RETURN_STMT = 122,
1694
- PG_QUERY__NODE__NODE_PLASSIGN_STMT = 123,
1695
- PG_QUERY__NODE__NODE_CREATE_SCHEMA_STMT = 124,
1696
- PG_QUERY__NODE__NODE_ALTER_TABLE_STMT = 125,
1697
- PG_QUERY__NODE__NODE_REPLICA_IDENTITY_STMT = 126,
1698
- PG_QUERY__NODE__NODE_ALTER_TABLE_CMD = 127,
1699
- PG_QUERY__NODE__NODE_ALTER_COLLATION_STMT = 128,
1700
- PG_QUERY__NODE__NODE_ALTER_DOMAIN_STMT = 129,
1701
- PG_QUERY__NODE__NODE_GRANT_STMT = 130,
1702
- PG_QUERY__NODE__NODE_OBJECT_WITH_ARGS = 131,
1703
- PG_QUERY__NODE__NODE_ACCESS_PRIV = 132,
1704
- PG_QUERY__NODE__NODE_GRANT_ROLE_STMT = 133,
1705
- PG_QUERY__NODE__NODE_ALTER_DEFAULT_PRIVILEGES_STMT = 134,
1706
- PG_QUERY__NODE__NODE_COPY_STMT = 135,
1707
- PG_QUERY__NODE__NODE_VARIABLE_SET_STMT = 136,
1708
- PG_QUERY__NODE__NODE_VARIABLE_SHOW_STMT = 137,
1709
- PG_QUERY__NODE__NODE_CREATE_STMT = 138,
1710
- PG_QUERY__NODE__NODE_CONSTRAINT = 139,
1711
- PG_QUERY__NODE__NODE_CREATE_TABLE_SPACE_STMT = 140,
1712
- PG_QUERY__NODE__NODE_DROP_TABLE_SPACE_STMT = 141,
1713
- PG_QUERY__NODE__NODE_ALTER_TABLE_SPACE_OPTIONS_STMT = 142,
1714
- PG_QUERY__NODE__NODE_ALTER_TABLE_MOVE_ALL_STMT = 143,
1715
- PG_QUERY__NODE__NODE_CREATE_EXTENSION_STMT = 144,
1716
- PG_QUERY__NODE__NODE_ALTER_EXTENSION_STMT = 145,
1717
- PG_QUERY__NODE__NODE_ALTER_EXTENSION_CONTENTS_STMT = 146,
1718
- PG_QUERY__NODE__NODE_CREATE_FDW_STMT = 147,
1719
- PG_QUERY__NODE__NODE_ALTER_FDW_STMT = 148,
1720
- PG_QUERY__NODE__NODE_CREATE_FOREIGN_SERVER_STMT = 149,
1721
- PG_QUERY__NODE__NODE_ALTER_FOREIGN_SERVER_STMT = 150,
1722
- PG_QUERY__NODE__NODE_CREATE_FOREIGN_TABLE_STMT = 151,
1723
- PG_QUERY__NODE__NODE_CREATE_USER_MAPPING_STMT = 152,
1724
- PG_QUERY__NODE__NODE_ALTER_USER_MAPPING_STMT = 153,
1725
- PG_QUERY__NODE__NODE_DROP_USER_MAPPING_STMT = 154,
1726
- PG_QUERY__NODE__NODE_IMPORT_FOREIGN_SCHEMA_STMT = 155,
1727
- PG_QUERY__NODE__NODE_CREATE_POLICY_STMT = 156,
1728
- PG_QUERY__NODE__NODE_ALTER_POLICY_STMT = 157,
1729
- PG_QUERY__NODE__NODE_CREATE_AM_STMT = 158,
1730
- PG_QUERY__NODE__NODE_CREATE_TRIG_STMT = 159,
1731
- PG_QUERY__NODE__NODE_CREATE_EVENT_TRIG_STMT = 160,
1732
- PG_QUERY__NODE__NODE_ALTER_EVENT_TRIG_STMT = 161,
1733
- PG_QUERY__NODE__NODE_CREATE_PLANG_STMT = 162,
1734
- PG_QUERY__NODE__NODE_CREATE_ROLE_STMT = 163,
1735
- PG_QUERY__NODE__NODE_ALTER_ROLE_STMT = 164,
1736
- PG_QUERY__NODE__NODE_ALTER_ROLE_SET_STMT = 165,
1737
- PG_QUERY__NODE__NODE_DROP_ROLE_STMT = 166,
1738
- PG_QUERY__NODE__NODE_CREATE_SEQ_STMT = 167,
1739
- PG_QUERY__NODE__NODE_ALTER_SEQ_STMT = 168,
1740
- PG_QUERY__NODE__NODE_DEFINE_STMT = 169,
1741
- PG_QUERY__NODE__NODE_CREATE_DOMAIN_STMT = 170,
1742
- PG_QUERY__NODE__NODE_CREATE_OP_CLASS_STMT = 171,
1743
- PG_QUERY__NODE__NODE_CREATE_OP_CLASS_ITEM = 172,
1744
- PG_QUERY__NODE__NODE_CREATE_OP_FAMILY_STMT = 173,
1745
- PG_QUERY__NODE__NODE_ALTER_OP_FAMILY_STMT = 174,
1746
- PG_QUERY__NODE__NODE_DROP_STMT = 175,
1747
- PG_QUERY__NODE__NODE_TRUNCATE_STMT = 176,
1748
- PG_QUERY__NODE__NODE_COMMENT_STMT = 177,
1749
- PG_QUERY__NODE__NODE_SEC_LABEL_STMT = 178,
1750
- PG_QUERY__NODE__NODE_DECLARE_CURSOR_STMT = 179,
1751
- PG_QUERY__NODE__NODE_CLOSE_PORTAL_STMT = 180,
1752
- PG_QUERY__NODE__NODE_FETCH_STMT = 181,
1753
- PG_QUERY__NODE__NODE_INDEX_STMT = 182,
1754
- PG_QUERY__NODE__NODE_CREATE_STATS_STMT = 183,
1755
- PG_QUERY__NODE__NODE_STATS_ELEM = 184,
1756
- PG_QUERY__NODE__NODE_ALTER_STATS_STMT = 185,
1757
- PG_QUERY__NODE__NODE_CREATE_FUNCTION_STMT = 186,
1758
- PG_QUERY__NODE__NODE_FUNCTION_PARAMETER = 187,
1759
- PG_QUERY__NODE__NODE_ALTER_FUNCTION_STMT = 188,
1760
- PG_QUERY__NODE__NODE_DO_STMT = 189,
1761
- PG_QUERY__NODE__NODE_INLINE_CODE_BLOCK = 190,
1762
- PG_QUERY__NODE__NODE_CALL_STMT = 191,
1763
- PG_QUERY__NODE__NODE_CALL_CONTEXT = 192,
1764
- PG_QUERY__NODE__NODE_RENAME_STMT = 193,
1765
- PG_QUERY__NODE__NODE_ALTER_OBJECT_DEPENDS_STMT = 194,
1766
- PG_QUERY__NODE__NODE_ALTER_OBJECT_SCHEMA_STMT = 195,
1767
- PG_QUERY__NODE__NODE_ALTER_OWNER_STMT = 196,
1768
- PG_QUERY__NODE__NODE_ALTER_OPERATOR_STMT = 197,
1769
- PG_QUERY__NODE__NODE_ALTER_TYPE_STMT = 198,
1770
- PG_QUERY__NODE__NODE_RULE_STMT = 199,
1771
- PG_QUERY__NODE__NODE_NOTIFY_STMT = 200,
1772
- PG_QUERY__NODE__NODE_LISTEN_STMT = 201,
1773
- PG_QUERY__NODE__NODE_UNLISTEN_STMT = 202,
1774
- PG_QUERY__NODE__NODE_TRANSACTION_STMT = 203,
1775
- PG_QUERY__NODE__NODE_COMPOSITE_TYPE_STMT = 204,
1776
- PG_QUERY__NODE__NODE_CREATE_ENUM_STMT = 205,
1777
- PG_QUERY__NODE__NODE_CREATE_RANGE_STMT = 206,
1778
- PG_QUERY__NODE__NODE_ALTER_ENUM_STMT = 207,
1779
- PG_QUERY__NODE__NODE_VIEW_STMT = 208,
1780
- PG_QUERY__NODE__NODE_LOAD_STMT = 209,
1781
- PG_QUERY__NODE__NODE_CREATEDB_STMT = 210,
1782
- PG_QUERY__NODE__NODE_ALTER_DATABASE_STMT = 211,
1783
- PG_QUERY__NODE__NODE_ALTER_DATABASE_REFRESH_COLL_STMT = 212,
1784
- PG_QUERY__NODE__NODE_ALTER_DATABASE_SET_STMT = 213,
1785
- PG_QUERY__NODE__NODE_DROPDB_STMT = 214,
1786
- PG_QUERY__NODE__NODE_ALTER_SYSTEM_STMT = 215,
1787
- PG_QUERY__NODE__NODE_CLUSTER_STMT = 216,
1788
- PG_QUERY__NODE__NODE_VACUUM_STMT = 217,
1789
- PG_QUERY__NODE__NODE_VACUUM_RELATION = 218,
1790
- PG_QUERY__NODE__NODE_EXPLAIN_STMT = 219,
1791
- PG_QUERY__NODE__NODE_CREATE_TABLE_AS_STMT = 220,
1792
- PG_QUERY__NODE__NODE_REFRESH_MAT_VIEW_STMT = 221,
1793
- PG_QUERY__NODE__NODE_CHECK_POINT_STMT = 222,
1794
- PG_QUERY__NODE__NODE_DISCARD_STMT = 223,
1795
- PG_QUERY__NODE__NODE_LOCK_STMT = 224,
1796
- PG_QUERY__NODE__NODE_CONSTRAINTS_SET_STMT = 225,
1797
- PG_QUERY__NODE__NODE_REINDEX_STMT = 226,
1798
- PG_QUERY__NODE__NODE_CREATE_CONVERSION_STMT = 227,
1799
- PG_QUERY__NODE__NODE_CREATE_CAST_STMT = 228,
1800
- PG_QUERY__NODE__NODE_CREATE_TRANSFORM_STMT = 229,
1801
- PG_QUERY__NODE__NODE_PREPARE_STMT = 230,
1802
- PG_QUERY__NODE__NODE_EXECUTE_STMT = 231,
1803
- PG_QUERY__NODE__NODE_DEALLOCATE_STMT = 232,
1804
- PG_QUERY__NODE__NODE_DROP_OWNED_STMT = 233,
1805
- PG_QUERY__NODE__NODE_REASSIGN_OWNED_STMT = 234,
1806
- PG_QUERY__NODE__NODE_ALTER_TSDICTIONARY_STMT = 235,
1807
- PG_QUERY__NODE__NODE_ALTER_TSCONFIGURATION_STMT = 236,
1808
- PG_QUERY__NODE__NODE_PUBLICATION_TABLE = 237,
1809
- PG_QUERY__NODE__NODE_PUBLICATION_OBJ_SPEC = 238,
1810
- PG_QUERY__NODE__NODE_CREATE_PUBLICATION_STMT = 239,
1811
- PG_QUERY__NODE__NODE_ALTER_PUBLICATION_STMT = 240,
1812
- PG_QUERY__NODE__NODE_CREATE_SUBSCRIPTION_STMT = 241,
1813
- PG_QUERY__NODE__NODE_ALTER_SUBSCRIPTION_STMT = 242,
1814
- PG_QUERY__NODE__NODE_DROP_SUBSCRIPTION_STMT = 243,
1815
- PG_QUERY__NODE__NODE_INTEGER = 244,
1816
- PG_QUERY__NODE__NODE_FLOAT = 245,
1817
- PG_QUERY__NODE__NODE_BOOLEAN = 246,
1818
- PG_QUERY__NODE__NODE_STRING = 247,
1819
- PG_QUERY__NODE__NODE_BIT_STRING = 248,
1820
- PG_QUERY__NODE__NODE_LIST = 249,
1821
- PG_QUERY__NODE__NODE_INT_LIST = 250,
1822
- PG_QUERY__NODE__NODE_OID_LIST = 251,
1823
- PG_QUERY__NODE__NODE_A_CONST = 252
1679
+ PG_QUERY__NODE__NODE_WINDOW_FUNC_RUN_CONDITION = 10,
1680
+ PG_QUERY__NODE__NODE_MERGE_SUPPORT_FUNC = 11,
1681
+ PG_QUERY__NODE__NODE_SUBSCRIPTING_REF = 12,
1682
+ PG_QUERY__NODE__NODE_FUNC_EXPR = 13,
1683
+ PG_QUERY__NODE__NODE_NAMED_ARG_EXPR = 14,
1684
+ PG_QUERY__NODE__NODE_OP_EXPR = 15,
1685
+ PG_QUERY__NODE__NODE_DISTINCT_EXPR = 16,
1686
+ PG_QUERY__NODE__NODE_NULL_IF_EXPR = 17,
1687
+ PG_QUERY__NODE__NODE_SCALAR_ARRAY_OP_EXPR = 18,
1688
+ PG_QUERY__NODE__NODE_BOOL_EXPR = 19,
1689
+ PG_QUERY__NODE__NODE_SUB_LINK = 20,
1690
+ PG_QUERY__NODE__NODE_SUB_PLAN = 21,
1691
+ PG_QUERY__NODE__NODE_ALTERNATIVE_SUB_PLAN = 22,
1692
+ PG_QUERY__NODE__NODE_FIELD_SELECT = 23,
1693
+ PG_QUERY__NODE__NODE_FIELD_STORE = 24,
1694
+ PG_QUERY__NODE__NODE_RELABEL_TYPE = 25,
1695
+ PG_QUERY__NODE__NODE_COERCE_VIA_IO = 26,
1696
+ PG_QUERY__NODE__NODE_ARRAY_COERCE_EXPR = 27,
1697
+ PG_QUERY__NODE__NODE_CONVERT_ROWTYPE_EXPR = 28,
1698
+ PG_QUERY__NODE__NODE_COLLATE_EXPR = 29,
1699
+ PG_QUERY__NODE__NODE_CASE_EXPR = 30,
1700
+ PG_QUERY__NODE__NODE_CASE_WHEN = 31,
1701
+ PG_QUERY__NODE__NODE_CASE_TEST_EXPR = 32,
1702
+ PG_QUERY__NODE__NODE_ARRAY_EXPR = 33,
1703
+ PG_QUERY__NODE__NODE_ROW_EXPR = 34,
1704
+ PG_QUERY__NODE__NODE_ROW_COMPARE_EXPR = 35,
1705
+ PG_QUERY__NODE__NODE_COALESCE_EXPR = 36,
1706
+ PG_QUERY__NODE__NODE_MIN_MAX_EXPR = 37,
1707
+ PG_QUERY__NODE__NODE_SQLVALUE_FUNCTION = 38,
1708
+ PG_QUERY__NODE__NODE_XML_EXPR = 39,
1709
+ PG_QUERY__NODE__NODE_JSON_FORMAT = 40,
1710
+ PG_QUERY__NODE__NODE_JSON_RETURNING = 41,
1711
+ PG_QUERY__NODE__NODE_JSON_VALUE_EXPR = 42,
1712
+ PG_QUERY__NODE__NODE_JSON_CONSTRUCTOR_EXPR = 43,
1713
+ PG_QUERY__NODE__NODE_JSON_IS_PREDICATE = 44,
1714
+ PG_QUERY__NODE__NODE_JSON_BEHAVIOR = 45,
1715
+ PG_QUERY__NODE__NODE_JSON_EXPR = 46,
1716
+ PG_QUERY__NODE__NODE_JSON_TABLE_PATH = 47,
1717
+ PG_QUERY__NODE__NODE_JSON_TABLE_PATH_SCAN = 48,
1718
+ PG_QUERY__NODE__NODE_JSON_TABLE_SIBLING_JOIN = 49,
1719
+ PG_QUERY__NODE__NODE_NULL_TEST = 50,
1720
+ PG_QUERY__NODE__NODE_BOOLEAN_TEST = 51,
1721
+ PG_QUERY__NODE__NODE_MERGE_ACTION = 52,
1722
+ PG_QUERY__NODE__NODE_COERCE_TO_DOMAIN = 53,
1723
+ PG_QUERY__NODE__NODE_COERCE_TO_DOMAIN_VALUE = 54,
1724
+ PG_QUERY__NODE__NODE_SET_TO_DEFAULT = 55,
1725
+ PG_QUERY__NODE__NODE_CURRENT_OF_EXPR = 56,
1726
+ PG_QUERY__NODE__NODE_NEXT_VALUE_EXPR = 57,
1727
+ PG_QUERY__NODE__NODE_INFERENCE_ELEM = 58,
1728
+ PG_QUERY__NODE__NODE_TARGET_ENTRY = 59,
1729
+ PG_QUERY__NODE__NODE_RANGE_TBL_REF = 60,
1730
+ PG_QUERY__NODE__NODE_JOIN_EXPR = 61,
1731
+ PG_QUERY__NODE__NODE_FROM_EXPR = 62,
1732
+ PG_QUERY__NODE__NODE_ON_CONFLICT_EXPR = 63,
1733
+ PG_QUERY__NODE__NODE_QUERY = 64,
1734
+ PG_QUERY__NODE__NODE_TYPE_NAME = 65,
1735
+ PG_QUERY__NODE__NODE_COLUMN_REF = 66,
1736
+ PG_QUERY__NODE__NODE_PARAM_REF = 67,
1737
+ PG_QUERY__NODE__NODE_A_EXPR = 68,
1738
+ PG_QUERY__NODE__NODE_TYPE_CAST = 69,
1739
+ PG_QUERY__NODE__NODE_COLLATE_CLAUSE = 70,
1740
+ PG_QUERY__NODE__NODE_ROLE_SPEC = 71,
1741
+ PG_QUERY__NODE__NODE_FUNC_CALL = 72,
1742
+ PG_QUERY__NODE__NODE_A_STAR = 73,
1743
+ PG_QUERY__NODE__NODE_A_INDICES = 74,
1744
+ PG_QUERY__NODE__NODE_A_INDIRECTION = 75,
1745
+ PG_QUERY__NODE__NODE_A_ARRAY_EXPR = 76,
1746
+ PG_QUERY__NODE__NODE_RES_TARGET = 77,
1747
+ PG_QUERY__NODE__NODE_MULTI_ASSIGN_REF = 78,
1748
+ PG_QUERY__NODE__NODE_SORT_BY = 79,
1749
+ PG_QUERY__NODE__NODE_WINDOW_DEF = 80,
1750
+ PG_QUERY__NODE__NODE_RANGE_SUBSELECT = 81,
1751
+ PG_QUERY__NODE__NODE_RANGE_FUNCTION = 82,
1752
+ PG_QUERY__NODE__NODE_RANGE_TABLE_FUNC = 83,
1753
+ PG_QUERY__NODE__NODE_RANGE_TABLE_FUNC_COL = 84,
1754
+ PG_QUERY__NODE__NODE_RANGE_TABLE_SAMPLE = 85,
1755
+ PG_QUERY__NODE__NODE_COLUMN_DEF = 86,
1756
+ PG_QUERY__NODE__NODE_TABLE_LIKE_CLAUSE = 87,
1757
+ PG_QUERY__NODE__NODE_INDEX_ELEM = 88,
1758
+ PG_QUERY__NODE__NODE_DEF_ELEM = 89,
1759
+ PG_QUERY__NODE__NODE_LOCKING_CLAUSE = 90,
1760
+ PG_QUERY__NODE__NODE_XML_SERIALIZE = 91,
1761
+ PG_QUERY__NODE__NODE_PARTITION_ELEM = 92,
1762
+ PG_QUERY__NODE__NODE_PARTITION_SPEC = 93,
1763
+ PG_QUERY__NODE__NODE_PARTITION_BOUND_SPEC = 94,
1764
+ PG_QUERY__NODE__NODE_PARTITION_RANGE_DATUM = 95,
1765
+ PG_QUERY__NODE__NODE_SINGLE_PARTITION_SPEC = 96,
1766
+ PG_QUERY__NODE__NODE_PARTITION_CMD = 97,
1767
+ PG_QUERY__NODE__NODE_RANGE_TBL_ENTRY = 98,
1768
+ PG_QUERY__NODE__NODE_RTEPERMISSION_INFO = 99,
1769
+ PG_QUERY__NODE__NODE_RANGE_TBL_FUNCTION = 100,
1770
+ PG_QUERY__NODE__NODE_TABLE_SAMPLE_CLAUSE = 101,
1771
+ PG_QUERY__NODE__NODE_WITH_CHECK_OPTION = 102,
1772
+ PG_QUERY__NODE__NODE_SORT_GROUP_CLAUSE = 103,
1773
+ PG_QUERY__NODE__NODE_GROUPING_SET = 104,
1774
+ PG_QUERY__NODE__NODE_WINDOW_CLAUSE = 105,
1775
+ PG_QUERY__NODE__NODE_ROW_MARK_CLAUSE = 106,
1776
+ PG_QUERY__NODE__NODE_WITH_CLAUSE = 107,
1777
+ PG_QUERY__NODE__NODE_INFER_CLAUSE = 108,
1778
+ PG_QUERY__NODE__NODE_ON_CONFLICT_CLAUSE = 109,
1779
+ PG_QUERY__NODE__NODE_CTESEARCH_CLAUSE = 110,
1780
+ PG_QUERY__NODE__NODE_CTECYCLE_CLAUSE = 111,
1781
+ PG_QUERY__NODE__NODE_COMMON_TABLE_EXPR = 112,
1782
+ PG_QUERY__NODE__NODE_MERGE_WHEN_CLAUSE = 113,
1783
+ PG_QUERY__NODE__NODE_TRIGGER_TRANSITION = 114,
1784
+ PG_QUERY__NODE__NODE_JSON_OUTPUT = 115,
1785
+ PG_QUERY__NODE__NODE_JSON_ARGUMENT = 116,
1786
+ PG_QUERY__NODE__NODE_JSON_FUNC_EXPR = 117,
1787
+ PG_QUERY__NODE__NODE_JSON_TABLE_PATH_SPEC = 118,
1788
+ PG_QUERY__NODE__NODE_JSON_TABLE = 119,
1789
+ PG_QUERY__NODE__NODE_JSON_TABLE_COLUMN = 120,
1790
+ PG_QUERY__NODE__NODE_JSON_KEY_VALUE = 121,
1791
+ PG_QUERY__NODE__NODE_JSON_PARSE_EXPR = 122,
1792
+ PG_QUERY__NODE__NODE_JSON_SCALAR_EXPR = 123,
1793
+ PG_QUERY__NODE__NODE_JSON_SERIALIZE_EXPR = 124,
1794
+ PG_QUERY__NODE__NODE_JSON_OBJECT_CONSTRUCTOR = 125,
1795
+ PG_QUERY__NODE__NODE_JSON_ARRAY_CONSTRUCTOR = 126,
1796
+ PG_QUERY__NODE__NODE_JSON_ARRAY_QUERY_CONSTRUCTOR = 127,
1797
+ PG_QUERY__NODE__NODE_JSON_AGG_CONSTRUCTOR = 128,
1798
+ PG_QUERY__NODE__NODE_JSON_OBJECT_AGG = 129,
1799
+ PG_QUERY__NODE__NODE_JSON_ARRAY_AGG = 130,
1800
+ PG_QUERY__NODE__NODE_RAW_STMT = 131,
1801
+ PG_QUERY__NODE__NODE_INSERT_STMT = 132,
1802
+ PG_QUERY__NODE__NODE_DELETE_STMT = 133,
1803
+ PG_QUERY__NODE__NODE_UPDATE_STMT = 134,
1804
+ PG_QUERY__NODE__NODE_MERGE_STMT = 135,
1805
+ PG_QUERY__NODE__NODE_SELECT_STMT = 136,
1806
+ PG_QUERY__NODE__NODE_SET_OPERATION_STMT = 137,
1807
+ PG_QUERY__NODE__NODE_RETURN_STMT = 138,
1808
+ PG_QUERY__NODE__NODE_PLASSIGN_STMT = 139,
1809
+ PG_QUERY__NODE__NODE_CREATE_SCHEMA_STMT = 140,
1810
+ PG_QUERY__NODE__NODE_ALTER_TABLE_STMT = 141,
1811
+ PG_QUERY__NODE__NODE_REPLICA_IDENTITY_STMT = 142,
1812
+ PG_QUERY__NODE__NODE_ALTER_TABLE_CMD = 143,
1813
+ PG_QUERY__NODE__NODE_ALTER_COLLATION_STMT = 144,
1814
+ PG_QUERY__NODE__NODE_ALTER_DOMAIN_STMT = 145,
1815
+ PG_QUERY__NODE__NODE_GRANT_STMT = 146,
1816
+ PG_QUERY__NODE__NODE_OBJECT_WITH_ARGS = 147,
1817
+ PG_QUERY__NODE__NODE_ACCESS_PRIV = 148,
1818
+ PG_QUERY__NODE__NODE_GRANT_ROLE_STMT = 149,
1819
+ PG_QUERY__NODE__NODE_ALTER_DEFAULT_PRIVILEGES_STMT = 150,
1820
+ PG_QUERY__NODE__NODE_COPY_STMT = 151,
1821
+ PG_QUERY__NODE__NODE_VARIABLE_SET_STMT = 152,
1822
+ PG_QUERY__NODE__NODE_VARIABLE_SHOW_STMT = 153,
1823
+ PG_QUERY__NODE__NODE_CREATE_STMT = 154,
1824
+ PG_QUERY__NODE__NODE_CONSTRAINT = 155,
1825
+ PG_QUERY__NODE__NODE_CREATE_TABLE_SPACE_STMT = 156,
1826
+ PG_QUERY__NODE__NODE_DROP_TABLE_SPACE_STMT = 157,
1827
+ PG_QUERY__NODE__NODE_ALTER_TABLE_SPACE_OPTIONS_STMT = 158,
1828
+ PG_QUERY__NODE__NODE_ALTER_TABLE_MOVE_ALL_STMT = 159,
1829
+ PG_QUERY__NODE__NODE_CREATE_EXTENSION_STMT = 160,
1830
+ PG_QUERY__NODE__NODE_ALTER_EXTENSION_STMT = 161,
1831
+ PG_QUERY__NODE__NODE_ALTER_EXTENSION_CONTENTS_STMT = 162,
1832
+ PG_QUERY__NODE__NODE_CREATE_FDW_STMT = 163,
1833
+ PG_QUERY__NODE__NODE_ALTER_FDW_STMT = 164,
1834
+ PG_QUERY__NODE__NODE_CREATE_FOREIGN_SERVER_STMT = 165,
1835
+ PG_QUERY__NODE__NODE_ALTER_FOREIGN_SERVER_STMT = 166,
1836
+ PG_QUERY__NODE__NODE_CREATE_FOREIGN_TABLE_STMT = 167,
1837
+ PG_QUERY__NODE__NODE_CREATE_USER_MAPPING_STMT = 168,
1838
+ PG_QUERY__NODE__NODE_ALTER_USER_MAPPING_STMT = 169,
1839
+ PG_QUERY__NODE__NODE_DROP_USER_MAPPING_STMT = 170,
1840
+ PG_QUERY__NODE__NODE_IMPORT_FOREIGN_SCHEMA_STMT = 171,
1841
+ PG_QUERY__NODE__NODE_CREATE_POLICY_STMT = 172,
1842
+ PG_QUERY__NODE__NODE_ALTER_POLICY_STMT = 173,
1843
+ PG_QUERY__NODE__NODE_CREATE_AM_STMT = 174,
1844
+ PG_QUERY__NODE__NODE_CREATE_TRIG_STMT = 175,
1845
+ PG_QUERY__NODE__NODE_CREATE_EVENT_TRIG_STMT = 176,
1846
+ PG_QUERY__NODE__NODE_ALTER_EVENT_TRIG_STMT = 177,
1847
+ PG_QUERY__NODE__NODE_CREATE_PLANG_STMT = 178,
1848
+ PG_QUERY__NODE__NODE_CREATE_ROLE_STMT = 179,
1849
+ PG_QUERY__NODE__NODE_ALTER_ROLE_STMT = 180,
1850
+ PG_QUERY__NODE__NODE_ALTER_ROLE_SET_STMT = 181,
1851
+ PG_QUERY__NODE__NODE_DROP_ROLE_STMT = 182,
1852
+ PG_QUERY__NODE__NODE_CREATE_SEQ_STMT = 183,
1853
+ PG_QUERY__NODE__NODE_ALTER_SEQ_STMT = 184,
1854
+ PG_QUERY__NODE__NODE_DEFINE_STMT = 185,
1855
+ PG_QUERY__NODE__NODE_CREATE_DOMAIN_STMT = 186,
1856
+ PG_QUERY__NODE__NODE_CREATE_OP_CLASS_STMT = 187,
1857
+ PG_QUERY__NODE__NODE_CREATE_OP_CLASS_ITEM = 188,
1858
+ PG_QUERY__NODE__NODE_CREATE_OP_FAMILY_STMT = 189,
1859
+ PG_QUERY__NODE__NODE_ALTER_OP_FAMILY_STMT = 190,
1860
+ PG_QUERY__NODE__NODE_DROP_STMT = 191,
1861
+ PG_QUERY__NODE__NODE_TRUNCATE_STMT = 192,
1862
+ PG_QUERY__NODE__NODE_COMMENT_STMT = 193,
1863
+ PG_QUERY__NODE__NODE_SEC_LABEL_STMT = 194,
1864
+ PG_QUERY__NODE__NODE_DECLARE_CURSOR_STMT = 195,
1865
+ PG_QUERY__NODE__NODE_CLOSE_PORTAL_STMT = 196,
1866
+ PG_QUERY__NODE__NODE_FETCH_STMT = 197,
1867
+ PG_QUERY__NODE__NODE_INDEX_STMT = 198,
1868
+ PG_QUERY__NODE__NODE_CREATE_STATS_STMT = 199,
1869
+ PG_QUERY__NODE__NODE_STATS_ELEM = 200,
1870
+ PG_QUERY__NODE__NODE_ALTER_STATS_STMT = 201,
1871
+ PG_QUERY__NODE__NODE_CREATE_FUNCTION_STMT = 202,
1872
+ PG_QUERY__NODE__NODE_FUNCTION_PARAMETER = 203,
1873
+ PG_QUERY__NODE__NODE_ALTER_FUNCTION_STMT = 204,
1874
+ PG_QUERY__NODE__NODE_DO_STMT = 205,
1875
+ PG_QUERY__NODE__NODE_INLINE_CODE_BLOCK = 206,
1876
+ PG_QUERY__NODE__NODE_CALL_STMT = 207,
1877
+ PG_QUERY__NODE__NODE_CALL_CONTEXT = 208,
1878
+ PG_QUERY__NODE__NODE_RENAME_STMT = 209,
1879
+ PG_QUERY__NODE__NODE_ALTER_OBJECT_DEPENDS_STMT = 210,
1880
+ PG_QUERY__NODE__NODE_ALTER_OBJECT_SCHEMA_STMT = 211,
1881
+ PG_QUERY__NODE__NODE_ALTER_OWNER_STMT = 212,
1882
+ PG_QUERY__NODE__NODE_ALTER_OPERATOR_STMT = 213,
1883
+ PG_QUERY__NODE__NODE_ALTER_TYPE_STMT = 214,
1884
+ PG_QUERY__NODE__NODE_RULE_STMT = 215,
1885
+ PG_QUERY__NODE__NODE_NOTIFY_STMT = 216,
1886
+ PG_QUERY__NODE__NODE_LISTEN_STMT = 217,
1887
+ PG_QUERY__NODE__NODE_UNLISTEN_STMT = 218,
1888
+ PG_QUERY__NODE__NODE_TRANSACTION_STMT = 219,
1889
+ PG_QUERY__NODE__NODE_COMPOSITE_TYPE_STMT = 220,
1890
+ PG_QUERY__NODE__NODE_CREATE_ENUM_STMT = 221,
1891
+ PG_QUERY__NODE__NODE_CREATE_RANGE_STMT = 222,
1892
+ PG_QUERY__NODE__NODE_ALTER_ENUM_STMT = 223,
1893
+ PG_QUERY__NODE__NODE_VIEW_STMT = 224,
1894
+ PG_QUERY__NODE__NODE_LOAD_STMT = 225,
1895
+ PG_QUERY__NODE__NODE_CREATEDB_STMT = 226,
1896
+ PG_QUERY__NODE__NODE_ALTER_DATABASE_STMT = 227,
1897
+ PG_QUERY__NODE__NODE_ALTER_DATABASE_REFRESH_COLL_STMT = 228,
1898
+ PG_QUERY__NODE__NODE_ALTER_DATABASE_SET_STMT = 229,
1899
+ PG_QUERY__NODE__NODE_DROPDB_STMT = 230,
1900
+ PG_QUERY__NODE__NODE_ALTER_SYSTEM_STMT = 231,
1901
+ PG_QUERY__NODE__NODE_CLUSTER_STMT = 232,
1902
+ PG_QUERY__NODE__NODE_VACUUM_STMT = 233,
1903
+ PG_QUERY__NODE__NODE_VACUUM_RELATION = 234,
1904
+ PG_QUERY__NODE__NODE_EXPLAIN_STMT = 235,
1905
+ PG_QUERY__NODE__NODE_CREATE_TABLE_AS_STMT = 236,
1906
+ PG_QUERY__NODE__NODE_REFRESH_MAT_VIEW_STMT = 237,
1907
+ PG_QUERY__NODE__NODE_CHECK_POINT_STMT = 238,
1908
+ PG_QUERY__NODE__NODE_DISCARD_STMT = 239,
1909
+ PG_QUERY__NODE__NODE_LOCK_STMT = 240,
1910
+ PG_QUERY__NODE__NODE_CONSTRAINTS_SET_STMT = 241,
1911
+ PG_QUERY__NODE__NODE_REINDEX_STMT = 242,
1912
+ PG_QUERY__NODE__NODE_CREATE_CONVERSION_STMT = 243,
1913
+ PG_QUERY__NODE__NODE_CREATE_CAST_STMT = 244,
1914
+ PG_QUERY__NODE__NODE_CREATE_TRANSFORM_STMT = 245,
1915
+ PG_QUERY__NODE__NODE_PREPARE_STMT = 246,
1916
+ PG_QUERY__NODE__NODE_EXECUTE_STMT = 247,
1917
+ PG_QUERY__NODE__NODE_DEALLOCATE_STMT = 248,
1918
+ PG_QUERY__NODE__NODE_DROP_OWNED_STMT = 249,
1919
+ PG_QUERY__NODE__NODE_REASSIGN_OWNED_STMT = 250,
1920
+ PG_QUERY__NODE__NODE_ALTER_TSDICTIONARY_STMT = 251,
1921
+ PG_QUERY__NODE__NODE_ALTER_TSCONFIGURATION_STMT = 252,
1922
+ PG_QUERY__NODE__NODE_PUBLICATION_TABLE = 253,
1923
+ PG_QUERY__NODE__NODE_PUBLICATION_OBJ_SPEC = 254,
1924
+ PG_QUERY__NODE__NODE_CREATE_PUBLICATION_STMT = 255,
1925
+ PG_QUERY__NODE__NODE_ALTER_PUBLICATION_STMT = 256,
1926
+ PG_QUERY__NODE__NODE_CREATE_SUBSCRIPTION_STMT = 257,
1927
+ PG_QUERY__NODE__NODE_ALTER_SUBSCRIPTION_STMT = 258,
1928
+ PG_QUERY__NODE__NODE_DROP_SUBSCRIPTION_STMT = 259,
1929
+ PG_QUERY__NODE__NODE_INTEGER = 260,
1930
+ PG_QUERY__NODE__NODE_FLOAT = 261,
1931
+ PG_QUERY__NODE__NODE_BOOLEAN = 262,
1932
+ PG_QUERY__NODE__NODE_STRING = 263,
1933
+ PG_QUERY__NODE__NODE_BIT_STRING = 264,
1934
+ PG_QUERY__NODE__NODE_LIST = 265,
1935
+ PG_QUERY__NODE__NODE_INT_LIST = 266,
1936
+ PG_QUERY__NODE__NODE_OID_LIST = 267,
1937
+ PG_QUERY__NODE__NODE_A_CONST = 268
1824
1938
  PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__NODE__NODE__CASE)
1825
1939
  } PgQuery__Node__NodeCase;
1826
1940
 
@@ -1838,6 +1952,8 @@ struct PgQuery__Node
1838
1952
  PgQuery__Aggref *aggref;
1839
1953
  PgQuery__GroupingFunc *grouping_func;
1840
1954
  PgQuery__WindowFunc *window_func;
1955
+ PgQuery__WindowFuncRunCondition *window_func_run_condition;
1956
+ PgQuery__MergeSupportFunc *merge_support_func;
1841
1957
  PgQuery__SubscriptingRef *subscripting_ref;
1842
1958
  PgQuery__FuncExpr *func_expr;
1843
1959
  PgQuery__NamedArgExpr *named_arg_expr;
@@ -1871,8 +1987,14 @@ struct PgQuery__Node
1871
1987
  PgQuery__JsonValueExpr *json_value_expr;
1872
1988
  PgQuery__JsonConstructorExpr *json_constructor_expr;
1873
1989
  PgQuery__JsonIsPredicate *json_is_predicate;
1990
+ PgQuery__JsonBehavior *json_behavior;
1991
+ PgQuery__JsonExpr *json_expr;
1992
+ PgQuery__JsonTablePath *json_table_path;
1993
+ PgQuery__JsonTablePathScan *json_table_path_scan;
1994
+ PgQuery__JsonTableSiblingJoin *json_table_sibling_join;
1874
1995
  PgQuery__NullTest *null_test;
1875
1996
  PgQuery__BooleanTest *boolean_test;
1997
+ PgQuery__MergeAction *merge_action;
1876
1998
  PgQuery__CoerceToDomain *coerce_to_domain;
1877
1999
  PgQuery__CoerceToDomainValue *coerce_to_domain_value;
1878
2000
  PgQuery__SetToDefault *set_to_default;
@@ -1916,6 +2038,7 @@ struct PgQuery__Node
1916
2038
  PgQuery__PartitionSpec *partition_spec;
1917
2039
  PgQuery__PartitionBoundSpec *partition_bound_spec;
1918
2040
  PgQuery__PartitionRangeDatum *partition_range_datum;
2041
+ PgQuery__SinglePartitionSpec *single_partition_spec;
1919
2042
  PgQuery__PartitionCmd *partition_cmd;
1920
2043
  PgQuery__RangeTblEntry *range_tbl_entry;
1921
2044
  PgQuery__RTEPermissionInfo *rtepermission_info;
@@ -1933,10 +2056,17 @@ struct PgQuery__Node
1933
2056
  PgQuery__CTECycleClause *ctecycle_clause;
1934
2057
  PgQuery__CommonTableExpr *common_table_expr;
1935
2058
  PgQuery__MergeWhenClause *merge_when_clause;
1936
- PgQuery__MergeAction *merge_action;
1937
2059
  PgQuery__TriggerTransition *trigger_transition;
1938
2060
  PgQuery__JsonOutput *json_output;
2061
+ PgQuery__JsonArgument *json_argument;
2062
+ PgQuery__JsonFuncExpr *json_func_expr;
2063
+ PgQuery__JsonTablePathSpec *json_table_path_spec;
2064
+ PgQuery__JsonTable *json_table;
2065
+ PgQuery__JsonTableColumn *json_table_column;
1939
2066
  PgQuery__JsonKeyValue *json_key_value;
2067
+ PgQuery__JsonParseExpr *json_parse_expr;
2068
+ PgQuery__JsonScalarExpr *json_scalar_expr;
2069
+ PgQuery__JsonSerializeExpr *json_serialize_expr;
1940
2070
  PgQuery__JsonObjectConstructor *json_object_constructor;
1941
2071
  PgQuery__JsonArrayConstructor *json_array_constructor;
1942
2072
  PgQuery__JsonArrayQueryConstructor *json_array_query_constructor;
@@ -2243,6 +2373,7 @@ struct PgQuery__RangeVar
2243
2373
  struct PgQuery__TableFunc
2244
2374
  {
2245
2375
  ProtobufCMessage base;
2376
+ PgQuery__TableFuncType functype;
2246
2377
  size_t n_ns_uris;
2247
2378
  PgQuery__Node **ns_uris;
2248
2379
  size_t n_ns_names;
@@ -2261,14 +2392,19 @@ struct PgQuery__TableFunc
2261
2392
  PgQuery__Node **colexprs;
2262
2393
  size_t n_coldefexprs;
2263
2394
  PgQuery__Node **coldefexprs;
2395
+ size_t n_colvalexprs;
2396
+ PgQuery__Node **colvalexprs;
2397
+ size_t n_passingvalexprs;
2398
+ PgQuery__Node **passingvalexprs;
2264
2399
  size_t n_notnulls;
2265
2400
  uint64_t *notnulls;
2401
+ PgQuery__Node *plan;
2266
2402
  int32_t ordinalitycol;
2267
2403
  int32_t location;
2268
2404
  };
2269
2405
  #define PG_QUERY__TABLE_FUNC__INIT \
2270
2406
  { PROTOBUF_C_MESSAGE_INIT (&pg_query__table_func__descriptor) \
2271
- , 0,NULL, 0,NULL, NULL, NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0, 0 }
2407
+ , PG_QUERY__TABLE_FUNC_TYPE__TABLE_FUNC_TYPE_UNDEFINED, 0,NULL, 0,NULL, NULL, NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, NULL, 0, 0 }
2272
2408
 
2273
2409
 
2274
2410
  struct PgQuery__IntoClause
@@ -2385,6 +2521,8 @@ struct PgQuery__WindowFunc
2385
2521
  size_t n_args;
2386
2522
  PgQuery__Node **args;
2387
2523
  PgQuery__Node *aggfilter;
2524
+ size_t n_run_condition;
2525
+ PgQuery__Node **run_condition;
2388
2526
  uint32_t winref;
2389
2527
  protobuf_c_boolean winstar;
2390
2528
  protobuf_c_boolean winagg;
@@ -2392,7 +2530,34 @@ struct PgQuery__WindowFunc
2392
2530
  };
2393
2531
  #define PG_QUERY__WINDOW_FUNC__INIT \
2394
2532
  { PROTOBUF_C_MESSAGE_INIT (&pg_query__window_func__descriptor) \
2395
- , NULL, 0, 0, 0, 0, 0,NULL, NULL, 0, 0, 0, 0 }
2533
+ , NULL, 0, 0, 0, 0, 0,NULL, NULL, 0,NULL, 0, 0, 0, 0 }
2534
+
2535
+
2536
+ struct PgQuery__WindowFuncRunCondition
2537
+ {
2538
+ ProtobufCMessage base;
2539
+ PgQuery__Node *xpr;
2540
+ uint32_t opno;
2541
+ uint32_t inputcollid;
2542
+ protobuf_c_boolean wfunc_left;
2543
+ PgQuery__Node *arg;
2544
+ };
2545
+ #define PG_QUERY__WINDOW_FUNC_RUN_CONDITION__INIT \
2546
+ { PROTOBUF_C_MESSAGE_INIT (&pg_query__window_func_run_condition__descriptor) \
2547
+ , NULL, 0, 0, 0, NULL }
2548
+
2549
+
2550
+ struct PgQuery__MergeSupportFunc
2551
+ {
2552
+ ProtobufCMessage base;
2553
+ PgQuery__Node *xpr;
2554
+ uint32_t msftype;
2555
+ uint32_t msfcollid;
2556
+ int32_t location;
2557
+ };
2558
+ #define PG_QUERY__MERGE_SUPPORT_FUNC__INIT \
2559
+ { PROTOBUF_C_MESSAGE_INIT (&pg_query__merge_support_func__descriptor) \
2560
+ , NULL, 0, 0, 0 }
2396
2561
 
2397
2562
 
2398
2563
  struct PgQuery__SubscriptingRef
@@ -2935,6 +3100,84 @@ struct PgQuery__JsonIsPredicate
2935
3100
  , NULL, NULL, PG_QUERY__JSON_VALUE_TYPE__JSON_VALUE_TYPE_UNDEFINED, 0, 0 }
2936
3101
 
2937
3102
 
3103
+ struct PgQuery__JsonBehavior
3104
+ {
3105
+ ProtobufCMessage base;
3106
+ PgQuery__JsonBehaviorType btype;
3107
+ PgQuery__Node *expr;
3108
+ protobuf_c_boolean coerce;
3109
+ int32_t location;
3110
+ };
3111
+ #define PG_QUERY__JSON_BEHAVIOR__INIT \
3112
+ { PROTOBUF_C_MESSAGE_INIT (&pg_query__json_behavior__descriptor) \
3113
+ , PG_QUERY__JSON_BEHAVIOR_TYPE__JSON_BEHAVIOR_TYPE_UNDEFINED, NULL, 0, 0 }
3114
+
3115
+
3116
+ struct PgQuery__JsonExpr
3117
+ {
3118
+ ProtobufCMessage base;
3119
+ PgQuery__Node *xpr;
3120
+ PgQuery__JsonExprOp op;
3121
+ char *column_name;
3122
+ PgQuery__Node *formatted_expr;
3123
+ PgQuery__JsonFormat *format;
3124
+ PgQuery__Node *path_spec;
3125
+ PgQuery__JsonReturning *returning;
3126
+ size_t n_passing_names;
3127
+ PgQuery__Node **passing_names;
3128
+ size_t n_passing_values;
3129
+ PgQuery__Node **passing_values;
3130
+ PgQuery__JsonBehavior *on_empty;
3131
+ PgQuery__JsonBehavior *on_error;
3132
+ protobuf_c_boolean use_io_coercion;
3133
+ protobuf_c_boolean use_json_coercion;
3134
+ PgQuery__JsonWrapper wrapper;
3135
+ protobuf_c_boolean omit_quotes;
3136
+ uint32_t collation;
3137
+ int32_t location;
3138
+ };
3139
+ #define PG_QUERY__JSON_EXPR__INIT \
3140
+ { PROTOBUF_C_MESSAGE_INIT (&pg_query__json_expr__descriptor) \
3141
+ , NULL, PG_QUERY__JSON_EXPR_OP__JSON_EXPR_OP_UNDEFINED, (char *)protobuf_c_empty_string, NULL, NULL, NULL, NULL, 0,NULL, 0,NULL, NULL, NULL, 0, 0, PG_QUERY__JSON_WRAPPER__JSON_WRAPPER_UNDEFINED, 0, 0, 0 }
3142
+
3143
+
3144
+ struct PgQuery__JsonTablePath
3145
+ {
3146
+ ProtobufCMessage base;
3147
+ char *name;
3148
+ };
3149
+ #define PG_QUERY__JSON_TABLE_PATH__INIT \
3150
+ { PROTOBUF_C_MESSAGE_INIT (&pg_query__json_table_path__descriptor) \
3151
+ , (char *)protobuf_c_empty_string }
3152
+
3153
+
3154
+ struct PgQuery__JsonTablePathScan
3155
+ {
3156
+ ProtobufCMessage base;
3157
+ PgQuery__Node *plan;
3158
+ PgQuery__JsonTablePath *path;
3159
+ protobuf_c_boolean error_on_error;
3160
+ PgQuery__Node *child;
3161
+ int32_t col_min;
3162
+ int32_t col_max;
3163
+ };
3164
+ #define PG_QUERY__JSON_TABLE_PATH_SCAN__INIT \
3165
+ { PROTOBUF_C_MESSAGE_INIT (&pg_query__json_table_path_scan__descriptor) \
3166
+ , NULL, NULL, 0, NULL, 0, 0 }
3167
+
3168
+
3169
+ struct PgQuery__JsonTableSiblingJoin
3170
+ {
3171
+ ProtobufCMessage base;
3172
+ PgQuery__Node *plan;
3173
+ PgQuery__Node *lplan;
3174
+ PgQuery__Node *rplan;
3175
+ };
3176
+ #define PG_QUERY__JSON_TABLE_SIBLING_JOIN__INIT \
3177
+ { PROTOBUF_C_MESSAGE_INIT (&pg_query__json_table_sibling_join__descriptor) \
3178
+ , NULL, NULL, NULL }
3179
+
3180
+
2938
3181
  struct PgQuery__NullTest
2939
3182
  {
2940
3183
  ProtobufCMessage base;
@@ -2962,6 +3205,23 @@ struct PgQuery__BooleanTest
2962
3205
  , NULL, NULL, PG_QUERY__BOOL_TEST_TYPE__BOOL_TEST_TYPE_UNDEFINED, 0 }
2963
3206
 
2964
3207
 
3208
+ struct PgQuery__MergeAction
3209
+ {
3210
+ ProtobufCMessage base;
3211
+ PgQuery__MergeMatchKind match_kind;
3212
+ PgQuery__CmdType command_type;
3213
+ PgQuery__OverridingKind override;
3214
+ PgQuery__Node *qual;
3215
+ size_t n_target_list;
3216
+ PgQuery__Node **target_list;
3217
+ size_t n_update_colnos;
3218
+ PgQuery__Node **update_colnos;
3219
+ };
3220
+ #define PG_QUERY__MERGE_ACTION__INIT \
3221
+ { PROTOBUF_C_MESSAGE_INIT (&pg_query__merge_action__descriptor) \
3222
+ , PG_QUERY__MERGE_MATCH_KIND__MERGE_MATCH_KIND_UNDEFINED, PG_QUERY__CMD_TYPE__CMD_TYPE_UNDEFINED, PG_QUERY__OVERRIDING_KIND__OVERRIDING_KIND_UNDEFINED, NULL, 0,NULL, 0,NULL }
3223
+
3224
+
2965
3225
  struct PgQuery__CoerceToDomain
2966
3226
  {
2967
3227
  ProtobufCMessage base;
@@ -3149,7 +3409,8 @@ struct PgQuery__Query
3149
3409
  PgQuery__FromExpr *jointree;
3150
3410
  size_t n_merge_action_list;
3151
3411
  PgQuery__Node **merge_action_list;
3152
- protobuf_c_boolean merge_use_outer_join;
3412
+ int32_t merge_target_relation;
3413
+ PgQuery__Node *merge_join_condition;
3153
3414
  size_t n_target_list;
3154
3415
  PgQuery__Node **target_list;
3155
3416
  PgQuery__OverridingKind override;
@@ -3183,7 +3444,7 @@ struct PgQuery__Query
3183
3444
  };
3184
3445
  #define PG_QUERY__QUERY__INIT \
3185
3446
  { PROTOBUF_C_MESSAGE_INIT (&pg_query__query__descriptor) \
3186
- , PG_QUERY__CMD_TYPE__CMD_TYPE_UNDEFINED, PG_QUERY__QUERY_SOURCE__QUERY_SOURCE_UNDEFINED, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,NULL, 0,NULL, 0,NULL, NULL, 0,NULL, 0, 0,NULL, PG_QUERY__OVERRIDING_KIND__OVERRIDING_KIND_UNDEFINED, NULL, 0,NULL, 0,NULL, 0, 0,NULL, NULL, 0,NULL, 0,NULL, 0,NULL, NULL, NULL, PG_QUERY__LIMIT_OPTION__LIMIT_OPTION_UNDEFINED, 0,NULL, NULL, 0,NULL, 0,NULL, 0, 0 }
3447
+ , PG_QUERY__CMD_TYPE__CMD_TYPE_UNDEFINED, PG_QUERY__QUERY_SOURCE__QUERY_SOURCE_UNDEFINED, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,NULL, 0,NULL, 0,NULL, NULL, 0,NULL, 0, NULL, 0,NULL, PG_QUERY__OVERRIDING_KIND__OVERRIDING_KIND_UNDEFINED, NULL, 0,NULL, 0,NULL, 0, 0,NULL, NULL, 0,NULL, 0,NULL, 0,NULL, NULL, NULL, PG_QUERY__LIMIT_OPTION__LIMIT_OPTION_UNDEFINED, 0,NULL, NULL, 0,NULL, 0,NULL, 0, 0 }
3187
3448
 
3188
3449
 
3189
3450
  struct PgQuery__TypeName
@@ -3652,6 +3913,15 @@ struct PgQuery__PartitionRangeDatum
3652
3913
  , PG_QUERY__PARTITION_RANGE_DATUM_KIND__PARTITION_RANGE_DATUM_KIND_UNDEFINED, NULL, 0 }
3653
3914
 
3654
3915
 
3916
+ struct PgQuery__SinglePartitionSpec
3917
+ {
3918
+ ProtobufCMessage base;
3919
+ };
3920
+ #define PG_QUERY__SINGLE_PARTITION_SPEC__INIT \
3921
+ { PROTOBUF_C_MESSAGE_INIT (&pg_query__single_partition_spec__descriptor) \
3922
+ }
3923
+
3924
+
3655
3925
  struct PgQuery__PartitionCmd
3656
3926
  {
3657
3927
  ProtobufCMessage base;
@@ -3667,12 +3937,15 @@ struct PgQuery__PartitionCmd
3667
3937
  struct PgQuery__RangeTblEntry
3668
3938
  {
3669
3939
  ProtobufCMessage base;
3940
+ PgQuery__Alias *alias;
3941
+ PgQuery__Alias *eref;
3670
3942
  PgQuery__RTEKind rtekind;
3671
3943
  uint32_t relid;
3944
+ protobuf_c_boolean inh;
3672
3945
  char *relkind;
3673
3946
  int32_t rellockmode;
3674
- PgQuery__TableSampleClause *tablesample;
3675
3947
  uint32_t perminfoindex;
3948
+ PgQuery__TableSampleClause *tablesample;
3676
3949
  PgQuery__Query *subquery;
3677
3950
  protobuf_c_boolean security_barrier;
3678
3951
  PgQuery__JoinType jointype;
@@ -3701,17 +3974,14 @@ struct PgQuery__RangeTblEntry
3701
3974
  PgQuery__Node **colcollations;
3702
3975
  char *enrname;
3703
3976
  double enrtuples;
3704
- PgQuery__Alias *alias;
3705
- PgQuery__Alias *eref;
3706
3977
  protobuf_c_boolean lateral;
3707
- protobuf_c_boolean inh;
3708
3978
  protobuf_c_boolean in_from_cl;
3709
3979
  size_t n_security_quals;
3710
3980
  PgQuery__Node **security_quals;
3711
3981
  };
3712
3982
  #define PG_QUERY__RANGE_TBL_ENTRY__INIT \
3713
3983
  { PROTOBUF_C_MESSAGE_INIT (&pg_query__range_tbl_entry__descriptor) \
3714
- , PG_QUERY__RTEKIND__RTEKIND_UNDEFINED, 0, (char *)protobuf_c_empty_string, 0, NULL, 0, NULL, 0, PG_QUERY__JOIN_TYPE__JOIN_TYPE_UNDEFINED, 0, 0,NULL, 0,NULL, 0,NULL, NULL, 0,NULL, 0, NULL, 0,NULL, (char *)protobuf_c_empty_string, 0, 0, 0,NULL, 0,NULL, 0,NULL, (char *)protobuf_c_empty_string, 0, NULL, NULL, 0, 0, 0, 0,NULL }
3984
+ , NULL, NULL, PG_QUERY__RTEKIND__RTEKIND_UNDEFINED, 0, 0, (char *)protobuf_c_empty_string, 0, 0, NULL, NULL, 0, PG_QUERY__JOIN_TYPE__JOIN_TYPE_UNDEFINED, 0, 0,NULL, 0,NULL, 0,NULL, NULL, 0,NULL, 0, NULL, 0,NULL, (char *)protobuf_c_empty_string, 0, 0, 0,NULL, 0,NULL, 0,NULL, (char *)protobuf_c_empty_string, 0, 0, 0, 0,NULL }
3715
3985
 
3716
3986
 
3717
3987
  struct PgQuery__RTEPermissionInfo
@@ -3719,7 +3989,7 @@ struct PgQuery__RTEPermissionInfo
3719
3989
  ProtobufCMessage base;
3720
3990
  uint32_t relid;
3721
3991
  protobuf_c_boolean inh;
3722
- int64_t required_perms;
3992
+ uint64_t required_perms;
3723
3993
  uint32_t check_as_user;
3724
3994
  size_t n_selected_cols;
3725
3995
  uint64_t *selected_cols;
@@ -3820,8 +4090,6 @@ struct PgQuery__WindowClause
3820
4090
  int32_t frame_options;
3821
4091
  PgQuery__Node *start_offset;
3822
4092
  PgQuery__Node *end_offset;
3823
- size_t n_run_condition;
3824
- PgQuery__Node **run_condition;
3825
4093
  uint32_t start_in_range_func;
3826
4094
  uint32_t end_in_range_func;
3827
4095
  uint32_t in_range_coll;
@@ -3832,7 +4100,7 @@ struct PgQuery__WindowClause
3832
4100
  };
3833
4101
  #define PG_QUERY__WINDOW_CLAUSE__INIT \
3834
4102
  { PROTOBUF_C_MESSAGE_INIT (&pg_query__window_clause__descriptor) \
3835
- , (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0,NULL, 0,NULL, 0, NULL, NULL, 0,NULL, 0, 0, 0, 0, 0, 0, 0 }
4103
+ , (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0,NULL, 0,NULL, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0 }
3836
4104
 
3837
4105
 
3838
4106
  struct PgQuery__RowMarkClause
@@ -3954,7 +4222,7 @@ struct PgQuery__CommonTableExpr
3954
4222
  struct PgQuery__MergeWhenClause
3955
4223
  {
3956
4224
  ProtobufCMessage base;
3957
- protobuf_c_boolean matched;
4225
+ PgQuery__MergeMatchKind match_kind;
3958
4226
  PgQuery__CmdType command_type;
3959
4227
  PgQuery__OverridingKind override;
3960
4228
  PgQuery__Node *condition;
@@ -3965,24 +4233,7 @@ struct PgQuery__MergeWhenClause
3965
4233
  };
3966
4234
  #define PG_QUERY__MERGE_WHEN_CLAUSE__INIT \
3967
4235
  { PROTOBUF_C_MESSAGE_INIT (&pg_query__merge_when_clause__descriptor) \
3968
- , 0, PG_QUERY__CMD_TYPE__CMD_TYPE_UNDEFINED, PG_QUERY__OVERRIDING_KIND__OVERRIDING_KIND_UNDEFINED, NULL, 0,NULL, 0,NULL }
3969
-
3970
-
3971
- struct PgQuery__MergeAction
3972
- {
3973
- ProtobufCMessage base;
3974
- protobuf_c_boolean matched;
3975
- PgQuery__CmdType command_type;
3976
- PgQuery__OverridingKind override;
3977
- PgQuery__Node *qual;
3978
- size_t n_target_list;
3979
- PgQuery__Node **target_list;
3980
- size_t n_update_colnos;
3981
- PgQuery__Node **update_colnos;
3982
- };
3983
- #define PG_QUERY__MERGE_ACTION__INIT \
3984
- { PROTOBUF_C_MESSAGE_INIT (&pg_query__merge_action__descriptor) \
3985
- , 0, PG_QUERY__CMD_TYPE__CMD_TYPE_UNDEFINED, PG_QUERY__OVERRIDING_KIND__OVERRIDING_KIND_UNDEFINED, NULL, 0,NULL, 0,NULL }
4236
+ , PG_QUERY__MERGE_MATCH_KIND__MERGE_MATCH_KIND_UNDEFINED, PG_QUERY__CMD_TYPE__CMD_TYPE_UNDEFINED, PG_QUERY__OVERRIDING_KIND__OVERRIDING_KIND_UNDEFINED, NULL, 0,NULL, 0,NULL }
3986
4237
 
3987
4238
 
3988
4239
  struct PgQuery__TriggerTransition
@@ -4008,6 +4259,91 @@ struct PgQuery__JsonOutput
4008
4259
  , NULL, NULL }
4009
4260
 
4010
4261
 
4262
+ struct PgQuery__JsonArgument
4263
+ {
4264
+ ProtobufCMessage base;
4265
+ PgQuery__JsonValueExpr *val;
4266
+ char *name;
4267
+ };
4268
+ #define PG_QUERY__JSON_ARGUMENT__INIT \
4269
+ { PROTOBUF_C_MESSAGE_INIT (&pg_query__json_argument__descriptor) \
4270
+ , NULL, (char *)protobuf_c_empty_string }
4271
+
4272
+
4273
+ struct PgQuery__JsonFuncExpr
4274
+ {
4275
+ ProtobufCMessage base;
4276
+ PgQuery__JsonExprOp op;
4277
+ char *column_name;
4278
+ PgQuery__JsonValueExpr *context_item;
4279
+ PgQuery__Node *pathspec;
4280
+ size_t n_passing;
4281
+ PgQuery__Node **passing;
4282
+ PgQuery__JsonOutput *output;
4283
+ PgQuery__JsonBehavior *on_empty;
4284
+ PgQuery__JsonBehavior *on_error;
4285
+ PgQuery__JsonWrapper wrapper;
4286
+ PgQuery__JsonQuotes quotes;
4287
+ int32_t location;
4288
+ };
4289
+ #define PG_QUERY__JSON_FUNC_EXPR__INIT \
4290
+ { PROTOBUF_C_MESSAGE_INIT (&pg_query__json_func_expr__descriptor) \
4291
+ , PG_QUERY__JSON_EXPR_OP__JSON_EXPR_OP_UNDEFINED, (char *)protobuf_c_empty_string, NULL, NULL, 0,NULL, NULL, NULL, NULL, PG_QUERY__JSON_WRAPPER__JSON_WRAPPER_UNDEFINED, PG_QUERY__JSON_QUOTES__JSON_QUOTES_UNDEFINED, 0 }
4292
+
4293
+
4294
+ struct PgQuery__JsonTablePathSpec
4295
+ {
4296
+ ProtobufCMessage base;
4297
+ PgQuery__Node *string;
4298
+ char *name;
4299
+ int32_t name_location;
4300
+ int32_t location;
4301
+ };
4302
+ #define PG_QUERY__JSON_TABLE_PATH_SPEC__INIT \
4303
+ { PROTOBUF_C_MESSAGE_INIT (&pg_query__json_table_path_spec__descriptor) \
4304
+ , NULL, (char *)protobuf_c_empty_string, 0, 0 }
4305
+
4306
+
4307
+ struct PgQuery__JsonTable
4308
+ {
4309
+ ProtobufCMessage base;
4310
+ PgQuery__JsonValueExpr *context_item;
4311
+ PgQuery__JsonTablePathSpec *pathspec;
4312
+ size_t n_passing;
4313
+ PgQuery__Node **passing;
4314
+ size_t n_columns;
4315
+ PgQuery__Node **columns;
4316
+ PgQuery__JsonBehavior *on_error;
4317
+ PgQuery__Alias *alias;
4318
+ protobuf_c_boolean lateral;
4319
+ int32_t location;
4320
+ };
4321
+ #define PG_QUERY__JSON_TABLE__INIT \
4322
+ { PROTOBUF_C_MESSAGE_INIT (&pg_query__json_table__descriptor) \
4323
+ , NULL, NULL, 0,NULL, 0,NULL, NULL, NULL, 0, 0 }
4324
+
4325
+
4326
+ struct PgQuery__JsonTableColumn
4327
+ {
4328
+ ProtobufCMessage base;
4329
+ PgQuery__JsonTableColumnType coltype;
4330
+ char *name;
4331
+ PgQuery__TypeName *type_name;
4332
+ PgQuery__JsonTablePathSpec *pathspec;
4333
+ PgQuery__JsonFormat *format;
4334
+ PgQuery__JsonWrapper wrapper;
4335
+ PgQuery__JsonQuotes quotes;
4336
+ size_t n_columns;
4337
+ PgQuery__Node **columns;
4338
+ PgQuery__JsonBehavior *on_empty;
4339
+ PgQuery__JsonBehavior *on_error;
4340
+ int32_t location;
4341
+ };
4342
+ #define PG_QUERY__JSON_TABLE_COLUMN__INIT \
4343
+ { PROTOBUF_C_MESSAGE_INIT (&pg_query__json_table_column__descriptor) \
4344
+ , PG_QUERY__JSON_TABLE_COLUMN_TYPE__JSON_TABLE_COLUMN_TYPE_UNDEFINED, (char *)protobuf_c_empty_string, NULL, NULL, NULL, PG_QUERY__JSON_WRAPPER__JSON_WRAPPER_UNDEFINED, PG_QUERY__JSON_QUOTES__JSON_QUOTES_UNDEFINED, 0,NULL, NULL, NULL, 0 }
4345
+
4346
+
4011
4347
  struct PgQuery__JsonKeyValue
4012
4348
  {
4013
4349
  ProtobufCMessage base;
@@ -4019,6 +4355,43 @@ struct PgQuery__JsonKeyValue
4019
4355
  , NULL, NULL }
4020
4356
 
4021
4357
 
4358
+ struct PgQuery__JsonParseExpr
4359
+ {
4360
+ ProtobufCMessage base;
4361
+ PgQuery__JsonValueExpr *expr;
4362
+ PgQuery__JsonOutput *output;
4363
+ protobuf_c_boolean unique_keys;
4364
+ int32_t location;
4365
+ };
4366
+ #define PG_QUERY__JSON_PARSE_EXPR__INIT \
4367
+ { PROTOBUF_C_MESSAGE_INIT (&pg_query__json_parse_expr__descriptor) \
4368
+ , NULL, NULL, 0, 0 }
4369
+
4370
+
4371
+ struct PgQuery__JsonScalarExpr
4372
+ {
4373
+ ProtobufCMessage base;
4374
+ PgQuery__Node *expr;
4375
+ PgQuery__JsonOutput *output;
4376
+ int32_t location;
4377
+ };
4378
+ #define PG_QUERY__JSON_SCALAR_EXPR__INIT \
4379
+ { PROTOBUF_C_MESSAGE_INIT (&pg_query__json_scalar_expr__descriptor) \
4380
+ , NULL, NULL, 0 }
4381
+
4382
+
4383
+ struct PgQuery__JsonSerializeExpr
4384
+ {
4385
+ ProtobufCMessage base;
4386
+ PgQuery__JsonValueExpr *expr;
4387
+ PgQuery__JsonOutput *output;
4388
+ int32_t location;
4389
+ };
4390
+ #define PG_QUERY__JSON_SERIALIZE_EXPR__INIT \
4391
+ { PROTOBUF_C_MESSAGE_INIT (&pg_query__json_serialize_expr__descriptor) \
4392
+ , NULL, NULL, 0 }
4393
+
4394
+
4022
4395
  struct PgQuery__JsonObjectConstructor
4023
4396
  {
4024
4397
  ProtobufCMessage base;
@@ -4174,11 +4547,13 @@ struct PgQuery__MergeStmt
4174
4547
  PgQuery__Node *join_condition;
4175
4548
  size_t n_merge_when_clauses;
4176
4549
  PgQuery__Node **merge_when_clauses;
4550
+ size_t n_returning_list;
4551
+ PgQuery__Node **returning_list;
4177
4552
  PgQuery__WithClause *with_clause;
4178
4553
  };
4179
4554
  #define PG_QUERY__MERGE_STMT__INIT \
4180
4555
  { PROTOBUF_C_MESSAGE_INIT (&pg_query__merge_stmt__descriptor) \
4181
- , NULL, NULL, NULL, 0,NULL, NULL }
4556
+ , NULL, NULL, NULL, 0,NULL, 0,NULL, NULL }
4182
4557
 
4183
4558
 
4184
4559
  struct PgQuery__SelectStmt
@@ -4501,11 +4876,13 @@ struct PgQuery__Constraint
4501
4876
  char *conname;
4502
4877
  protobuf_c_boolean deferrable;
4503
4878
  protobuf_c_boolean initdeferred;
4504
- int32_t location;
4879
+ protobuf_c_boolean skip_validation;
4880
+ protobuf_c_boolean initially_valid;
4505
4881
  protobuf_c_boolean is_no_inherit;
4506
4882
  PgQuery__Node *raw_expr;
4507
4883
  char *cooked_expr;
4508
4884
  char *generated_when;
4885
+ int32_t inhcount;
4509
4886
  protobuf_c_boolean nulls_not_distinct;
4510
4887
  size_t n_keys;
4511
4888
  PgQuery__Node **keys;
@@ -4533,12 +4910,11 @@ struct PgQuery__Constraint
4533
4910
  size_t n_old_conpfeqop;
4534
4911
  PgQuery__Node **old_conpfeqop;
4535
4912
  uint32_t old_pktable_oid;
4536
- protobuf_c_boolean skip_validation;
4537
- protobuf_c_boolean initially_valid;
4913
+ int32_t location;
4538
4914
  };
4539
4915
  #define PG_QUERY__CONSTRAINT__INIT \
4540
4916
  { PROTOBUF_C_MESSAGE_INIT (&pg_query__constraint__descriptor) \
4541
- , PG_QUERY__CONSTR_TYPE__CONSTR_TYPE_UNDEFINED, (char *)protobuf_c_empty_string, 0, 0, 0, 0, NULL, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0, 0,NULL, 0,NULL, 0,NULL, 0,NULL, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0, (char *)protobuf_c_empty_string, NULL, NULL, 0,NULL, 0,NULL, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0,NULL, 0,NULL, 0, 0, 0 }
4917
+ , PG_QUERY__CONSTR_TYPE__CONSTR_TYPE_UNDEFINED, (char *)protobuf_c_empty_string, 0, 0, 0, 0, 0, NULL, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0, 0, 0,NULL, 0,NULL, 0,NULL, 0,NULL, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0, (char *)protobuf_c_empty_string, NULL, NULL, 0,NULL, 0,NULL, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0,NULL, 0,NULL, 0, 0 }
4542
4918
 
4543
4919
 
4544
4920
  struct PgQuery__CreateTableSpaceStmt
@@ -5212,12 +5588,12 @@ struct PgQuery__AlterStatsStmt
5212
5588
  ProtobufCMessage base;
5213
5589
  size_t n_defnames;
5214
5590
  PgQuery__Node **defnames;
5215
- int32_t stxstattarget;
5591
+ PgQuery__Node *stxstattarget;
5216
5592
  protobuf_c_boolean missing_ok;
5217
5593
  };
5218
5594
  #define PG_QUERY__ALTER_STATS_STMT__INIT \
5219
5595
  { PROTOBUF_C_MESSAGE_INIT (&pg_query__alter_stats_stmt__descriptor) \
5220
- , 0,NULL, 0, 0 }
5596
+ , 0,NULL, NULL, 0 }
5221
5597
 
5222
5598
 
5223
5599
  struct PgQuery__CreateFunctionStmt
@@ -5452,10 +5828,11 @@ struct PgQuery__TransactionStmt
5452
5828
  char *savepoint_name;
5453
5829
  char *gid;
5454
5830
  protobuf_c_boolean chain;
5831
+ int32_t location;
5455
5832
  };
5456
5833
  #define PG_QUERY__TRANSACTION_STMT__INIT \
5457
5834
  { PROTOBUF_C_MESSAGE_INIT (&pg_query__transaction_stmt__descriptor) \
5458
- , PG_QUERY__TRANSACTION_STMT_KIND__TRANSACTION_STMT_KIND_UNDEFINED, 0,NULL, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0 }
5835
+ , PG_QUERY__TRANSACTION_STMT_KIND__TRANSACTION_STMT_KIND_UNDEFINED, 0,NULL, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0, 0 }
5459
5836
 
5460
5837
 
5461
5838
  struct PgQuery__CompositeTypeStmt
@@ -5816,10 +6193,12 @@ struct PgQuery__DeallocateStmt
5816
6193
  {
5817
6194
  ProtobufCMessage base;
5818
6195
  char *name;
6196
+ protobuf_c_boolean isall;
6197
+ int32_t location;
5819
6198
  };
5820
6199
  #define PG_QUERY__DEALLOCATE_STMT__INIT \
5821
6200
  { PROTOBUF_C_MESSAGE_INIT (&pg_query__deallocate_stmt__descriptor) \
5822
- , (char *)protobuf_c_empty_string }
6201
+ , (char *)protobuf_c_empty_string, 0, 0 }
5823
6202
 
5824
6203
 
5825
6204
  struct PgQuery__DropOwnedStmt
@@ -6390,6 +6769,44 @@ PgQuery__WindowFunc *
6390
6769
  void pg_query__window_func__free_unpacked
6391
6770
  (PgQuery__WindowFunc *message,
6392
6771
  ProtobufCAllocator *allocator);
6772
+ /* PgQuery__WindowFuncRunCondition methods */
6773
+ void pg_query__window_func_run_condition__init
6774
+ (PgQuery__WindowFuncRunCondition *message);
6775
+ size_t pg_query__window_func_run_condition__get_packed_size
6776
+ (const PgQuery__WindowFuncRunCondition *message);
6777
+ size_t pg_query__window_func_run_condition__pack
6778
+ (const PgQuery__WindowFuncRunCondition *message,
6779
+ uint8_t *out);
6780
+ size_t pg_query__window_func_run_condition__pack_to_buffer
6781
+ (const PgQuery__WindowFuncRunCondition *message,
6782
+ ProtobufCBuffer *buffer);
6783
+ PgQuery__WindowFuncRunCondition *
6784
+ pg_query__window_func_run_condition__unpack
6785
+ (ProtobufCAllocator *allocator,
6786
+ size_t len,
6787
+ const uint8_t *data);
6788
+ void pg_query__window_func_run_condition__free_unpacked
6789
+ (PgQuery__WindowFuncRunCondition *message,
6790
+ ProtobufCAllocator *allocator);
6791
+ /* PgQuery__MergeSupportFunc methods */
6792
+ void pg_query__merge_support_func__init
6793
+ (PgQuery__MergeSupportFunc *message);
6794
+ size_t pg_query__merge_support_func__get_packed_size
6795
+ (const PgQuery__MergeSupportFunc *message);
6796
+ size_t pg_query__merge_support_func__pack
6797
+ (const PgQuery__MergeSupportFunc *message,
6798
+ uint8_t *out);
6799
+ size_t pg_query__merge_support_func__pack_to_buffer
6800
+ (const PgQuery__MergeSupportFunc *message,
6801
+ ProtobufCBuffer *buffer);
6802
+ PgQuery__MergeSupportFunc *
6803
+ pg_query__merge_support_func__unpack
6804
+ (ProtobufCAllocator *allocator,
6805
+ size_t len,
6806
+ const uint8_t *data);
6807
+ void pg_query__merge_support_func__free_unpacked
6808
+ (PgQuery__MergeSupportFunc *message,
6809
+ ProtobufCAllocator *allocator);
6393
6810
  /* PgQuery__SubscriptingRef methods */
6394
6811
  void pg_query__subscripting_ref__init
6395
6812
  (PgQuery__SubscriptingRef *message);
@@ -7017,6 +7434,101 @@ PgQuery__JsonIsPredicate *
7017
7434
  void pg_query__json_is_predicate__free_unpacked
7018
7435
  (PgQuery__JsonIsPredicate *message,
7019
7436
  ProtobufCAllocator *allocator);
7437
+ /* PgQuery__JsonBehavior methods */
7438
+ void pg_query__json_behavior__init
7439
+ (PgQuery__JsonBehavior *message);
7440
+ size_t pg_query__json_behavior__get_packed_size
7441
+ (const PgQuery__JsonBehavior *message);
7442
+ size_t pg_query__json_behavior__pack
7443
+ (const PgQuery__JsonBehavior *message,
7444
+ uint8_t *out);
7445
+ size_t pg_query__json_behavior__pack_to_buffer
7446
+ (const PgQuery__JsonBehavior *message,
7447
+ ProtobufCBuffer *buffer);
7448
+ PgQuery__JsonBehavior *
7449
+ pg_query__json_behavior__unpack
7450
+ (ProtobufCAllocator *allocator,
7451
+ size_t len,
7452
+ const uint8_t *data);
7453
+ void pg_query__json_behavior__free_unpacked
7454
+ (PgQuery__JsonBehavior *message,
7455
+ ProtobufCAllocator *allocator);
7456
+ /* PgQuery__JsonExpr methods */
7457
+ void pg_query__json_expr__init
7458
+ (PgQuery__JsonExpr *message);
7459
+ size_t pg_query__json_expr__get_packed_size
7460
+ (const PgQuery__JsonExpr *message);
7461
+ size_t pg_query__json_expr__pack
7462
+ (const PgQuery__JsonExpr *message,
7463
+ uint8_t *out);
7464
+ size_t pg_query__json_expr__pack_to_buffer
7465
+ (const PgQuery__JsonExpr *message,
7466
+ ProtobufCBuffer *buffer);
7467
+ PgQuery__JsonExpr *
7468
+ pg_query__json_expr__unpack
7469
+ (ProtobufCAllocator *allocator,
7470
+ size_t len,
7471
+ const uint8_t *data);
7472
+ void pg_query__json_expr__free_unpacked
7473
+ (PgQuery__JsonExpr *message,
7474
+ ProtobufCAllocator *allocator);
7475
+ /* PgQuery__JsonTablePath methods */
7476
+ void pg_query__json_table_path__init
7477
+ (PgQuery__JsonTablePath *message);
7478
+ size_t pg_query__json_table_path__get_packed_size
7479
+ (const PgQuery__JsonTablePath *message);
7480
+ size_t pg_query__json_table_path__pack
7481
+ (const PgQuery__JsonTablePath *message,
7482
+ uint8_t *out);
7483
+ size_t pg_query__json_table_path__pack_to_buffer
7484
+ (const PgQuery__JsonTablePath *message,
7485
+ ProtobufCBuffer *buffer);
7486
+ PgQuery__JsonTablePath *
7487
+ pg_query__json_table_path__unpack
7488
+ (ProtobufCAllocator *allocator,
7489
+ size_t len,
7490
+ const uint8_t *data);
7491
+ void pg_query__json_table_path__free_unpacked
7492
+ (PgQuery__JsonTablePath *message,
7493
+ ProtobufCAllocator *allocator);
7494
+ /* PgQuery__JsonTablePathScan methods */
7495
+ void pg_query__json_table_path_scan__init
7496
+ (PgQuery__JsonTablePathScan *message);
7497
+ size_t pg_query__json_table_path_scan__get_packed_size
7498
+ (const PgQuery__JsonTablePathScan *message);
7499
+ size_t pg_query__json_table_path_scan__pack
7500
+ (const PgQuery__JsonTablePathScan *message,
7501
+ uint8_t *out);
7502
+ size_t pg_query__json_table_path_scan__pack_to_buffer
7503
+ (const PgQuery__JsonTablePathScan *message,
7504
+ ProtobufCBuffer *buffer);
7505
+ PgQuery__JsonTablePathScan *
7506
+ pg_query__json_table_path_scan__unpack
7507
+ (ProtobufCAllocator *allocator,
7508
+ size_t len,
7509
+ const uint8_t *data);
7510
+ void pg_query__json_table_path_scan__free_unpacked
7511
+ (PgQuery__JsonTablePathScan *message,
7512
+ ProtobufCAllocator *allocator);
7513
+ /* PgQuery__JsonTableSiblingJoin methods */
7514
+ void pg_query__json_table_sibling_join__init
7515
+ (PgQuery__JsonTableSiblingJoin *message);
7516
+ size_t pg_query__json_table_sibling_join__get_packed_size
7517
+ (const PgQuery__JsonTableSiblingJoin *message);
7518
+ size_t pg_query__json_table_sibling_join__pack
7519
+ (const PgQuery__JsonTableSiblingJoin *message,
7520
+ uint8_t *out);
7521
+ size_t pg_query__json_table_sibling_join__pack_to_buffer
7522
+ (const PgQuery__JsonTableSiblingJoin *message,
7523
+ ProtobufCBuffer *buffer);
7524
+ PgQuery__JsonTableSiblingJoin *
7525
+ pg_query__json_table_sibling_join__unpack
7526
+ (ProtobufCAllocator *allocator,
7527
+ size_t len,
7528
+ const uint8_t *data);
7529
+ void pg_query__json_table_sibling_join__free_unpacked
7530
+ (PgQuery__JsonTableSiblingJoin *message,
7531
+ ProtobufCAllocator *allocator);
7020
7532
  /* PgQuery__NullTest methods */
7021
7533
  void pg_query__null_test__init
7022
7534
  (PgQuery__NullTest *message);
@@ -7055,6 +7567,25 @@ PgQuery__BooleanTest *
7055
7567
  void pg_query__boolean_test__free_unpacked
7056
7568
  (PgQuery__BooleanTest *message,
7057
7569
  ProtobufCAllocator *allocator);
7570
+ /* PgQuery__MergeAction methods */
7571
+ void pg_query__merge_action__init
7572
+ (PgQuery__MergeAction *message);
7573
+ size_t pg_query__merge_action__get_packed_size
7574
+ (const PgQuery__MergeAction *message);
7575
+ size_t pg_query__merge_action__pack
7576
+ (const PgQuery__MergeAction *message,
7577
+ uint8_t *out);
7578
+ size_t pg_query__merge_action__pack_to_buffer
7579
+ (const PgQuery__MergeAction *message,
7580
+ ProtobufCBuffer *buffer);
7581
+ PgQuery__MergeAction *
7582
+ pg_query__merge_action__unpack
7583
+ (ProtobufCAllocator *allocator,
7584
+ size_t len,
7585
+ const uint8_t *data);
7586
+ void pg_query__merge_action__free_unpacked
7587
+ (PgQuery__MergeAction *message,
7588
+ ProtobufCAllocator *allocator);
7058
7589
  /* PgQuery__CoerceToDomain methods */
7059
7590
  void pg_query__coerce_to_domain__init
7060
7591
  (PgQuery__CoerceToDomain *message);
@@ -7872,6 +8403,25 @@ PgQuery__PartitionRangeDatum *
7872
8403
  void pg_query__partition_range_datum__free_unpacked
7873
8404
  (PgQuery__PartitionRangeDatum *message,
7874
8405
  ProtobufCAllocator *allocator);
8406
+ /* PgQuery__SinglePartitionSpec methods */
8407
+ void pg_query__single_partition_spec__init
8408
+ (PgQuery__SinglePartitionSpec *message);
8409
+ size_t pg_query__single_partition_spec__get_packed_size
8410
+ (const PgQuery__SinglePartitionSpec *message);
8411
+ size_t pg_query__single_partition_spec__pack
8412
+ (const PgQuery__SinglePartitionSpec *message,
8413
+ uint8_t *out);
8414
+ size_t pg_query__single_partition_spec__pack_to_buffer
8415
+ (const PgQuery__SinglePartitionSpec *message,
8416
+ ProtobufCBuffer *buffer);
8417
+ PgQuery__SinglePartitionSpec *
8418
+ pg_query__single_partition_spec__unpack
8419
+ (ProtobufCAllocator *allocator,
8420
+ size_t len,
8421
+ const uint8_t *data);
8422
+ void pg_query__single_partition_spec__free_unpacked
8423
+ (PgQuery__SinglePartitionSpec *message,
8424
+ ProtobufCAllocator *allocator);
7875
8425
  /* PgQuery__PartitionCmd methods */
7876
8426
  void pg_query__partition_cmd__init
7877
8427
  (PgQuery__PartitionCmd *message);
@@ -8195,25 +8745,6 @@ PgQuery__MergeWhenClause *
8195
8745
  void pg_query__merge_when_clause__free_unpacked
8196
8746
  (PgQuery__MergeWhenClause *message,
8197
8747
  ProtobufCAllocator *allocator);
8198
- /* PgQuery__MergeAction methods */
8199
- void pg_query__merge_action__init
8200
- (PgQuery__MergeAction *message);
8201
- size_t pg_query__merge_action__get_packed_size
8202
- (const PgQuery__MergeAction *message);
8203
- size_t pg_query__merge_action__pack
8204
- (const PgQuery__MergeAction *message,
8205
- uint8_t *out);
8206
- size_t pg_query__merge_action__pack_to_buffer
8207
- (const PgQuery__MergeAction *message,
8208
- ProtobufCBuffer *buffer);
8209
- PgQuery__MergeAction *
8210
- pg_query__merge_action__unpack
8211
- (ProtobufCAllocator *allocator,
8212
- size_t len,
8213
- const uint8_t *data);
8214
- void pg_query__merge_action__free_unpacked
8215
- (PgQuery__MergeAction *message,
8216
- ProtobufCAllocator *allocator);
8217
8748
  /* PgQuery__TriggerTransition methods */
8218
8749
  void pg_query__trigger_transition__init
8219
8750
  (PgQuery__TriggerTransition *message);
@@ -8252,6 +8783,101 @@ PgQuery__JsonOutput *
8252
8783
  void pg_query__json_output__free_unpacked
8253
8784
  (PgQuery__JsonOutput *message,
8254
8785
  ProtobufCAllocator *allocator);
8786
+ /* PgQuery__JsonArgument methods */
8787
+ void pg_query__json_argument__init
8788
+ (PgQuery__JsonArgument *message);
8789
+ size_t pg_query__json_argument__get_packed_size
8790
+ (const PgQuery__JsonArgument *message);
8791
+ size_t pg_query__json_argument__pack
8792
+ (const PgQuery__JsonArgument *message,
8793
+ uint8_t *out);
8794
+ size_t pg_query__json_argument__pack_to_buffer
8795
+ (const PgQuery__JsonArgument *message,
8796
+ ProtobufCBuffer *buffer);
8797
+ PgQuery__JsonArgument *
8798
+ pg_query__json_argument__unpack
8799
+ (ProtobufCAllocator *allocator,
8800
+ size_t len,
8801
+ const uint8_t *data);
8802
+ void pg_query__json_argument__free_unpacked
8803
+ (PgQuery__JsonArgument *message,
8804
+ ProtobufCAllocator *allocator);
8805
+ /* PgQuery__JsonFuncExpr methods */
8806
+ void pg_query__json_func_expr__init
8807
+ (PgQuery__JsonFuncExpr *message);
8808
+ size_t pg_query__json_func_expr__get_packed_size
8809
+ (const PgQuery__JsonFuncExpr *message);
8810
+ size_t pg_query__json_func_expr__pack
8811
+ (const PgQuery__JsonFuncExpr *message,
8812
+ uint8_t *out);
8813
+ size_t pg_query__json_func_expr__pack_to_buffer
8814
+ (const PgQuery__JsonFuncExpr *message,
8815
+ ProtobufCBuffer *buffer);
8816
+ PgQuery__JsonFuncExpr *
8817
+ pg_query__json_func_expr__unpack
8818
+ (ProtobufCAllocator *allocator,
8819
+ size_t len,
8820
+ const uint8_t *data);
8821
+ void pg_query__json_func_expr__free_unpacked
8822
+ (PgQuery__JsonFuncExpr *message,
8823
+ ProtobufCAllocator *allocator);
8824
+ /* PgQuery__JsonTablePathSpec methods */
8825
+ void pg_query__json_table_path_spec__init
8826
+ (PgQuery__JsonTablePathSpec *message);
8827
+ size_t pg_query__json_table_path_spec__get_packed_size
8828
+ (const PgQuery__JsonTablePathSpec *message);
8829
+ size_t pg_query__json_table_path_spec__pack
8830
+ (const PgQuery__JsonTablePathSpec *message,
8831
+ uint8_t *out);
8832
+ size_t pg_query__json_table_path_spec__pack_to_buffer
8833
+ (const PgQuery__JsonTablePathSpec *message,
8834
+ ProtobufCBuffer *buffer);
8835
+ PgQuery__JsonTablePathSpec *
8836
+ pg_query__json_table_path_spec__unpack
8837
+ (ProtobufCAllocator *allocator,
8838
+ size_t len,
8839
+ const uint8_t *data);
8840
+ void pg_query__json_table_path_spec__free_unpacked
8841
+ (PgQuery__JsonTablePathSpec *message,
8842
+ ProtobufCAllocator *allocator);
8843
+ /* PgQuery__JsonTable methods */
8844
+ void pg_query__json_table__init
8845
+ (PgQuery__JsonTable *message);
8846
+ size_t pg_query__json_table__get_packed_size
8847
+ (const PgQuery__JsonTable *message);
8848
+ size_t pg_query__json_table__pack
8849
+ (const PgQuery__JsonTable *message,
8850
+ uint8_t *out);
8851
+ size_t pg_query__json_table__pack_to_buffer
8852
+ (const PgQuery__JsonTable *message,
8853
+ ProtobufCBuffer *buffer);
8854
+ PgQuery__JsonTable *
8855
+ pg_query__json_table__unpack
8856
+ (ProtobufCAllocator *allocator,
8857
+ size_t len,
8858
+ const uint8_t *data);
8859
+ void pg_query__json_table__free_unpacked
8860
+ (PgQuery__JsonTable *message,
8861
+ ProtobufCAllocator *allocator);
8862
+ /* PgQuery__JsonTableColumn methods */
8863
+ void pg_query__json_table_column__init
8864
+ (PgQuery__JsonTableColumn *message);
8865
+ size_t pg_query__json_table_column__get_packed_size
8866
+ (const PgQuery__JsonTableColumn *message);
8867
+ size_t pg_query__json_table_column__pack
8868
+ (const PgQuery__JsonTableColumn *message,
8869
+ uint8_t *out);
8870
+ size_t pg_query__json_table_column__pack_to_buffer
8871
+ (const PgQuery__JsonTableColumn *message,
8872
+ ProtobufCBuffer *buffer);
8873
+ PgQuery__JsonTableColumn *
8874
+ pg_query__json_table_column__unpack
8875
+ (ProtobufCAllocator *allocator,
8876
+ size_t len,
8877
+ const uint8_t *data);
8878
+ void pg_query__json_table_column__free_unpacked
8879
+ (PgQuery__JsonTableColumn *message,
8880
+ ProtobufCAllocator *allocator);
8255
8881
  /* PgQuery__JsonKeyValue methods */
8256
8882
  void pg_query__json_key_value__init
8257
8883
  (PgQuery__JsonKeyValue *message);
@@ -8271,6 +8897,63 @@ PgQuery__JsonKeyValue *
8271
8897
  void pg_query__json_key_value__free_unpacked
8272
8898
  (PgQuery__JsonKeyValue *message,
8273
8899
  ProtobufCAllocator *allocator);
8900
+ /* PgQuery__JsonParseExpr methods */
8901
+ void pg_query__json_parse_expr__init
8902
+ (PgQuery__JsonParseExpr *message);
8903
+ size_t pg_query__json_parse_expr__get_packed_size
8904
+ (const PgQuery__JsonParseExpr *message);
8905
+ size_t pg_query__json_parse_expr__pack
8906
+ (const PgQuery__JsonParseExpr *message,
8907
+ uint8_t *out);
8908
+ size_t pg_query__json_parse_expr__pack_to_buffer
8909
+ (const PgQuery__JsonParseExpr *message,
8910
+ ProtobufCBuffer *buffer);
8911
+ PgQuery__JsonParseExpr *
8912
+ pg_query__json_parse_expr__unpack
8913
+ (ProtobufCAllocator *allocator,
8914
+ size_t len,
8915
+ const uint8_t *data);
8916
+ void pg_query__json_parse_expr__free_unpacked
8917
+ (PgQuery__JsonParseExpr *message,
8918
+ ProtobufCAllocator *allocator);
8919
+ /* PgQuery__JsonScalarExpr methods */
8920
+ void pg_query__json_scalar_expr__init
8921
+ (PgQuery__JsonScalarExpr *message);
8922
+ size_t pg_query__json_scalar_expr__get_packed_size
8923
+ (const PgQuery__JsonScalarExpr *message);
8924
+ size_t pg_query__json_scalar_expr__pack
8925
+ (const PgQuery__JsonScalarExpr *message,
8926
+ uint8_t *out);
8927
+ size_t pg_query__json_scalar_expr__pack_to_buffer
8928
+ (const PgQuery__JsonScalarExpr *message,
8929
+ ProtobufCBuffer *buffer);
8930
+ PgQuery__JsonScalarExpr *
8931
+ pg_query__json_scalar_expr__unpack
8932
+ (ProtobufCAllocator *allocator,
8933
+ size_t len,
8934
+ const uint8_t *data);
8935
+ void pg_query__json_scalar_expr__free_unpacked
8936
+ (PgQuery__JsonScalarExpr *message,
8937
+ ProtobufCAllocator *allocator);
8938
+ /* PgQuery__JsonSerializeExpr methods */
8939
+ void pg_query__json_serialize_expr__init
8940
+ (PgQuery__JsonSerializeExpr *message);
8941
+ size_t pg_query__json_serialize_expr__get_packed_size
8942
+ (const PgQuery__JsonSerializeExpr *message);
8943
+ size_t pg_query__json_serialize_expr__pack
8944
+ (const PgQuery__JsonSerializeExpr *message,
8945
+ uint8_t *out);
8946
+ size_t pg_query__json_serialize_expr__pack_to_buffer
8947
+ (const PgQuery__JsonSerializeExpr *message,
8948
+ ProtobufCBuffer *buffer);
8949
+ PgQuery__JsonSerializeExpr *
8950
+ pg_query__json_serialize_expr__unpack
8951
+ (ProtobufCAllocator *allocator,
8952
+ size_t len,
8953
+ const uint8_t *data);
8954
+ void pg_query__json_serialize_expr__free_unpacked
8955
+ (PgQuery__JsonSerializeExpr *message,
8956
+ ProtobufCAllocator *allocator);
8274
8957
  /* PgQuery__JsonObjectConstructor methods */
8275
8958
  void pg_query__json_object_constructor__init
8276
8959
  (PgQuery__JsonObjectConstructor *message);
@@ -10920,6 +11603,12 @@ typedef void (*PgQuery__GroupingFunc_Closure)
10920
11603
  typedef void (*PgQuery__WindowFunc_Closure)
10921
11604
  (const PgQuery__WindowFunc *message,
10922
11605
  void *closure_data);
11606
+ typedef void (*PgQuery__WindowFuncRunCondition_Closure)
11607
+ (const PgQuery__WindowFuncRunCondition *message,
11608
+ void *closure_data);
11609
+ typedef void (*PgQuery__MergeSupportFunc_Closure)
11610
+ (const PgQuery__MergeSupportFunc *message,
11611
+ void *closure_data);
10923
11612
  typedef void (*PgQuery__SubscriptingRef_Closure)
10924
11613
  (const PgQuery__SubscriptingRef *message,
10925
11614
  void *closure_data);
@@ -11019,12 +11708,30 @@ typedef void (*PgQuery__JsonConstructorExpr_Closure)
11019
11708
  typedef void (*PgQuery__JsonIsPredicate_Closure)
11020
11709
  (const PgQuery__JsonIsPredicate *message,
11021
11710
  void *closure_data);
11711
+ typedef void (*PgQuery__JsonBehavior_Closure)
11712
+ (const PgQuery__JsonBehavior *message,
11713
+ void *closure_data);
11714
+ typedef void (*PgQuery__JsonExpr_Closure)
11715
+ (const PgQuery__JsonExpr *message,
11716
+ void *closure_data);
11717
+ typedef void (*PgQuery__JsonTablePath_Closure)
11718
+ (const PgQuery__JsonTablePath *message,
11719
+ void *closure_data);
11720
+ typedef void (*PgQuery__JsonTablePathScan_Closure)
11721
+ (const PgQuery__JsonTablePathScan *message,
11722
+ void *closure_data);
11723
+ typedef void (*PgQuery__JsonTableSiblingJoin_Closure)
11724
+ (const PgQuery__JsonTableSiblingJoin *message,
11725
+ void *closure_data);
11022
11726
  typedef void (*PgQuery__NullTest_Closure)
11023
11727
  (const PgQuery__NullTest *message,
11024
11728
  void *closure_data);
11025
11729
  typedef void (*PgQuery__BooleanTest_Closure)
11026
11730
  (const PgQuery__BooleanTest *message,
11027
11731
  void *closure_data);
11732
+ typedef void (*PgQuery__MergeAction_Closure)
11733
+ (const PgQuery__MergeAction *message,
11734
+ void *closure_data);
11028
11735
  typedef void (*PgQuery__CoerceToDomain_Closure)
11029
11736
  (const PgQuery__CoerceToDomain *message,
11030
11737
  void *closure_data);
@@ -11154,6 +11861,9 @@ typedef void (*PgQuery__PartitionBoundSpec_Closure)
11154
11861
  typedef void (*PgQuery__PartitionRangeDatum_Closure)
11155
11862
  (const PgQuery__PartitionRangeDatum *message,
11156
11863
  void *closure_data);
11864
+ typedef void (*PgQuery__SinglePartitionSpec_Closure)
11865
+ (const PgQuery__SinglePartitionSpec *message,
11866
+ void *closure_data);
11157
11867
  typedef void (*PgQuery__PartitionCmd_Closure)
11158
11868
  (const PgQuery__PartitionCmd *message,
11159
11869
  void *closure_data);
@@ -11205,18 +11915,39 @@ typedef void (*PgQuery__CommonTableExpr_Closure)
11205
11915
  typedef void (*PgQuery__MergeWhenClause_Closure)
11206
11916
  (const PgQuery__MergeWhenClause *message,
11207
11917
  void *closure_data);
11208
- typedef void (*PgQuery__MergeAction_Closure)
11209
- (const PgQuery__MergeAction *message,
11210
- void *closure_data);
11211
11918
  typedef void (*PgQuery__TriggerTransition_Closure)
11212
11919
  (const PgQuery__TriggerTransition *message,
11213
11920
  void *closure_data);
11214
11921
  typedef void (*PgQuery__JsonOutput_Closure)
11215
11922
  (const PgQuery__JsonOutput *message,
11216
11923
  void *closure_data);
11924
+ typedef void (*PgQuery__JsonArgument_Closure)
11925
+ (const PgQuery__JsonArgument *message,
11926
+ void *closure_data);
11927
+ typedef void (*PgQuery__JsonFuncExpr_Closure)
11928
+ (const PgQuery__JsonFuncExpr *message,
11929
+ void *closure_data);
11930
+ typedef void (*PgQuery__JsonTablePathSpec_Closure)
11931
+ (const PgQuery__JsonTablePathSpec *message,
11932
+ void *closure_data);
11933
+ typedef void (*PgQuery__JsonTable_Closure)
11934
+ (const PgQuery__JsonTable *message,
11935
+ void *closure_data);
11936
+ typedef void (*PgQuery__JsonTableColumn_Closure)
11937
+ (const PgQuery__JsonTableColumn *message,
11938
+ void *closure_data);
11217
11939
  typedef void (*PgQuery__JsonKeyValue_Closure)
11218
11940
  (const PgQuery__JsonKeyValue *message,
11219
11941
  void *closure_data);
11942
+ typedef void (*PgQuery__JsonParseExpr_Closure)
11943
+ (const PgQuery__JsonParseExpr *message,
11944
+ void *closure_data);
11945
+ typedef void (*PgQuery__JsonScalarExpr_Closure)
11946
+ (const PgQuery__JsonScalarExpr *message,
11947
+ void *closure_data);
11948
+ typedef void (*PgQuery__JsonSerializeExpr_Closure)
11949
+ (const PgQuery__JsonSerializeExpr *message,
11950
+ void *closure_data);
11220
11951
  typedef void (*PgQuery__JsonObjectConstructor_Closure)
11221
11952
  (const PgQuery__JsonObjectConstructor *message,
11222
11953
  void *closure_data);
@@ -11631,7 +12362,6 @@ typedef void (*PgQuery__ScanToken_Closure)
11631
12362
 
11632
12363
  /* --- descriptors --- */
11633
12364
 
11634
- extern const ProtobufCEnumDescriptor pg_query__overriding_kind__descriptor;
11635
12365
  extern const ProtobufCEnumDescriptor pg_query__query_source__descriptor;
11636
12366
  extern const ProtobufCEnumDescriptor pg_query__sort_by_dir__descriptor;
11637
12367
  extern const ProtobufCEnumDescriptor pg_query__sort_by_nulls__descriptor;
@@ -11646,6 +12376,8 @@ extern const ProtobufCEnumDescriptor pg_query__rtekind__descriptor;
11646
12376
  extern const ProtobufCEnumDescriptor pg_query__wcokind__descriptor;
11647
12377
  extern const ProtobufCEnumDescriptor pg_query__grouping_set_kind__descriptor;
11648
12378
  extern const ProtobufCEnumDescriptor pg_query__ctematerialize__descriptor;
12379
+ extern const ProtobufCEnumDescriptor pg_query__json_quotes__descriptor;
12380
+ extern const ProtobufCEnumDescriptor pg_query__json_table_column_type__descriptor;
11649
12381
  extern const ProtobufCEnumDescriptor pg_query__set_operation__descriptor;
11650
12382
  extern const ProtobufCEnumDescriptor pg_query__object_type__descriptor;
11651
12383
  extern const ProtobufCEnumDescriptor pg_query__drop_behavior__descriptor;
@@ -11665,7 +12397,9 @@ extern const ProtobufCEnumDescriptor pg_query__alter_tsconfig_type__descripto
11665
12397
  extern const ProtobufCEnumDescriptor pg_query__publication_obj_spec_type__descriptor;
11666
12398
  extern const ProtobufCEnumDescriptor pg_query__alter_publication_action__descriptor;
11667
12399
  extern const ProtobufCEnumDescriptor pg_query__alter_subscription_type__descriptor;
12400
+ extern const ProtobufCEnumDescriptor pg_query__overriding_kind__descriptor;
11668
12401
  extern const ProtobufCEnumDescriptor pg_query__on_commit_action__descriptor;
12402
+ extern const ProtobufCEnumDescriptor pg_query__table_func_type__descriptor;
11669
12403
  extern const ProtobufCEnumDescriptor pg_query__param_kind__descriptor;
11670
12404
  extern const ProtobufCEnumDescriptor pg_query__coercion_context__descriptor;
11671
12405
  extern const ProtobufCEnumDescriptor pg_query__coercion_form__descriptor;
@@ -11680,8 +12414,12 @@ extern const ProtobufCEnumDescriptor pg_query__json_encoding__descriptor;
11680
12414
  extern const ProtobufCEnumDescriptor pg_query__json_format_type__descriptor;
11681
12415
  extern const ProtobufCEnumDescriptor pg_query__json_constructor_type__descriptor;
11682
12416
  extern const ProtobufCEnumDescriptor pg_query__json_value_type__descriptor;
12417
+ extern const ProtobufCEnumDescriptor pg_query__json_wrapper__descriptor;
12418
+ extern const ProtobufCEnumDescriptor pg_query__json_behavior_type__descriptor;
12419
+ extern const ProtobufCEnumDescriptor pg_query__json_expr_op__descriptor;
11683
12420
  extern const ProtobufCEnumDescriptor pg_query__null_test_type__descriptor;
11684
12421
  extern const ProtobufCEnumDescriptor pg_query__bool_test_type__descriptor;
12422
+ extern const ProtobufCEnumDescriptor pg_query__merge_match_kind__descriptor;
11685
12423
  extern const ProtobufCEnumDescriptor pg_query__cmd_type__descriptor;
11686
12424
  extern const ProtobufCEnumDescriptor pg_query__join_type__descriptor;
11687
12425
  extern const ProtobufCEnumDescriptor pg_query__agg_strategy__descriptor;
@@ -11716,6 +12454,8 @@ extern const ProtobufCMessageDescriptor pg_query__param__descriptor;
11716
12454
  extern const ProtobufCMessageDescriptor pg_query__aggref__descriptor;
11717
12455
  extern const ProtobufCMessageDescriptor pg_query__grouping_func__descriptor;
11718
12456
  extern const ProtobufCMessageDescriptor pg_query__window_func__descriptor;
12457
+ extern const ProtobufCMessageDescriptor pg_query__window_func_run_condition__descriptor;
12458
+ extern const ProtobufCMessageDescriptor pg_query__merge_support_func__descriptor;
11719
12459
  extern const ProtobufCMessageDescriptor pg_query__subscripting_ref__descriptor;
11720
12460
  extern const ProtobufCMessageDescriptor pg_query__func_expr__descriptor;
11721
12461
  extern const ProtobufCMessageDescriptor pg_query__named_arg_expr__descriptor;
@@ -11749,8 +12489,14 @@ extern const ProtobufCMessageDescriptor pg_query__json_returning__descriptor;
11749
12489
  extern const ProtobufCMessageDescriptor pg_query__json_value_expr__descriptor;
11750
12490
  extern const ProtobufCMessageDescriptor pg_query__json_constructor_expr__descriptor;
11751
12491
  extern const ProtobufCMessageDescriptor pg_query__json_is_predicate__descriptor;
12492
+ extern const ProtobufCMessageDescriptor pg_query__json_behavior__descriptor;
12493
+ extern const ProtobufCMessageDescriptor pg_query__json_expr__descriptor;
12494
+ extern const ProtobufCMessageDescriptor pg_query__json_table_path__descriptor;
12495
+ extern const ProtobufCMessageDescriptor pg_query__json_table_path_scan__descriptor;
12496
+ extern const ProtobufCMessageDescriptor pg_query__json_table_sibling_join__descriptor;
11752
12497
  extern const ProtobufCMessageDescriptor pg_query__null_test__descriptor;
11753
12498
  extern const ProtobufCMessageDescriptor pg_query__boolean_test__descriptor;
12499
+ extern const ProtobufCMessageDescriptor pg_query__merge_action__descriptor;
11754
12500
  extern const ProtobufCMessageDescriptor pg_query__coerce_to_domain__descriptor;
11755
12501
  extern const ProtobufCMessageDescriptor pg_query__coerce_to_domain_value__descriptor;
11756
12502
  extern const ProtobufCMessageDescriptor pg_query__set_to_default__descriptor;
@@ -11794,6 +12540,7 @@ extern const ProtobufCMessageDescriptor pg_query__partition_elem__descriptor;
11794
12540
  extern const ProtobufCMessageDescriptor pg_query__partition_spec__descriptor;
11795
12541
  extern const ProtobufCMessageDescriptor pg_query__partition_bound_spec__descriptor;
11796
12542
  extern const ProtobufCMessageDescriptor pg_query__partition_range_datum__descriptor;
12543
+ extern const ProtobufCMessageDescriptor pg_query__single_partition_spec__descriptor;
11797
12544
  extern const ProtobufCMessageDescriptor pg_query__partition_cmd__descriptor;
11798
12545
  extern const ProtobufCMessageDescriptor pg_query__range_tbl_entry__descriptor;
11799
12546
  extern const ProtobufCMessageDescriptor pg_query__rtepermission_info__descriptor;
@@ -11811,10 +12558,17 @@ extern const ProtobufCMessageDescriptor pg_query__ctesearch_clause__descriptor;
11811
12558
  extern const ProtobufCMessageDescriptor pg_query__ctecycle_clause__descriptor;
11812
12559
  extern const ProtobufCMessageDescriptor pg_query__common_table_expr__descriptor;
11813
12560
  extern const ProtobufCMessageDescriptor pg_query__merge_when_clause__descriptor;
11814
- extern const ProtobufCMessageDescriptor pg_query__merge_action__descriptor;
11815
12561
  extern const ProtobufCMessageDescriptor pg_query__trigger_transition__descriptor;
11816
12562
  extern const ProtobufCMessageDescriptor pg_query__json_output__descriptor;
12563
+ extern const ProtobufCMessageDescriptor pg_query__json_argument__descriptor;
12564
+ extern const ProtobufCMessageDescriptor pg_query__json_func_expr__descriptor;
12565
+ extern const ProtobufCMessageDescriptor pg_query__json_table_path_spec__descriptor;
12566
+ extern const ProtobufCMessageDescriptor pg_query__json_table__descriptor;
12567
+ extern const ProtobufCMessageDescriptor pg_query__json_table_column__descriptor;
11817
12568
  extern const ProtobufCMessageDescriptor pg_query__json_key_value__descriptor;
12569
+ extern const ProtobufCMessageDescriptor pg_query__json_parse_expr__descriptor;
12570
+ extern const ProtobufCMessageDescriptor pg_query__json_scalar_expr__descriptor;
12571
+ extern const ProtobufCMessageDescriptor pg_query__json_serialize_expr__descriptor;
11818
12572
  extern const ProtobufCMessageDescriptor pg_query__json_object_constructor__descriptor;
11819
12573
  extern const ProtobufCMessageDescriptor pg_query__json_array_constructor__descriptor;
11820
12574
  extern const ProtobufCMessageDescriptor pg_query__json_array_query_constructor__descriptor;