pg_query 4.2.2 → 5.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (486) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +12 -0
  3. data/README.md +6 -8
  4. data/Rakefile +3 -3
  5. data/ext/pg_query/extconf.rb +1 -3
  6. data/ext/pg_query/include/access/amapi.h +3 -1
  7. data/ext/pg_query/include/access/attmap.h +5 -3
  8. data/ext/pg_query/include/access/attnum.h +1 -1
  9. data/ext/pg_query/include/access/clog.h +1 -1
  10. data/ext/pg_query/include/access/commit_ts.h +1 -1
  11. data/ext/pg_query/include/access/detoast.h +1 -1
  12. data/ext/pg_query/include/access/genam.h +7 -5
  13. data/ext/pg_query/include/access/gin.h +16 -3
  14. data/ext/pg_query/include/access/htup.h +1 -1
  15. data/ext/pg_query/include/access/htup_details.h +6 -2
  16. data/ext/pg_query/include/access/itup.h +61 -58
  17. data/ext/pg_query/include/access/parallel.h +2 -2
  18. data/ext/pg_query/include/access/printtup.h +1 -1
  19. data/ext/pg_query/include/access/relation.h +1 -1
  20. data/ext/pg_query/include/access/relscan.h +1 -1
  21. data/ext/pg_query/include/access/rmgrlist.h +2 -2
  22. data/ext/pg_query/include/access/sdir.h +12 -3
  23. data/ext/pg_query/include/access/skey.h +1 -1
  24. data/ext/pg_query/include/access/stratnum.h +1 -1
  25. data/ext/pg_query/include/access/sysattr.h +1 -1
  26. data/ext/pg_query/include/access/table.h +1 -1
  27. data/ext/pg_query/include/access/tableam.h +68 -45
  28. data/ext/pg_query/include/access/toast_compression.h +1 -1
  29. data/ext/pg_query/include/access/transam.h +1 -1
  30. data/ext/pg_query/include/access/tsmapi.h +82 -0
  31. data/ext/pg_query/include/access/tupconvert.h +5 -2
  32. data/ext/pg_query/include/access/tupdesc.h +2 -2
  33. data/ext/pg_query/include/access/tupmacs.h +58 -98
  34. data/ext/pg_query/include/access/twophase.h +2 -2
  35. data/ext/pg_query/include/access/xact.h +25 -18
  36. data/ext/pg_query/include/access/xlog.h +15 -16
  37. data/ext/pg_query/include/access/xlog_internal.h +100 -62
  38. data/ext/pg_query/include/access/xlogbackup.h +41 -0
  39. data/ext/pg_query/include/access/xlogdefs.h +6 -25
  40. data/ext/pg_query/include/access/xlogprefetcher.h +1 -1
  41. data/ext/pg_query/include/access/xlogreader.h +7 -6
  42. data/ext/pg_query/include/access/xlogrecord.h +17 -5
  43. data/ext/pg_query/include/access/xlogrecovery.h +4 -3
  44. data/ext/pg_query/include/archive/archive_module.h +59 -0
  45. data/ext/pg_query/include/c.h +144 -156
  46. data/ext/pg_query/include/catalog/catalog.h +4 -3
  47. data/ext/pg_query/include/catalog/catversion.h +6 -2
  48. data/ext/pg_query/include/catalog/dependency.h +5 -4
  49. data/ext/pg_query/include/catalog/genbki.h +7 -6
  50. data/ext/pg_query/include/catalog/index.h +4 -4
  51. data/ext/pg_query/include/catalog/indexing.h +1 -1
  52. data/ext/pg_query/include/catalog/namespace.h +2 -2
  53. data/ext/pg_query/include/catalog/objectaccess.h +10 -8
  54. data/ext/pg_query/include/catalog/objectaddress.h +3 -3
  55. data/ext/pg_query/include/catalog/pg_aggregate.h +1 -1
  56. data/ext/pg_query/include/catalog/pg_aggregate_d.h +1 -1
  57. data/ext/pg_query/include/catalog/pg_am.h +1 -1
  58. data/ext/pg_query/include/catalog/pg_am_d.h +1 -1
  59. data/ext/pg_query/include/catalog/pg_attribute.h +19 -17
  60. data/ext/pg_query/include/catalog/pg_attribute_d.h +19 -19
  61. data/ext/pg_query/include/catalog/pg_authid.h +1 -1
  62. data/ext/pg_query/include/catalog/pg_authid_d.h +3 -1
  63. data/ext/pg_query/include/catalog/pg_class.h +1 -1
  64. data/ext/pg_query/include/catalog/pg_class_d.h +1 -1
  65. data/ext/pg_query/include/catalog/pg_collation.h +3 -1
  66. data/ext/pg_query/include/catalog/pg_collation_d.h +4 -3
  67. data/ext/pg_query/include/catalog/pg_constraint.h +2 -2
  68. data/ext/pg_query/include/catalog/pg_constraint_d.h +1 -1
  69. data/ext/pg_query/include/catalog/pg_control.h +9 -1
  70. data/ext/pg_query/include/catalog/pg_conversion.h +2 -2
  71. data/ext/pg_query/include/catalog/pg_conversion_d.h +1 -1
  72. data/ext/pg_query/include/catalog/pg_database.h +124 -0
  73. data/ext/pg_query/include/catalog/pg_database_d.h +52 -0
  74. data/ext/pg_query/include/catalog/pg_depend.h +1 -1
  75. data/ext/pg_query/include/catalog/pg_depend_d.h +1 -1
  76. data/ext/pg_query/include/catalog/pg_event_trigger.h +1 -1
  77. data/ext/pg_query/include/catalog/pg_event_trigger_d.h +1 -1
  78. data/ext/pg_query/include/catalog/pg_index.h +1 -1
  79. data/ext/pg_query/include/catalog/pg_index_d.h +1 -1
  80. data/ext/pg_query/include/catalog/pg_language.h +1 -1
  81. data/ext/pg_query/include/catalog/pg_language_d.h +1 -1
  82. data/ext/pg_query/include/catalog/pg_namespace.h +1 -1
  83. data/ext/pg_query/include/catalog/pg_namespace_d.h +1 -1
  84. data/ext/pg_query/include/catalog/pg_opclass.h +1 -1
  85. data/ext/pg_query/include/catalog/pg_opclass_d.h +1 -1
  86. data/ext/pg_query/include/catalog/pg_operator.h +1 -1
  87. data/ext/pg_query/include/catalog/pg_operator_d.h +1 -1
  88. data/ext/pg_query/include/catalog/pg_opfamily.h +3 -2
  89. data/ext/pg_query/include/catalog/pg_opfamily_d.h +4 -2
  90. data/ext/pg_query/include/catalog/pg_partitioned_table.h +1 -1
  91. data/ext/pg_query/include/catalog/pg_partitioned_table_d.h +1 -1
  92. data/ext/pg_query/include/catalog/pg_proc.h +1 -1
  93. data/ext/pg_query/include/catalog/pg_proc_d.h +1 -1
  94. data/ext/pg_query/include/catalog/pg_publication.h +2 -5
  95. data/ext/pg_query/include/catalog/pg_publication_d.h +1 -1
  96. data/ext/pg_query/include/catalog/pg_replication_origin.h +1 -1
  97. data/ext/pg_query/include/catalog/pg_replication_origin_d.h +1 -1
  98. data/ext/pg_query/include/catalog/pg_statistic.h +1 -1
  99. data/ext/pg_query/include/catalog/pg_statistic_d.h +1 -1
  100. data/ext/pg_query/include/catalog/pg_statistic_ext.h +1 -1
  101. data/ext/pg_query/include/catalog/pg_statistic_ext_d.h +1 -1
  102. data/ext/pg_query/include/catalog/pg_transform.h +1 -1
  103. data/ext/pg_query/include/catalog/pg_transform_d.h +1 -1
  104. data/ext/pg_query/include/catalog/pg_trigger.h +1 -1
  105. data/ext/pg_query/include/catalog/pg_trigger_d.h +1 -1
  106. data/ext/pg_query/include/catalog/pg_ts_config.h +1 -1
  107. data/ext/pg_query/include/catalog/pg_ts_config_d.h +1 -1
  108. data/ext/pg_query/include/catalog/pg_ts_dict.h +1 -1
  109. data/ext/pg_query/include/catalog/pg_ts_dict_d.h +1 -1
  110. data/ext/pg_query/include/catalog/pg_ts_parser.h +1 -1
  111. data/ext/pg_query/include/catalog/pg_ts_parser_d.h +1 -1
  112. data/ext/pg_query/include/catalog/pg_ts_template.h +1 -1
  113. data/ext/pg_query/include/catalog/pg_ts_template_d.h +1 -1
  114. data/ext/pg_query/include/catalog/pg_type.h +1 -1
  115. data/ext/pg_query/include/catalog/pg_type_d.h +1 -1
  116. data/ext/pg_query/include/catalog/storage.h +6 -6
  117. data/ext/pg_query/include/commands/async.h +1 -1
  118. data/ext/pg_query/include/commands/dbcommands.h +2 -1
  119. data/ext/pg_query/include/commands/defrem.h +2 -1
  120. data/ext/pg_query/include/commands/event_trigger.h +1 -1
  121. data/ext/pg_query/include/commands/explain.h +3 -1
  122. data/ext/pg_query/include/commands/prepare.h +1 -1
  123. data/ext/pg_query/include/commands/tablespace.h +4 -4
  124. data/ext/pg_query/include/commands/trigger.h +15 -14
  125. data/ext/pg_query/include/commands/user.h +9 -3
  126. data/ext/pg_query/include/commands/vacuum.h +60 -14
  127. data/ext/pg_query/include/common/cryptohash.h +39 -0
  128. data/ext/pg_query/include/common/file_perm.h +1 -1
  129. data/ext/pg_query/include/common/hashfn.h +1 -1
  130. data/ext/pg_query/include/common/int.h +437 -0
  131. data/ext/pg_query/include/common/ip.h +4 -2
  132. data/ext/pg_query/include/common/keywords.h +1 -1
  133. data/ext/pg_query/include/common/kwlookup.h +2 -2
  134. data/ext/pg_query/include/common/pg_prng.h +3 -2
  135. data/ext/pg_query/include/common/relpath.h +20 -13
  136. data/ext/pg_query/include/common/scram-common.h +70 -0
  137. data/ext/pg_query/include/common/sha2.h +32 -0
  138. data/ext/pg_query/include/common/string.h +5 -3
  139. data/ext/pg_query/include/common/unicode_east_asian_fw_table.h +10 -10
  140. data/ext/pg_query/include/common/{unicode_combining_table.h → unicode_nonspacing_table.h} +31 -13
  141. data/ext/pg_query/include/copyfuncs.funcs.c +5013 -0
  142. data/ext/pg_query/include/copyfuncs.switch.c +938 -0
  143. data/ext/pg_query/include/datatype/timestamp.h +11 -4
  144. data/ext/pg_query/include/equalfuncs.funcs.c +3097 -0
  145. data/ext/pg_query/include/equalfuncs.switch.c +785 -0
  146. data/ext/pg_query/include/executor/execdesc.h +1 -1
  147. data/ext/pg_query/include/executor/executor.h +34 -17
  148. data/ext/pg_query/include/executor/functions.h +1 -1
  149. data/ext/pg_query/include/executor/instrument.h +1 -1
  150. data/ext/pg_query/include/executor/spi.h +2 -2
  151. data/ext/pg_query/include/executor/tablefunc.h +1 -1
  152. data/ext/pg_query/include/executor/tuptable.h +18 -11
  153. data/ext/pg_query/include/fmgr.h +21 -2
  154. data/ext/pg_query/include/foreign/fdwapi.h +294 -0
  155. data/ext/pg_query/include/funcapi.h +12 -12
  156. data/ext/pg_query/include/gram.h +1127 -0
  157. data/ext/pg_query/include/{parser/gramparse.h → gramparse.h} +4 -4
  158. data/ext/pg_query/include/jit/jit.h +2 -2
  159. data/ext/pg_query/include/kwlist_d.h +534 -510
  160. data/ext/pg_query/include/lib/dshash.h +4 -1
  161. data/ext/pg_query/include/lib/ilist.h +435 -22
  162. data/ext/pg_query/include/lib/pairingheap.h +1 -1
  163. data/ext/pg_query/include/lib/simplehash.h +9 -9
  164. data/ext/pg_query/include/lib/sort_template.h +1 -1
  165. data/ext/pg_query/include/lib/stringinfo.h +3 -3
  166. data/ext/pg_query/include/libpq/auth.h +8 -2
  167. data/ext/pg_query/include/libpq/crypt.h +1 -1
  168. data/ext/pg_query/include/libpq/hba.h +24 -17
  169. data/ext/pg_query/include/libpq/libpq-be.h +36 -25
  170. data/ext/pg_query/include/libpq/libpq.h +1 -1
  171. data/ext/pg_query/include/libpq/pqcomm.h +10 -41
  172. data/ext/pg_query/include/libpq/pqformat.h +2 -2
  173. data/ext/pg_query/include/libpq/pqsignal.h +22 -10
  174. data/ext/pg_query/include/libpq/sasl.h +136 -0
  175. data/ext/pg_query/include/libpq/scram.h +37 -0
  176. data/ext/pg_query/include/mb/pg_wchar.h +35 -18
  177. data/ext/pg_query/include/mb/stringinfo_mb.h +1 -1
  178. data/ext/pg_query/include/miscadmin.h +26 -14
  179. data/ext/pg_query/include/nodes/bitmapset.h +11 -7
  180. data/ext/pg_query/include/nodes/execnodes.h +83 -30
  181. data/ext/pg_query/include/nodes/extensible.h +5 -3
  182. data/ext/pg_query/include/nodes/lockoptions.h +1 -1
  183. data/ext/pg_query/include/nodes/makefuncs.h +14 -2
  184. data/ext/pg_query/include/nodes/memnodes.h +7 -4
  185. data/ext/pg_query/include/nodes/miscnodes.h +56 -0
  186. data/ext/pg_query/include/nodes/nodeFuncs.h +89 -29
  187. data/ext/pg_query/include/nodes/nodes.h +95 -510
  188. data/ext/pg_query/include/nodes/nodetags.h +471 -0
  189. data/ext/pg_query/include/nodes/params.h +3 -3
  190. data/ext/pg_query/include/nodes/parsenodes.h +377 -139
  191. data/ext/pg_query/include/nodes/pathnodes.h +1090 -440
  192. data/ext/pg_query/include/nodes/pg_list.h +30 -7
  193. data/ext/pg_query/include/nodes/plannodes.h +367 -124
  194. data/ext/pg_query/include/nodes/primnodes.h +670 -222
  195. data/ext/pg_query/include/nodes/print.h +1 -1
  196. data/ext/pg_query/include/{utils → nodes}/queryjumble.h +5 -7
  197. data/ext/pg_query/include/nodes/replnodes.h +111 -0
  198. data/ext/pg_query/include/nodes/supportnodes.h +346 -0
  199. data/ext/pg_query/include/nodes/tidbitmap.h +1 -1
  200. data/ext/pg_query/include/nodes/value.h +12 -2
  201. data/ext/pg_query/include/optimizer/cost.h +6 -4
  202. data/ext/pg_query/include/optimizer/geqo.h +1 -1
  203. data/ext/pg_query/include/optimizer/geqo_gene.h +1 -1
  204. data/ext/pg_query/include/optimizer/optimizer.h +8 -8
  205. data/ext/pg_query/include/optimizer/paths.h +16 -7
  206. data/ext/pg_query/include/optimizer/planmain.h +3 -6
  207. data/ext/pg_query/include/parser/analyze.h +4 -3
  208. data/ext/pg_query/include/parser/kwlist.h +12 -1
  209. data/ext/pg_query/include/parser/parse_agg.h +4 -2
  210. data/ext/pg_query/include/parser/parse_coerce.h +3 -1
  211. data/ext/pg_query/include/parser/parse_expr.h +1 -1
  212. data/ext/pg_query/include/parser/parse_func.h +1 -1
  213. data/ext/pg_query/include/parser/parse_node.h +22 -4
  214. data/ext/pg_query/include/parser/parse_oper.h +3 -3
  215. data/ext/pg_query/include/parser/parse_relation.h +8 -3
  216. data/ext/pg_query/include/parser/parse_type.h +4 -3
  217. data/ext/pg_query/include/parser/parser.h +1 -1
  218. data/ext/pg_query/include/parser/parsetree.h +1 -1
  219. data/ext/pg_query/include/parser/scanner.h +2 -2
  220. data/ext/pg_query/include/parser/scansup.h +1 -1
  221. data/ext/pg_query/include/partitioning/partdefs.h +1 -1
  222. data/ext/pg_query/include/pg_config.h +23 -217
  223. data/ext/pg_query/include/pg_config_manual.h +8 -46
  224. data/ext/pg_query/include/pg_getopt.h +1 -1
  225. data/ext/pg_query/include/pg_query.h +27 -3
  226. data/ext/pg_query/include/pg_query_enum_defs.c +311 -149
  227. data/ext/pg_query/include/pg_query_fingerprint_conds.c +545 -489
  228. data/ext/pg_query/include/pg_query_fingerprint_defs.c +5092 -4432
  229. data/ext/pg_query/include/pg_query_outfuncs_conds.c +385 -343
  230. data/ext/pg_query/include/pg_query_outfuncs_defs.c +1294 -1161
  231. data/ext/pg_query/include/pg_query_readfuncs_conds.c +137 -123
  232. data/ext/pg_query/include/pg_query_readfuncs_defs.c +1657 -1496
  233. data/ext/pg_query/include/pg_trace.h +1 -1
  234. data/ext/pg_query/include/pgstat.h +172 -93
  235. data/ext/pg_query/include/pgtime.h +3 -3
  236. data/ext/pg_query/include/pl_gram.h +64 -62
  237. data/ext/pg_query/include/pl_reserved_kwlist.h +1 -1
  238. data/ext/pg_query/include/pl_reserved_kwlist_d.h +1 -1
  239. data/ext/pg_query/include/pl_unreserved_kwlist.h +2 -1
  240. data/ext/pg_query/include/pl_unreserved_kwlist_d.h +48 -46
  241. data/ext/pg_query/include/plpgsql.h +17 -22
  242. data/ext/pg_query/include/port/atomics/arch-arm.h +3 -3
  243. data/ext/pg_query/include/port/atomics/arch-ppc.h +21 -21
  244. data/ext/pg_query/include/port/atomics/arch-x86.h +2 -2
  245. data/ext/pg_query/include/port/atomics/fallback.h +3 -3
  246. data/ext/pg_query/include/port/atomics/generic-gcc.h +1 -1
  247. data/ext/pg_query/include/port/atomics/generic.h +1 -1
  248. data/ext/pg_query/include/port/atomics.h +2 -7
  249. data/ext/pg_query/include/port/pg_bitutils.h +62 -25
  250. data/ext/pg_query/include/port/pg_bswap.h +1 -1
  251. data/ext/pg_query/include/port/pg_crc32c.h +1 -1
  252. data/ext/pg_query/include/port/simd.h +375 -0
  253. data/ext/pg_query/include/port.h +42 -75
  254. data/ext/pg_query/include/portability/instr_time.h +81 -140
  255. data/ext/pg_query/include/postgres.h +205 -434
  256. data/ext/pg_query/include/postgres_ext.h +0 -1
  257. data/ext/pg_query/include/postmaster/autovacuum.h +1 -4
  258. data/ext/pg_query/include/postmaster/auxprocess.h +1 -1
  259. data/ext/pg_query/include/postmaster/bgworker.h +2 -2
  260. data/ext/pg_query/include/postmaster/bgworker_internals.h +1 -1
  261. data/ext/pg_query/include/postmaster/bgwriter.h +2 -2
  262. data/ext/pg_query/include/postmaster/fork_process.h +1 -1
  263. data/ext/pg_query/include/postmaster/interrupt.h +1 -1
  264. data/ext/pg_query/include/postmaster/pgarch.h +1 -38
  265. data/ext/pg_query/include/postmaster/postmaster.h +5 -2
  266. data/ext/pg_query/include/postmaster/startup.h +3 -1
  267. data/ext/pg_query/include/postmaster/syslogger.h +2 -2
  268. data/ext/pg_query/include/postmaster/walwriter.h +3 -1
  269. data/ext/pg_query/include/protobuf/pg_query.pb-c.h +6186 -5585
  270. data/ext/pg_query/include/protobuf/pg_query.pb.h +112443 -91222
  271. data/ext/pg_query/include/regex/regex.h +9 -6
  272. data/ext/pg_query/include/replication/logicallauncher.h +6 -1
  273. data/ext/pg_query/include/replication/logicalproto.h +30 -10
  274. data/ext/pg_query/include/replication/logicalworker.h +14 -1
  275. data/ext/pg_query/include/replication/origin.h +4 -4
  276. data/ext/pg_query/include/replication/reorderbuffer.h +113 -45
  277. data/ext/pg_query/include/replication/slot.h +25 -6
  278. data/ext/pg_query/include/replication/syncrep.h +2 -8
  279. data/ext/pg_query/include/replication/walreceiver.h +15 -9
  280. data/ext/pg_query/include/replication/walsender.h +13 -13
  281. data/ext/pg_query/include/rewrite/prs2lock.h +1 -1
  282. data/ext/pg_query/include/rewrite/rewriteHandler.h +1 -4
  283. data/ext/pg_query/include/rewrite/rewriteManip.h +11 -2
  284. data/ext/pg_query/include/rewrite/rewriteSupport.h +1 -1
  285. data/ext/pg_query/include/src_backend_nodes_copyfuncs.funcs.c +5321 -0
  286. data/ext/pg_query/include/src_backend_nodes_equalfuncs.funcs.c +3354 -0
  287. data/ext/pg_query/include/storage/backendid.h +1 -1
  288. data/ext/pg_query/include/storage/block.h +24 -31
  289. data/ext/pg_query/include/storage/buf.h +1 -1
  290. data/ext/pg_query/include/storage/bufmgr.h +183 -87
  291. data/ext/pg_query/include/storage/bufpage.h +146 -93
  292. data/ext/pg_query/include/storage/condition_variable.h +2 -2
  293. data/ext/pg_query/include/storage/dsm.h +3 -6
  294. data/ext/pg_query/include/storage/dsm_impl.h +4 -1
  295. data/ext/pg_query/include/storage/fd.h +24 -20
  296. data/ext/pg_query/include/storage/fileset.h +1 -1
  297. data/ext/pg_query/include/storage/ipc.h +1 -1
  298. data/ext/pg_query/include/storage/item.h +1 -1
  299. data/ext/pg_query/include/storage/itemid.h +1 -1
  300. data/ext/pg_query/include/storage/itemptr.h +94 -57
  301. data/ext/pg_query/include/storage/large_object.h +1 -1
  302. data/ext/pg_query/include/storage/latch.h +9 -1
  303. data/ext/pg_query/include/storage/lmgr.h +6 -1
  304. data/ext/pg_query/include/storage/lock.h +21 -13
  305. data/ext/pg_query/include/storage/lockdefs.h +3 -3
  306. data/ext/pg_query/include/storage/lwlock.h +16 -2
  307. data/ext/pg_query/include/storage/off.h +1 -1
  308. data/ext/pg_query/include/storage/pg_sema.h +1 -1
  309. data/ext/pg_query/include/storage/pg_shmem.h +1 -1
  310. data/ext/pg_query/include/storage/pmsignal.h +1 -1
  311. data/ext/pg_query/include/storage/predicate.h +2 -2
  312. data/ext/pg_query/include/storage/proc.h +22 -17
  313. data/ext/pg_query/include/storage/procarray.h +3 -2
  314. data/ext/pg_query/include/storage/proclist_types.h +1 -1
  315. data/ext/pg_query/include/storage/procsignal.h +3 -1
  316. data/ext/pg_query/include/storage/relfilelocator.h +99 -0
  317. data/ext/pg_query/include/storage/s_lock.h +66 -309
  318. data/ext/pg_query/include/storage/sharedfileset.h +1 -1
  319. data/ext/pg_query/include/storage/shm_mq.h +1 -1
  320. data/ext/pg_query/include/storage/shm_toc.h +1 -1
  321. data/ext/pg_query/include/storage/shmem.h +1 -23
  322. data/ext/pg_query/include/storage/sinval.h +3 -3
  323. data/ext/pg_query/include/storage/sinvaladt.h +4 -2
  324. data/ext/pg_query/include/storage/smgr.h +12 -10
  325. data/ext/pg_query/include/storage/spin.h +1 -1
  326. data/ext/pg_query/include/storage/standby.h +9 -8
  327. data/ext/pg_query/include/storage/standbydefs.h +1 -1
  328. data/ext/pg_query/include/storage/sync.h +3 -3
  329. data/ext/pg_query/include/tcop/cmdtag.h +7 -2
  330. data/ext/pg_query/include/tcop/cmdtaglist.h +1 -1
  331. data/ext/pg_query/include/tcop/deparse_utility.h +1 -1
  332. data/ext/pg_query/include/tcop/dest.h +1 -3
  333. data/ext/pg_query/include/tcop/fastpath.h +1 -1
  334. data/ext/pg_query/include/tcop/pquery.h +1 -1
  335. data/ext/pg_query/include/tcop/tcopprot.h +1 -4
  336. data/ext/pg_query/include/tcop/utility.h +1 -1
  337. data/ext/pg_query/include/tsearch/ts_cache.h +2 -4
  338. data/ext/pg_query/include/utils/acl.h +26 -81
  339. data/ext/pg_query/include/utils/aclchk_internal.h +1 -1
  340. data/ext/pg_query/include/utils/array.h +19 -1
  341. data/ext/pg_query/include/utils/backend_progress.h +2 -1
  342. data/ext/pg_query/include/utils/backend_status.h +24 -3
  343. data/ext/pg_query/include/utils/builtins.h +14 -5
  344. data/ext/pg_query/include/utils/bytea.h +1 -1
  345. data/ext/pg_query/include/utils/catcache.h +1 -1
  346. data/ext/pg_query/include/utils/date.h +37 -9
  347. data/ext/pg_query/include/utils/datetime.h +41 -21
  348. data/ext/pg_query/include/utils/datum.h +1 -1
  349. data/ext/pg_query/include/utils/dsa.h +5 -1
  350. data/ext/pg_query/include/utils/elog.h +101 -26
  351. data/ext/pg_query/include/utils/expandeddatum.h +14 -3
  352. data/ext/pg_query/include/utils/expandedrecord.h +14 -4
  353. data/ext/pg_query/include/utils/float.h +7 -6
  354. data/ext/pg_query/include/utils/fmgroids.h +54 -1
  355. data/ext/pg_query/include/utils/fmgrprotos.h +45 -3
  356. data/ext/pg_query/include/utils/fmgrtab.h +1 -1
  357. data/ext/pg_query/include/utils/guc.h +55 -82
  358. data/ext/pg_query/include/utils/guc_hooks.h +163 -0
  359. data/ext/pg_query/include/utils/guc_tables.h +49 -3
  360. data/ext/pg_query/include/utils/hsearch.h +1 -1
  361. data/ext/pg_query/include/utils/inval.h +3 -3
  362. data/ext/pg_query/include/utils/logtape.h +77 -0
  363. data/ext/pg_query/include/utils/lsyscache.h +5 -1
  364. data/ext/pg_query/include/utils/memdebug.h +1 -1
  365. data/ext/pg_query/include/utils/memutils.h +5 -49
  366. data/ext/pg_query/include/utils/memutils_internal.h +136 -0
  367. data/ext/pg_query/include/utils/memutils_memorychunk.h +237 -0
  368. data/ext/pg_query/include/utils/numeric.h +20 -5
  369. data/ext/pg_query/include/utils/palloc.h +8 -1
  370. data/ext/pg_query/include/utils/partcache.h +3 -2
  371. data/ext/pg_query/include/utils/pg_locale.h +22 -14
  372. data/ext/pg_query/include/utils/pgstat_internal.h +37 -7
  373. data/ext/pg_query/include/utils/pidfile.h +1 -1
  374. data/ext/pg_query/include/utils/plancache.h +1 -1
  375. data/ext/pg_query/include/utils/portal.h +1 -1
  376. data/ext/pg_query/include/utils/probes.h +6 -6
  377. data/ext/pg_query/include/utils/ps_status.h +23 -1
  378. data/ext/pg_query/include/utils/queryenvironment.h +1 -1
  379. data/ext/pg_query/include/utils/regproc.h +3 -3
  380. data/ext/pg_query/include/utils/rel.h +60 -43
  381. data/ext/pg_query/include/utils/relcache.h +13 -8
  382. data/ext/pg_query/include/utils/reltrigger.h +1 -1
  383. data/ext/pg_query/include/utils/resowner.h +1 -1
  384. data/ext/pg_query/include/utils/ruleutils.h +6 -1
  385. data/ext/pg_query/include/utils/sharedtuplestore.h +1 -1
  386. data/ext/pg_query/include/utils/snapmgr.h +4 -2
  387. data/ext/pg_query/include/utils/snapshot.h +1 -1
  388. data/ext/pg_query/include/utils/sortsupport.h +2 -2
  389. data/ext/pg_query/include/utils/syscache.h +4 -1
  390. data/ext/pg_query/include/utils/timeout.h +1 -1
  391. data/ext/pg_query/include/utils/timestamp.h +41 -11
  392. data/ext/pg_query/include/utils/tuplesort.h +189 -35
  393. data/ext/pg_query/include/utils/tuplestore.h +1 -1
  394. data/ext/pg_query/include/utils/typcache.h +1 -1
  395. data/ext/pg_query/include/utils/varlena.h +13 -1
  396. data/ext/pg_query/include/utils/wait_event.h +9 -4
  397. data/ext/pg_query/include/utils/xml.h +15 -5
  398. data/ext/pg_query/include/varatt.h +358 -0
  399. data/ext/pg_query/pg_query.c +1 -1
  400. data/ext/pg_query/pg_query.pb-c.c +19755 -17757
  401. data/ext/pg_query/pg_query_fingerprint.c +8 -3
  402. data/ext/pg_query/pg_query_fingerprint.h +1 -1
  403. data/ext/pg_query/pg_query_internal.h +1 -1
  404. data/ext/pg_query/pg_query_json_plpgsql.c +1 -0
  405. data/ext/pg_query/pg_query_normalize.c +1 -1
  406. data/ext/pg_query/pg_query_outfuncs_protobuf.c +2 -2
  407. data/ext/pg_query/pg_query_parse.c +46 -4
  408. data/ext/pg_query/pg_query_parse_plpgsql.c +1 -1
  409. data/ext/pg_query/pg_query_scan.c +1 -1
  410. data/ext/pg_query/pg_query_split.c +2 -2
  411. data/ext/pg_query/postgres_deparse.c +511 -109
  412. data/ext/pg_query/src_backend_catalog_namespace.c +7 -2
  413. data/ext/pg_query/src_backend_catalog_pg_proc.c +1 -1
  414. data/ext/pg_query/src_backend_commands_define.c +1 -1
  415. data/ext/pg_query/src_backend_nodes_bitmapset.c +11 -70
  416. data/ext/pg_query/src_backend_nodes_copyfuncs.c +96 -6202
  417. data/ext/pg_query/src_backend_nodes_equalfuncs.c +95 -4068
  418. data/ext/pg_query/src_backend_nodes_extensible.c +6 -29
  419. data/ext/pg_query/src_backend_nodes_list.c +14 -2
  420. data/ext/pg_query/src_backend_nodes_makefuncs.c +95 -1
  421. data/ext/pg_query/src_backend_nodes_nodeFuncs.c +283 -132
  422. data/ext/pg_query/src_backend_nodes_value.c +1 -1
  423. data/ext/pg_query/src_backend_parser_gram.c +33208 -31806
  424. data/ext/pg_query/src_backend_parser_parser.c +28 -2
  425. data/ext/pg_query/src_backend_parser_scan.c +4318 -3329
  426. data/ext/pg_query/src_backend_parser_scansup.c +1 -1
  427. data/ext/pg_query/src_backend_postmaster_postmaster.c +129 -110
  428. data/ext/pg_query/src_backend_storage_ipc_ipc.c +1 -1
  429. data/ext/pg_query/src_backend_tcop_postgres.c +66 -87
  430. data/ext/pg_query/src_backend_utils_activity_pgstat_database.c +1 -1
  431. data/ext/pg_query/src_backend_utils_adt_datum.c +5 -7
  432. data/ext/pg_query/src_backend_utils_adt_expandeddatum.c +1 -1
  433. data/ext/pg_query/src_backend_utils_adt_format_type.c +1 -1
  434. data/ext/pg_query/src_backend_utils_adt_numutils.c +489 -0
  435. data/ext/pg_query/src_backend_utils_adt_ruleutils.c +79 -5
  436. data/ext/pg_query/src_backend_utils_error_assert.c +4 -7
  437. data/ext/pg_query/src_backend_utils_error_elog.c +354 -97
  438. data/ext/pg_query/src_backend_utils_fmgr_fmgr.c +33 -1
  439. data/ext/pg_query/src_backend_utils_init_globals.c +5 -2
  440. data/ext/pg_query/src_backend_utils_mb_mbutils.c +13 -4
  441. data/ext/pg_query/src_backend_utils_misc_guc_tables.c +494 -0
  442. data/ext/pg_query/src_backend_utils_mmgr_alignedalloc.c +163 -0
  443. data/ext/pg_query/src_backend_utils_mmgr_aset.c +449 -312
  444. data/ext/pg_query/src_backend_utils_mmgr_generation.c +1039 -0
  445. data/ext/pg_query/src_backend_utils_mmgr_mcxt.c +398 -49
  446. data/ext/pg_query/src_backend_utils_mmgr_slab.c +1021 -0
  447. data/ext/pg_query/src_common_encnames.c +4 -1
  448. data/ext/pg_query/src_common_hashfn.c +1 -1
  449. data/ext/pg_query/src_common_keywords.c +1 -1
  450. data/ext/pg_query/src_common_kwlist_d.h +534 -510
  451. data/ext/pg_query/src_common_kwlookup.c +1 -1
  452. data/ext/pg_query/src_common_psprintf.c +1 -1
  453. data/ext/pg_query/src_common_stringinfo.c +4 -4
  454. data/ext/pg_query/src_common_wchar.c +9 -8
  455. data/ext/pg_query/src_pl_plpgsql_src_pl_comp.c +1 -1
  456. data/ext/pg_query/src_pl_plpgsql_src_pl_funcs.c +3 -1
  457. data/ext/pg_query/src_pl_plpgsql_src_pl_gram.c +661 -694
  458. data/ext/pg_query/src_pl_plpgsql_src_pl_handler.c +1 -1
  459. data/ext/pg_query/src_pl_plpgsql_src_pl_reserved_kwlist_d.h +1 -1
  460. data/ext/pg_query/src_pl_plpgsql_src_pl_scanner.c +1 -1
  461. data/ext/pg_query/src_pl_plpgsql_src_pl_unreserved_kwlist_d.h +48 -46
  462. data/ext/pg_query/src_port_pg_bitutils.c +1 -1
  463. data/ext/pg_query/src_port_pgstrcasecmp.c +29 -1
  464. data/ext/pg_query/src_port_snprintf.c +3 -7
  465. data/ext/pg_query/src_port_strerror.c +1 -1
  466. data/ext/pg_query/src_port_strnlen.c +1 -1
  467. data/lib/pg_query/pg_query_pb.rb +166 -3191
  468. data/lib/pg_query/treewalker.rb +7 -2
  469. data/lib/pg_query/version.rb +1 -1
  470. metadata +43 -24
  471. data/ext/pg_query/include/catalog/pg_parameter_acl.h +0 -60
  472. data/ext/pg_query/include/catalog/pg_parameter_acl_d.h +0 -34
  473. data/ext/pg_query/include/commands/variable.h +0 -38
  474. data/ext/pg_query/include/getaddrinfo.h +0 -162
  475. data/ext/pg_query/include/parser/gram.h +0 -1101
  476. data/ext/pg_query/include/storage/relfilenode.h +0 -99
  477. data/ext/pg_query/include/utils/dynahash.h +0 -20
  478. data/ext/pg_query/include/utils/pg_lsn.h +0 -29
  479. data/ext/pg_query/include/utils/rls.h +0 -50
  480. data/ext/pg_query/include/utils/tzparser.h +0 -39
  481. data/ext/pg_query/src_backend_storage_lmgr_s_lock.c +0 -371
  482. data/ext/pg_query/src_backend_utils_hash_dynahash.c +0 -1116
  483. data/ext/pg_query/src_backend_utils_misc_guc.c +0 -1993
  484. data/ext/pg_query/src_common_pg_prng.c +0 -152
  485. data/ext/pg_query/src_common_string.c +0 -92
  486. data/ext/pg_query/src_port_pgsleep.c +0 -69
@@ -0,0 +1,1127 @@
1
+ /* A Bison parser, made by GNU Bison 2.3. */
2
+
3
+ /* Skeleton interface for Bison's Yacc-like parsers in C
4
+
5
+ Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
6
+ Free Software Foundation, Inc.
7
+
8
+ This program is free software; you can redistribute it and/or modify
9
+ it under the terms of the GNU General Public License as published by
10
+ the Free Software Foundation; either version 2, or (at your option)
11
+ any later version.
12
+
13
+ This program is distributed in the hope that it will be useful,
14
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
+ GNU General Public License for more details.
17
+
18
+ You should have received a copy of the GNU General Public License
19
+ along with this program; if not, write to the Free Software
20
+ Foundation, Inc., 51 Franklin Street, Fifth Floor,
21
+ Boston, MA 02110-1301, USA. */
22
+
23
+ /* As a special exception, you may create a larger work that contains
24
+ part or all of the Bison parser skeleton and distribute that work
25
+ under terms of your choice, so long as that work isn't itself a
26
+ parser generator using the skeleton or a modified version thereof
27
+ as a parser skeleton. Alternatively, if you modify or redistribute
28
+ the parser skeleton itself, you may (at your option) remove this
29
+ special exception, which will cause the skeleton and the resulting
30
+ Bison output files to be licensed under the GNU General Public
31
+ License without this special exception.
32
+
33
+ This special exception was added by the Free Software Foundation in
34
+ version 2.2 of Bison. */
35
+
36
+ /* Tokens. */
37
+ #ifndef YYTOKENTYPE
38
+ # define YYTOKENTYPE
39
+ /* Put the tokens into the symbol table, so that GDB and other debuggers
40
+ know about them. */
41
+ enum yytokentype {
42
+ IDENT = 258,
43
+ UIDENT = 259,
44
+ FCONST = 260,
45
+ SCONST = 261,
46
+ USCONST = 262,
47
+ BCONST = 263,
48
+ XCONST = 264,
49
+ Op = 265,
50
+ ICONST = 266,
51
+ PARAM = 267,
52
+ TYPECAST = 268,
53
+ DOT_DOT = 269,
54
+ COLON_EQUALS = 270,
55
+ EQUALS_GREATER = 271,
56
+ LESS_EQUALS = 272,
57
+ GREATER_EQUALS = 273,
58
+ NOT_EQUALS = 274,
59
+ SQL_COMMENT = 275,
60
+ C_COMMENT = 276,
61
+ ABORT_P = 277,
62
+ ABSENT = 278,
63
+ ABSOLUTE_P = 279,
64
+ ACCESS = 280,
65
+ ACTION = 281,
66
+ ADD_P = 282,
67
+ ADMIN = 283,
68
+ AFTER = 284,
69
+ AGGREGATE = 285,
70
+ ALL = 286,
71
+ ALSO = 287,
72
+ ALTER = 288,
73
+ ALWAYS = 289,
74
+ ANALYSE = 290,
75
+ ANALYZE = 291,
76
+ AND = 292,
77
+ ANY = 293,
78
+ ARRAY = 294,
79
+ AS = 295,
80
+ ASC = 296,
81
+ ASENSITIVE = 297,
82
+ ASSERTION = 298,
83
+ ASSIGNMENT = 299,
84
+ ASYMMETRIC = 300,
85
+ ATOMIC = 301,
86
+ AT = 302,
87
+ ATTACH = 303,
88
+ ATTRIBUTE = 304,
89
+ AUTHORIZATION = 305,
90
+ BACKWARD = 306,
91
+ BEFORE = 307,
92
+ BEGIN_P = 308,
93
+ BETWEEN = 309,
94
+ BIGINT = 310,
95
+ BINARY = 311,
96
+ BIT = 312,
97
+ BOOLEAN_P = 313,
98
+ BOTH = 314,
99
+ BREADTH = 315,
100
+ BY = 316,
101
+ CACHE = 317,
102
+ CALL = 318,
103
+ CALLED = 319,
104
+ CASCADE = 320,
105
+ CASCADED = 321,
106
+ CASE = 322,
107
+ CAST = 323,
108
+ CATALOG_P = 324,
109
+ CHAIN = 325,
110
+ CHAR_P = 326,
111
+ CHARACTER = 327,
112
+ CHARACTERISTICS = 328,
113
+ CHECK = 329,
114
+ CHECKPOINT = 330,
115
+ CLASS = 331,
116
+ CLOSE = 332,
117
+ CLUSTER = 333,
118
+ COALESCE = 334,
119
+ COLLATE = 335,
120
+ COLLATION = 336,
121
+ COLUMN = 337,
122
+ COLUMNS = 338,
123
+ COMMENT = 339,
124
+ COMMENTS = 340,
125
+ COMMIT = 341,
126
+ COMMITTED = 342,
127
+ COMPRESSION = 343,
128
+ CONCURRENTLY = 344,
129
+ CONFIGURATION = 345,
130
+ CONFLICT = 346,
131
+ CONNECTION = 347,
132
+ CONSTRAINT = 348,
133
+ CONSTRAINTS = 349,
134
+ CONTENT_P = 350,
135
+ CONTINUE_P = 351,
136
+ CONVERSION_P = 352,
137
+ COPY = 353,
138
+ COST = 354,
139
+ CREATE = 355,
140
+ CROSS = 356,
141
+ CSV = 357,
142
+ CUBE = 358,
143
+ CURRENT_P = 359,
144
+ CURRENT_CATALOG = 360,
145
+ CURRENT_DATE = 361,
146
+ CURRENT_ROLE = 362,
147
+ CURRENT_SCHEMA = 363,
148
+ CURRENT_TIME = 364,
149
+ CURRENT_TIMESTAMP = 365,
150
+ CURRENT_USER = 366,
151
+ CURSOR = 367,
152
+ CYCLE = 368,
153
+ DATA_P = 369,
154
+ DATABASE = 370,
155
+ DAY_P = 371,
156
+ DEALLOCATE = 372,
157
+ DEC = 373,
158
+ DECIMAL_P = 374,
159
+ DECLARE = 375,
160
+ DEFAULT = 376,
161
+ DEFAULTS = 377,
162
+ DEFERRABLE = 378,
163
+ DEFERRED = 379,
164
+ DEFINER = 380,
165
+ DELETE_P = 381,
166
+ DELIMITER = 382,
167
+ DELIMITERS = 383,
168
+ DEPENDS = 384,
169
+ DEPTH = 385,
170
+ DESC = 386,
171
+ DETACH = 387,
172
+ DICTIONARY = 388,
173
+ DISABLE_P = 389,
174
+ DISCARD = 390,
175
+ DISTINCT = 391,
176
+ DO = 392,
177
+ DOCUMENT_P = 393,
178
+ DOMAIN_P = 394,
179
+ DOUBLE_P = 395,
180
+ DROP = 396,
181
+ EACH = 397,
182
+ ELSE = 398,
183
+ ENABLE_P = 399,
184
+ ENCODING = 400,
185
+ ENCRYPTED = 401,
186
+ END_P = 402,
187
+ ENUM_P = 403,
188
+ ESCAPE = 404,
189
+ EVENT = 405,
190
+ EXCEPT = 406,
191
+ EXCLUDE = 407,
192
+ EXCLUDING = 408,
193
+ EXCLUSIVE = 409,
194
+ EXECUTE = 410,
195
+ EXISTS = 411,
196
+ EXPLAIN = 412,
197
+ EXPRESSION = 413,
198
+ EXTENSION = 414,
199
+ EXTERNAL = 415,
200
+ EXTRACT = 416,
201
+ FALSE_P = 417,
202
+ FAMILY = 418,
203
+ FETCH = 419,
204
+ FILTER = 420,
205
+ FINALIZE = 421,
206
+ FIRST_P = 422,
207
+ FLOAT_P = 423,
208
+ FOLLOWING = 424,
209
+ FOR = 425,
210
+ FORCE = 426,
211
+ FOREIGN = 427,
212
+ FORMAT = 428,
213
+ FORWARD = 429,
214
+ FREEZE = 430,
215
+ FROM = 431,
216
+ FULL = 432,
217
+ FUNCTION = 433,
218
+ FUNCTIONS = 434,
219
+ GENERATED = 435,
220
+ GLOBAL = 436,
221
+ GRANT = 437,
222
+ GRANTED = 438,
223
+ GREATEST = 439,
224
+ GROUP_P = 440,
225
+ GROUPING = 441,
226
+ GROUPS = 442,
227
+ HANDLER = 443,
228
+ HAVING = 444,
229
+ HEADER_P = 445,
230
+ HOLD = 446,
231
+ HOUR_P = 447,
232
+ IDENTITY_P = 448,
233
+ IF_P = 449,
234
+ ILIKE = 450,
235
+ IMMEDIATE = 451,
236
+ IMMUTABLE = 452,
237
+ IMPLICIT_P = 453,
238
+ IMPORT_P = 454,
239
+ IN_P = 455,
240
+ INCLUDE = 456,
241
+ INCLUDING = 457,
242
+ INCREMENT = 458,
243
+ INDENT = 459,
244
+ INDEX = 460,
245
+ INDEXES = 461,
246
+ INHERIT = 462,
247
+ INHERITS = 463,
248
+ INITIALLY = 464,
249
+ INLINE_P = 465,
250
+ INNER_P = 466,
251
+ INOUT = 467,
252
+ INPUT_P = 468,
253
+ INSENSITIVE = 469,
254
+ INSERT = 470,
255
+ INSTEAD = 471,
256
+ INT_P = 472,
257
+ INTEGER = 473,
258
+ INTERSECT = 474,
259
+ INTERVAL = 475,
260
+ INTO = 476,
261
+ INVOKER = 477,
262
+ IS = 478,
263
+ ISNULL = 479,
264
+ ISOLATION = 480,
265
+ JOIN = 481,
266
+ JSON = 482,
267
+ JSON_ARRAY = 483,
268
+ JSON_ARRAYAGG = 484,
269
+ JSON_OBJECT = 485,
270
+ JSON_OBJECTAGG = 486,
271
+ KEY = 487,
272
+ KEYS = 488,
273
+ LABEL = 489,
274
+ LANGUAGE = 490,
275
+ LARGE_P = 491,
276
+ LAST_P = 492,
277
+ LATERAL_P = 493,
278
+ LEADING = 494,
279
+ LEAKPROOF = 495,
280
+ LEAST = 496,
281
+ LEFT = 497,
282
+ LEVEL = 498,
283
+ LIKE = 499,
284
+ LIMIT = 500,
285
+ LISTEN = 501,
286
+ LOAD = 502,
287
+ LOCAL = 503,
288
+ LOCALTIME = 504,
289
+ LOCALTIMESTAMP = 505,
290
+ LOCATION = 506,
291
+ LOCK_P = 507,
292
+ LOCKED = 508,
293
+ LOGGED = 509,
294
+ MAPPING = 510,
295
+ MATCH = 511,
296
+ MATCHED = 512,
297
+ MATERIALIZED = 513,
298
+ MAXVALUE = 514,
299
+ MERGE = 515,
300
+ METHOD = 516,
301
+ MINUTE_P = 517,
302
+ MINVALUE = 518,
303
+ MODE = 519,
304
+ MONTH_P = 520,
305
+ MOVE = 521,
306
+ NAME_P = 522,
307
+ NAMES = 523,
308
+ NATIONAL = 524,
309
+ NATURAL = 525,
310
+ NCHAR = 526,
311
+ NEW = 527,
312
+ NEXT = 528,
313
+ NFC = 529,
314
+ NFD = 530,
315
+ NFKC = 531,
316
+ NFKD = 532,
317
+ NO = 533,
318
+ NONE = 534,
319
+ NORMALIZE = 535,
320
+ NORMALIZED = 536,
321
+ NOT = 537,
322
+ NOTHING = 538,
323
+ NOTIFY = 539,
324
+ NOTNULL = 540,
325
+ NOWAIT = 541,
326
+ NULL_P = 542,
327
+ NULLIF = 543,
328
+ NULLS_P = 544,
329
+ NUMERIC = 545,
330
+ OBJECT_P = 546,
331
+ OF = 547,
332
+ OFF = 548,
333
+ OFFSET = 549,
334
+ OIDS = 550,
335
+ OLD = 551,
336
+ ON = 552,
337
+ ONLY = 553,
338
+ OPERATOR = 554,
339
+ OPTION = 555,
340
+ OPTIONS = 556,
341
+ OR = 557,
342
+ ORDER = 558,
343
+ ORDINALITY = 559,
344
+ OTHERS = 560,
345
+ OUT_P = 561,
346
+ OUTER_P = 562,
347
+ OVER = 563,
348
+ OVERLAPS = 564,
349
+ OVERLAY = 565,
350
+ OVERRIDING = 566,
351
+ OWNED = 567,
352
+ OWNER = 568,
353
+ PARALLEL = 569,
354
+ PARAMETER = 570,
355
+ PARSER = 571,
356
+ PARTIAL = 572,
357
+ PARTITION = 573,
358
+ PASSING = 574,
359
+ PASSWORD = 575,
360
+ PLACING = 576,
361
+ PLANS = 577,
362
+ POLICY = 578,
363
+ POSITION = 579,
364
+ PRECEDING = 580,
365
+ PRECISION = 581,
366
+ PRESERVE = 582,
367
+ PREPARE = 583,
368
+ PREPARED = 584,
369
+ PRIMARY = 585,
370
+ PRIOR = 586,
371
+ PRIVILEGES = 587,
372
+ PROCEDURAL = 588,
373
+ PROCEDURE = 589,
374
+ PROCEDURES = 590,
375
+ PROGRAM = 591,
376
+ PUBLICATION = 592,
377
+ QUOTE = 593,
378
+ RANGE = 594,
379
+ READ = 595,
380
+ REAL = 596,
381
+ REASSIGN = 597,
382
+ RECHECK = 598,
383
+ RECURSIVE = 599,
384
+ REF_P = 600,
385
+ REFERENCES = 601,
386
+ REFERENCING = 602,
387
+ REFRESH = 603,
388
+ REINDEX = 604,
389
+ RELATIVE_P = 605,
390
+ RELEASE = 606,
391
+ RENAME = 607,
392
+ REPEATABLE = 608,
393
+ REPLACE = 609,
394
+ REPLICA = 610,
395
+ RESET = 611,
396
+ RESTART = 612,
397
+ RESTRICT = 613,
398
+ RETURN = 614,
399
+ RETURNING = 615,
400
+ RETURNS = 616,
401
+ REVOKE = 617,
402
+ RIGHT = 618,
403
+ ROLE = 619,
404
+ ROLLBACK = 620,
405
+ ROLLUP = 621,
406
+ ROUTINE = 622,
407
+ ROUTINES = 623,
408
+ ROW = 624,
409
+ ROWS = 625,
410
+ RULE = 626,
411
+ SAVEPOINT = 627,
412
+ SCALAR = 628,
413
+ SCHEMA = 629,
414
+ SCHEMAS = 630,
415
+ SCROLL = 631,
416
+ SEARCH = 632,
417
+ SECOND_P = 633,
418
+ SECURITY = 634,
419
+ SELECT = 635,
420
+ SEQUENCE = 636,
421
+ SEQUENCES = 637,
422
+ SERIALIZABLE = 638,
423
+ SERVER = 639,
424
+ SESSION = 640,
425
+ SESSION_USER = 641,
426
+ SET = 642,
427
+ SETS = 643,
428
+ SETOF = 644,
429
+ SHARE = 645,
430
+ SHOW = 646,
431
+ SIMILAR = 647,
432
+ SIMPLE = 648,
433
+ SKIP = 649,
434
+ SMALLINT = 650,
435
+ SNAPSHOT = 651,
436
+ SOME = 652,
437
+ SQL_P = 653,
438
+ STABLE = 654,
439
+ STANDALONE_P = 655,
440
+ START = 656,
441
+ STATEMENT = 657,
442
+ STATISTICS = 658,
443
+ STDIN = 659,
444
+ STDOUT = 660,
445
+ STORAGE = 661,
446
+ STORED = 662,
447
+ STRICT_P = 663,
448
+ STRIP_P = 664,
449
+ SUBSCRIPTION = 665,
450
+ SUBSTRING = 666,
451
+ SUPPORT = 667,
452
+ SYMMETRIC = 668,
453
+ SYSID = 669,
454
+ SYSTEM_P = 670,
455
+ SYSTEM_USER = 671,
456
+ TABLE = 672,
457
+ TABLES = 673,
458
+ TABLESAMPLE = 674,
459
+ TABLESPACE = 675,
460
+ TEMP = 676,
461
+ TEMPLATE = 677,
462
+ TEMPORARY = 678,
463
+ TEXT_P = 679,
464
+ THEN = 680,
465
+ TIES = 681,
466
+ TIME = 682,
467
+ TIMESTAMP = 683,
468
+ TO = 684,
469
+ TRAILING = 685,
470
+ TRANSACTION = 686,
471
+ TRANSFORM = 687,
472
+ TREAT = 688,
473
+ TRIGGER = 689,
474
+ TRIM = 690,
475
+ TRUE_P = 691,
476
+ TRUNCATE = 692,
477
+ TRUSTED = 693,
478
+ TYPE_P = 694,
479
+ TYPES_P = 695,
480
+ UESCAPE = 696,
481
+ UNBOUNDED = 697,
482
+ UNCOMMITTED = 698,
483
+ UNENCRYPTED = 699,
484
+ UNION = 700,
485
+ UNIQUE = 701,
486
+ UNKNOWN = 702,
487
+ UNLISTEN = 703,
488
+ UNLOGGED = 704,
489
+ UNTIL = 705,
490
+ UPDATE = 706,
491
+ USER = 707,
492
+ USING = 708,
493
+ VACUUM = 709,
494
+ VALID = 710,
495
+ VALIDATE = 711,
496
+ VALIDATOR = 712,
497
+ VALUE_P = 713,
498
+ VALUES = 714,
499
+ VARCHAR = 715,
500
+ VARIADIC = 716,
501
+ VARYING = 717,
502
+ VERBOSE = 718,
503
+ VERSION_P = 719,
504
+ VIEW = 720,
505
+ VIEWS = 721,
506
+ VOLATILE = 722,
507
+ WHEN = 723,
508
+ WHERE = 724,
509
+ WHITESPACE_P = 725,
510
+ WINDOW = 726,
511
+ WITH = 727,
512
+ WITHIN = 728,
513
+ WITHOUT = 729,
514
+ WORK = 730,
515
+ WRAPPER = 731,
516
+ WRITE = 732,
517
+ XML_P = 733,
518
+ XMLATTRIBUTES = 734,
519
+ XMLCONCAT = 735,
520
+ XMLELEMENT = 736,
521
+ XMLEXISTS = 737,
522
+ XMLFOREST = 738,
523
+ XMLNAMESPACES = 739,
524
+ XMLPARSE = 740,
525
+ XMLPI = 741,
526
+ XMLROOT = 742,
527
+ XMLSERIALIZE = 743,
528
+ XMLTABLE = 744,
529
+ YEAR_P = 745,
530
+ YES_P = 746,
531
+ ZONE = 747,
532
+ FORMAT_LA = 748,
533
+ NOT_LA = 749,
534
+ NULLS_LA = 750,
535
+ WITH_LA = 751,
536
+ WITHOUT_LA = 752,
537
+ MODE_TYPE_NAME = 753,
538
+ MODE_PLPGSQL_EXPR = 754,
539
+ MODE_PLPGSQL_ASSIGN1 = 755,
540
+ MODE_PLPGSQL_ASSIGN2 = 756,
541
+ MODE_PLPGSQL_ASSIGN3 = 757,
542
+ UMINUS = 758
543
+ };
544
+ #endif
545
+ /* Tokens. */
546
+ #define IDENT 258
547
+ #define UIDENT 259
548
+ #define FCONST 260
549
+ #define SCONST 261
550
+ #define USCONST 262
551
+ #define BCONST 263
552
+ #define XCONST 264
553
+ #define Op 265
554
+ #define ICONST 266
555
+ #define PARAM 267
556
+ #define TYPECAST 268
557
+ #define DOT_DOT 269
558
+ #define COLON_EQUALS 270
559
+ #define EQUALS_GREATER 271
560
+ #define LESS_EQUALS 272
561
+ #define GREATER_EQUALS 273
562
+ #define NOT_EQUALS 274
563
+ #define SQL_COMMENT 275
564
+ #define C_COMMENT 276
565
+ #define ABORT_P 277
566
+ #define ABSENT 278
567
+ #define ABSOLUTE_P 279
568
+ #define ACCESS 280
569
+ #define ACTION 281
570
+ #define ADD_P 282
571
+ #define ADMIN 283
572
+ #define AFTER 284
573
+ #define AGGREGATE 285
574
+ #define ALL 286
575
+ #define ALSO 287
576
+ #define ALTER 288
577
+ #define ALWAYS 289
578
+ #define ANALYSE 290
579
+ #define ANALYZE 291
580
+ #define AND 292
581
+ #define ANY 293
582
+ #define ARRAY 294
583
+ #define AS 295
584
+ #define ASC 296
585
+ #define ASENSITIVE 297
586
+ #define ASSERTION 298
587
+ #define ASSIGNMENT 299
588
+ #define ASYMMETRIC 300
589
+ #define ATOMIC 301
590
+ #define AT 302
591
+ #define ATTACH 303
592
+ #define ATTRIBUTE 304
593
+ #define AUTHORIZATION 305
594
+ #define BACKWARD 306
595
+ #define BEFORE 307
596
+ #define BEGIN_P 308
597
+ #define BETWEEN 309
598
+ #define BIGINT 310
599
+ #define BINARY 311
600
+ #define BIT 312
601
+ #define BOOLEAN_P 313
602
+ #define BOTH 314
603
+ #define BREADTH 315
604
+ #define BY 316
605
+ #define CACHE 317
606
+ #define CALL 318
607
+ #define CALLED 319
608
+ #define CASCADE 320
609
+ #define CASCADED 321
610
+ #define CASE 322
611
+ #define CAST 323
612
+ #define CATALOG_P 324
613
+ #define CHAIN 325
614
+ #define CHAR_P 326
615
+ #define CHARACTER 327
616
+ #define CHARACTERISTICS 328
617
+ #define CHECK 329
618
+ #define CHECKPOINT 330
619
+ #define CLASS 331
620
+ #define CLOSE 332
621
+ #define CLUSTER 333
622
+ #define COALESCE 334
623
+ #define COLLATE 335
624
+ #define COLLATION 336
625
+ #define COLUMN 337
626
+ #define COLUMNS 338
627
+ #define COMMENT 339
628
+ #define COMMENTS 340
629
+ #define COMMIT 341
630
+ #define COMMITTED 342
631
+ #define COMPRESSION 343
632
+ #define CONCURRENTLY 344
633
+ #define CONFIGURATION 345
634
+ #define CONFLICT 346
635
+ #define CONNECTION 347
636
+ #define CONSTRAINT 348
637
+ #define CONSTRAINTS 349
638
+ #define CONTENT_P 350
639
+ #define CONTINUE_P 351
640
+ #define CONVERSION_P 352
641
+ #define COPY 353
642
+ #define COST 354
643
+ #define CREATE 355
644
+ #define CROSS 356
645
+ #define CSV 357
646
+ #define CUBE 358
647
+ #define CURRENT_P 359
648
+ #define CURRENT_CATALOG 360
649
+ #define CURRENT_DATE 361
650
+ #define CURRENT_ROLE 362
651
+ #define CURRENT_SCHEMA 363
652
+ #define CURRENT_TIME 364
653
+ #define CURRENT_TIMESTAMP 365
654
+ #define CURRENT_USER 366
655
+ #define CURSOR 367
656
+ #define CYCLE 368
657
+ #define DATA_P 369
658
+ #define DATABASE 370
659
+ #define DAY_P 371
660
+ #define DEALLOCATE 372
661
+ #define DEC 373
662
+ #define DECIMAL_P 374
663
+ #define DECLARE 375
664
+ #define DEFAULT 376
665
+ #define DEFAULTS 377
666
+ #define DEFERRABLE 378
667
+ #define DEFERRED 379
668
+ #define DEFINER 380
669
+ #define DELETE_P 381
670
+ #define DELIMITER 382
671
+ #define DELIMITERS 383
672
+ #define DEPENDS 384
673
+ #define DEPTH 385
674
+ #define DESC 386
675
+ #define DETACH 387
676
+ #define DICTIONARY 388
677
+ #define DISABLE_P 389
678
+ #define DISCARD 390
679
+ #define DISTINCT 391
680
+ #define DO 392
681
+ #define DOCUMENT_P 393
682
+ #define DOMAIN_P 394
683
+ #define DOUBLE_P 395
684
+ #define DROP 396
685
+ #define EACH 397
686
+ #define ELSE 398
687
+ #define ENABLE_P 399
688
+ #define ENCODING 400
689
+ #define ENCRYPTED 401
690
+ #define END_P 402
691
+ #define ENUM_P 403
692
+ #define ESCAPE 404
693
+ #define EVENT 405
694
+ #define EXCEPT 406
695
+ #define EXCLUDE 407
696
+ #define EXCLUDING 408
697
+ #define EXCLUSIVE 409
698
+ #define EXECUTE 410
699
+ #define EXISTS 411
700
+ #define EXPLAIN 412
701
+ #define EXPRESSION 413
702
+ #define EXTENSION 414
703
+ #define EXTERNAL 415
704
+ #define EXTRACT 416
705
+ #define FALSE_P 417
706
+ #define FAMILY 418
707
+ #define FETCH 419
708
+ #define FILTER 420
709
+ #define FINALIZE 421
710
+ #define FIRST_P 422
711
+ #define FLOAT_P 423
712
+ #define FOLLOWING 424
713
+ #define FOR 425
714
+ #define FORCE 426
715
+ #define FOREIGN 427
716
+ #define FORMAT 428
717
+ #define FORWARD 429
718
+ #define FREEZE 430
719
+ #define FROM 431
720
+ #define FULL 432
721
+ #define FUNCTION 433
722
+ #define FUNCTIONS 434
723
+ #define GENERATED 435
724
+ #define GLOBAL 436
725
+ #define GRANT 437
726
+ #define GRANTED 438
727
+ #define GREATEST 439
728
+ #define GROUP_P 440
729
+ #define GROUPING 441
730
+ #define GROUPS 442
731
+ #define HANDLER 443
732
+ #define HAVING 444
733
+ #define HEADER_P 445
734
+ #define HOLD 446
735
+ #define HOUR_P 447
736
+ #define IDENTITY_P 448
737
+ #define IF_P 449
738
+ #define ILIKE 450
739
+ #define IMMEDIATE 451
740
+ #define IMMUTABLE 452
741
+ #define IMPLICIT_P 453
742
+ #define IMPORT_P 454
743
+ #define IN_P 455
744
+ #define INCLUDE 456
745
+ #define INCLUDING 457
746
+ #define INCREMENT 458
747
+ #define INDENT 459
748
+ #define INDEX 460
749
+ #define INDEXES 461
750
+ #define INHERIT 462
751
+ #define INHERITS 463
752
+ #define INITIALLY 464
753
+ #define INLINE_P 465
754
+ #define INNER_P 466
755
+ #define INOUT 467
756
+ #define INPUT_P 468
757
+ #define INSENSITIVE 469
758
+ #define INSERT 470
759
+ #define INSTEAD 471
760
+ #define INT_P 472
761
+ #define INTEGER 473
762
+ #define INTERSECT 474
763
+ #define INTERVAL 475
764
+ #define INTO 476
765
+ #define INVOKER 477
766
+ #define IS 478
767
+ #define ISNULL 479
768
+ #define ISOLATION 480
769
+ #define JOIN 481
770
+ #define JSON 482
771
+ #define JSON_ARRAY 483
772
+ #define JSON_ARRAYAGG 484
773
+ #define JSON_OBJECT 485
774
+ #define JSON_OBJECTAGG 486
775
+ #define KEY 487
776
+ #define KEYS 488
777
+ #define LABEL 489
778
+ #define LANGUAGE 490
779
+ #define LARGE_P 491
780
+ #define LAST_P 492
781
+ #define LATERAL_P 493
782
+ #define LEADING 494
783
+ #define LEAKPROOF 495
784
+ #define LEAST 496
785
+ #define LEFT 497
786
+ #define LEVEL 498
787
+ #define LIKE 499
788
+ #define LIMIT 500
789
+ #define LISTEN 501
790
+ #define LOAD 502
791
+ #define LOCAL 503
792
+ #define LOCALTIME 504
793
+ #define LOCALTIMESTAMP 505
794
+ #define LOCATION 506
795
+ #define LOCK_P 507
796
+ #define LOCKED 508
797
+ #define LOGGED 509
798
+ #define MAPPING 510
799
+ #define MATCH 511
800
+ #define MATCHED 512
801
+ #define MATERIALIZED 513
802
+ #define MAXVALUE 514
803
+ #define MERGE 515
804
+ #define METHOD 516
805
+ #define MINUTE_P 517
806
+ #define MINVALUE 518
807
+ #define MODE 519
808
+ #define MONTH_P 520
809
+ #define MOVE 521
810
+ #define NAME_P 522
811
+ #define NAMES 523
812
+ #define NATIONAL 524
813
+ #define NATURAL 525
814
+ #define NCHAR 526
815
+ #define NEW 527
816
+ #define NEXT 528
817
+ #define NFC 529
818
+ #define NFD 530
819
+ #define NFKC 531
820
+ #define NFKD 532
821
+ #define NO 533
822
+ #define NONE 534
823
+ #define NORMALIZE 535
824
+ #define NORMALIZED 536
825
+ #define NOT 537
826
+ #define NOTHING 538
827
+ #define NOTIFY 539
828
+ #define NOTNULL 540
829
+ #define NOWAIT 541
830
+ #define NULL_P 542
831
+ #define NULLIF 543
832
+ #define NULLS_P 544
833
+ #define NUMERIC 545
834
+ #define OBJECT_P 546
835
+ #define OF 547
836
+ #define OFF 548
837
+ #define OFFSET 549
838
+ #define OIDS 550
839
+ #define OLD 551
840
+ #define ON 552
841
+ #define ONLY 553
842
+ #define OPERATOR 554
843
+ #define OPTION 555
844
+ #define OPTIONS 556
845
+ #define OR 557
846
+ #define ORDER 558
847
+ #define ORDINALITY 559
848
+ #define OTHERS 560
849
+ #define OUT_P 561
850
+ #define OUTER_P 562
851
+ #define OVER 563
852
+ #define OVERLAPS 564
853
+ #define OVERLAY 565
854
+ #define OVERRIDING 566
855
+ #define OWNED 567
856
+ #define OWNER 568
857
+ #define PARALLEL 569
858
+ #define PARAMETER 570
859
+ #define PARSER 571
860
+ #define PARTIAL 572
861
+ #define PARTITION 573
862
+ #define PASSING 574
863
+ #define PASSWORD 575
864
+ #define PLACING 576
865
+ #define PLANS 577
866
+ #define POLICY 578
867
+ #define POSITION 579
868
+ #define PRECEDING 580
869
+ #define PRECISION 581
870
+ #define PRESERVE 582
871
+ #define PREPARE 583
872
+ #define PREPARED 584
873
+ #define PRIMARY 585
874
+ #define PRIOR 586
875
+ #define PRIVILEGES 587
876
+ #define PROCEDURAL 588
877
+ #define PROCEDURE 589
878
+ #define PROCEDURES 590
879
+ #define PROGRAM 591
880
+ #define PUBLICATION 592
881
+ #define QUOTE 593
882
+ #define RANGE 594
883
+ #define READ 595
884
+ #define REAL 596
885
+ #define REASSIGN 597
886
+ #define RECHECK 598
887
+ #define RECURSIVE 599
888
+ #define REF_P 600
889
+ #define REFERENCES 601
890
+ #define REFERENCING 602
891
+ #define REFRESH 603
892
+ #define REINDEX 604
893
+ #define RELATIVE_P 605
894
+ #define RELEASE 606
895
+ #define RENAME 607
896
+ #define REPEATABLE 608
897
+ #define REPLACE 609
898
+ #define REPLICA 610
899
+ #define RESET 611
900
+ #define RESTART 612
901
+ #define RESTRICT 613
902
+ #define RETURN 614
903
+ #define RETURNING 615
904
+ #define RETURNS 616
905
+ #define REVOKE 617
906
+ #define RIGHT 618
907
+ #define ROLE 619
908
+ #define ROLLBACK 620
909
+ #define ROLLUP 621
910
+ #define ROUTINE 622
911
+ #define ROUTINES 623
912
+ #define ROW 624
913
+ #define ROWS 625
914
+ #define RULE 626
915
+ #define SAVEPOINT 627
916
+ #define SCALAR 628
917
+ #define SCHEMA 629
918
+ #define SCHEMAS 630
919
+ #define SCROLL 631
920
+ #define SEARCH 632
921
+ #define SECOND_P 633
922
+ #define SECURITY 634
923
+ #define SELECT 635
924
+ #define SEQUENCE 636
925
+ #define SEQUENCES 637
926
+ #define SERIALIZABLE 638
927
+ #define SERVER 639
928
+ #define SESSION 640
929
+ #define SESSION_USER 641
930
+ #define SET 642
931
+ #define SETS 643
932
+ #define SETOF 644
933
+ #define SHARE 645
934
+ #define SHOW 646
935
+ #define SIMILAR 647
936
+ #define SIMPLE 648
937
+ #define SKIP 649
938
+ #define SMALLINT 650
939
+ #define SNAPSHOT 651
940
+ #define SOME 652
941
+ #define SQL_P 653
942
+ #define STABLE 654
943
+ #define STANDALONE_P 655
944
+ #define START 656
945
+ #define STATEMENT 657
946
+ #define STATISTICS 658
947
+ #define STDIN 659
948
+ #define STDOUT 660
949
+ #define STORAGE 661
950
+ #define STORED 662
951
+ #define STRICT_P 663
952
+ #define STRIP_P 664
953
+ #define SUBSCRIPTION 665
954
+ #define SUBSTRING 666
955
+ #define SUPPORT 667
956
+ #define SYMMETRIC 668
957
+ #define SYSID 669
958
+ #define SYSTEM_P 670
959
+ #define SYSTEM_USER 671
960
+ #define TABLE 672
961
+ #define TABLES 673
962
+ #define TABLESAMPLE 674
963
+ #define TABLESPACE 675
964
+ #define TEMP 676
965
+ #define TEMPLATE 677
966
+ #define TEMPORARY 678
967
+ #define TEXT_P 679
968
+ #define THEN 680
969
+ #define TIES 681
970
+ #define TIME 682
971
+ #define TIMESTAMP 683
972
+ #define TO 684
973
+ #define TRAILING 685
974
+ #define TRANSACTION 686
975
+ #define TRANSFORM 687
976
+ #define TREAT 688
977
+ #define TRIGGER 689
978
+ #define TRIM 690
979
+ #define TRUE_P 691
980
+ #define TRUNCATE 692
981
+ #define TRUSTED 693
982
+ #define TYPE_P 694
983
+ #define TYPES_P 695
984
+ #define UESCAPE 696
985
+ #define UNBOUNDED 697
986
+ #define UNCOMMITTED 698
987
+ #define UNENCRYPTED 699
988
+ #define UNION 700
989
+ #define UNIQUE 701
990
+ #define UNKNOWN 702
991
+ #define UNLISTEN 703
992
+ #define UNLOGGED 704
993
+ #define UNTIL 705
994
+ #define UPDATE 706
995
+ #define USER 707
996
+ #define USING 708
997
+ #define VACUUM 709
998
+ #define VALID 710
999
+ #define VALIDATE 711
1000
+ #define VALIDATOR 712
1001
+ #define VALUE_P 713
1002
+ #define VALUES 714
1003
+ #define VARCHAR 715
1004
+ #define VARIADIC 716
1005
+ #define VARYING 717
1006
+ #define VERBOSE 718
1007
+ #define VERSION_P 719
1008
+ #define VIEW 720
1009
+ #define VIEWS 721
1010
+ #define VOLATILE 722
1011
+ #define WHEN 723
1012
+ #define WHERE 724
1013
+ #define WHITESPACE_P 725
1014
+ #define WINDOW 726
1015
+ #define WITH 727
1016
+ #define WITHIN 728
1017
+ #define WITHOUT 729
1018
+ #define WORK 730
1019
+ #define WRAPPER 731
1020
+ #define WRITE 732
1021
+ #define XML_P 733
1022
+ #define XMLATTRIBUTES 734
1023
+ #define XMLCONCAT 735
1024
+ #define XMLELEMENT 736
1025
+ #define XMLEXISTS 737
1026
+ #define XMLFOREST 738
1027
+ #define XMLNAMESPACES 739
1028
+ #define XMLPARSE 740
1029
+ #define XMLPI 741
1030
+ #define XMLROOT 742
1031
+ #define XMLSERIALIZE 743
1032
+ #define XMLTABLE 744
1033
+ #define YEAR_P 745
1034
+ #define YES_P 746
1035
+ #define ZONE 747
1036
+ #define FORMAT_LA 748
1037
+ #define NOT_LA 749
1038
+ #define NULLS_LA 750
1039
+ #define WITH_LA 751
1040
+ #define WITHOUT_LA 752
1041
+ #define MODE_TYPE_NAME 753
1042
+ #define MODE_PLPGSQL_EXPR 754
1043
+ #define MODE_PLPGSQL_ASSIGN1 755
1044
+ #define MODE_PLPGSQL_ASSIGN2 756
1045
+ #define MODE_PLPGSQL_ASSIGN3 757
1046
+ #define UMINUS 758
1047
+
1048
+
1049
+
1050
+
1051
+ #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
1052
+ typedef union YYSTYPE
1053
+ #line 234 "gram.y"
1054
+ {
1055
+ core_YYSTYPE core_yystype;
1056
+ /* these fields must match core_YYSTYPE: */
1057
+ int ival;
1058
+ char *str;
1059
+ const char *keyword;
1060
+
1061
+ char chr;
1062
+ bool boolean;
1063
+ JoinType jtype;
1064
+ DropBehavior dbehavior;
1065
+ OnCommitAction oncommit;
1066
+ List *list;
1067
+ Node *node;
1068
+ ObjectType objtype;
1069
+ TypeName *typnam;
1070
+ FunctionParameter *fun_param;
1071
+ FunctionParameterMode fun_param_mode;
1072
+ ObjectWithArgs *objwithargs;
1073
+ DefElem *defelt;
1074
+ SortBy *sortby;
1075
+ WindowDef *windef;
1076
+ JoinExpr *jexpr;
1077
+ IndexElem *ielem;
1078
+ StatsElem *selem;
1079
+ Alias *alias;
1080
+ RangeVar *range;
1081
+ IntoClause *into;
1082
+ WithClause *with;
1083
+ InferClause *infer;
1084
+ OnConflictClause *onconflict;
1085
+ A_Indices *aind;
1086
+ ResTarget *target;
1087
+ struct PrivTarget *privtarget;
1088
+ AccessPriv *accesspriv;
1089
+ struct ImportQual *importqual;
1090
+ InsertStmt *istmt;
1091
+ VariableSetStmt *vsetstmt;
1092
+ PartitionElem *partelem;
1093
+ PartitionSpec *partspec;
1094
+ PartitionBoundSpec *partboundspec;
1095
+ RoleSpec *rolespec;
1096
+ PublicationObjSpec *publicationobjectspec;
1097
+ struct SelectLimit *selectlimit;
1098
+ SetQuantifier setquantifier;
1099
+ struct GroupClause *groupclause;
1100
+ MergeWhenClause *mergewhen;
1101
+ struct KeyActions *keyactions;
1102
+ struct KeyAction *keyaction;
1103
+ }
1104
+ /* Line 1529 of yacc.c. */
1105
+ #line 1106 "gram.h"
1106
+ YYSTYPE;
1107
+ # define yystype YYSTYPE /* obsolescent; will be withdrawn */
1108
+ # define YYSTYPE_IS_DECLARED 1
1109
+ # define YYSTYPE_IS_TRIVIAL 1
1110
+ #endif
1111
+
1112
+
1113
+
1114
+ #if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED
1115
+ typedef struct YYLTYPE
1116
+ {
1117
+ int first_line;
1118
+ int first_column;
1119
+ int last_line;
1120
+ int last_column;
1121
+ } YYLTYPE;
1122
+ # define yyltype YYLTYPE /* obsolescent; will be withdrawn */
1123
+ # define YYLTYPE_IS_DECLARED 1
1124
+ # define YYLTYPE_IS_TRIVIAL 1
1125
+ #endif
1126
+
1127
+