pg_query 2.0.3 → 5.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +165 -0
- data/README.md +67 -29
- data/Rakefile +8 -23
- data/ext/pg_query/extconf.rb +21 -3
- data/ext/pg_query/include/pg_query.h +29 -4
- data/ext/pg_query/include/pg_query_enum_defs.c +551 -272
- data/ext/pg_query/include/pg_query_fingerprint_conds.c +563 -470
- data/ext/pg_query/include/pg_query_fingerprint_defs.c +5403 -3945
- data/ext/pg_query/include/pg_query_outfuncs_conds.c +402 -330
- data/ext/pg_query/include/pg_query_outfuncs_defs.c +1319 -1059
- data/ext/pg_query/include/pg_query_readfuncs_conds.c +141 -118
- data/ext/pg_query/include/pg_query_readfuncs_defs.c +1685 -1379
- data/ext/pg_query/include/{access → postgres/access}/amapi.h +47 -1
- data/ext/pg_query/include/{access → postgres/access}/attmap.h +5 -3
- data/ext/pg_query/include/{access → postgres/access}/attnum.h +2 -2
- data/ext/pg_query/include/{access → postgres/access}/clog.h +4 -2
- data/ext/pg_query/include/{access → postgres/access}/commit_ts.h +6 -9
- data/ext/pg_query/include/{access → postgres/access}/detoast.h +1 -11
- data/ext/pg_query/include/{access → postgres/access}/genam.h +21 -16
- data/ext/pg_query/include/{access → postgres/access}/gin.h +17 -4
- data/ext/pg_query/include/{access → postgres/access}/htup.h +1 -1
- data/ext/pg_query/include/{access → postgres/access}/htup_details.h +80 -88
- data/ext/pg_query/include/{access → postgres/access}/itup.h +61 -52
- data/ext/pg_query/include/{access → postgres/access}/parallel.h +2 -2
- data/ext/pg_query/include/{access → postgres/access}/printtup.h +1 -1
- data/ext/pg_query/include/{access → postgres/access}/relation.h +1 -1
- data/ext/pg_query/include/{access → postgres/access}/relscan.h +17 -2
- data/ext/pg_query/include/postgres/access/rmgr.h +62 -0
- data/ext/pg_query/include/{access → postgres/access}/rmgrlist.h +24 -24
- data/ext/pg_query/include/{access → postgres/access}/sdir.h +12 -3
- data/ext/pg_query/include/{access → postgres/access}/skey.h +1 -1
- data/ext/pg_query/include/{access → postgres/access}/stratnum.h +4 -2
- data/ext/pg_query/include/{access → postgres/access}/sysattr.h +1 -1
- data/ext/pg_query/include/{access → postgres/access}/table.h +2 -1
- data/ext/pg_query/include/{access → postgres/access}/tableam.h +337 -62
- data/ext/pg_query/include/postgres/access/toast_compression.h +73 -0
- data/ext/pg_query/include/{access → postgres/access}/transam.h +123 -13
- data/ext/pg_query/include/postgres/access/tsmapi.h +82 -0
- data/ext/pg_query/include/{access → postgres/access}/tupconvert.h +5 -2
- data/ext/pg_query/include/{access → postgres/access}/tupdesc.h +2 -2
- data/ext/pg_query/include/{access → postgres/access}/tupmacs.h +60 -100
- data/ext/pg_query/include/{access → postgres/access}/twophase.h +5 -1
- data/ext/pg_query/include/{access → postgres/access}/xact.h +99 -32
- data/ext/pg_query/include/{access → postgres/access}/xlog.h +69 -165
- data/ext/pg_query/include/{access → postgres/access}/xlog_internal.h +147 -73
- data/ext/pg_query/include/postgres/access/xlogbackup.h +41 -0
- data/ext/pg_query/include/{access → postgres/access}/xlogdefs.h +13 -40
- data/ext/pg_query/include/postgres/access/xlogprefetcher.h +55 -0
- data/ext/pg_query/include/{access → postgres/access}/xlogreader.h +154 -37
- data/ext/pg_query/include/{access → postgres/access}/xlogrecord.h +34 -13
- data/ext/pg_query/include/postgres/access/xlogrecovery.h +158 -0
- data/ext/pg_query/include/postgres/archive/archive_module.h +59 -0
- data/ext/pg_query/include/{c.h → postgres/c.h} +245 -188
- data/ext/pg_query/include/{catalog → postgres/catalog}/catalog.h +6 -3
- data/ext/pg_query/include/{catalog → postgres/catalog}/catversion.h +6 -2
- data/ext/pg_query/include/{catalog → postgres/catalog}/dependency.h +14 -19
- data/ext/pg_query/include/postgres/catalog/genbki.h +143 -0
- data/ext/pg_query/include/{catalog → postgres/catalog}/index.h +20 -5
- data/ext/pg_query/include/postgres/catalog/indexing.h +54 -0
- data/ext/pg_query/include/{catalog → postgres/catalog}/namespace.h +5 -3
- data/ext/pg_query/include/{catalog → postgres/catalog}/objectaccess.h +73 -3
- data/ext/pg_query/include/{catalog → postgres/catalog}/objectaddress.h +12 -7
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_aggregate.h +14 -10
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_aggregate_d.h +2 -1
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_am.h +4 -1
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_am_d.h +3 -1
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_attribute.h +45 -26
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_attribute_d.h +19 -16
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_authid.h +7 -2
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_authid_d.h +19 -9
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_class.h +45 -15
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_class_d.h +31 -2
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_collation.h +35 -8
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_collation_d.h +21 -3
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_constraint.h +39 -13
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_constraint_d.h +10 -4
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_control.h +13 -5
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_conversion.h +8 -5
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_conversion_d.h +4 -1
- data/ext/pg_query/include/postgres/catalog/pg_database.h +124 -0
- data/ext/pg_query/include/postgres/catalog/pg_database_d.h +52 -0
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_depend.h +11 -7
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_depend_d.h +3 -1
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_event_trigger.h +9 -3
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_event_trigger_d.h +3 -1
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_index.h +17 -7
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_index_d.h +20 -17
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_language.h +10 -5
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_language_d.h +3 -1
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_namespace.h +7 -2
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_namespace_d.h +3 -1
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_opclass.h +8 -5
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_opclass_d.h +3 -1
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_operator.h +21 -16
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_operator_d.h +37 -1
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_opfamily.h +8 -4
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_opfamily_d.h +6 -2
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_partitioned_table.h +20 -9
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_partitioned_table_d.h +2 -1
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_proc.h +20 -11
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_proc_d.h +10 -8
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_publication.h +49 -6
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_publication_d.h +3 -1
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_replication_origin.h +6 -1
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_replication_origin_d.h +5 -1
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_statistic.h +19 -12
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_statistic_d.h +2 -1
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_statistic_ext.h +19 -5
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_statistic_ext_d.h +7 -2
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_transform.h +8 -5
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_transform_d.h +3 -1
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_trigger.h +24 -8
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_trigger_d.h +4 -1
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_ts_config.h +6 -3
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_ts_config_d.h +3 -1
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_ts_dict.h +8 -3
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_ts_dict_d.h +3 -1
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_ts_parser.h +6 -3
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_ts_parser_d.h +3 -1
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_ts_template.h +6 -3
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_ts_template_d.h +3 -1
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_type.h +56 -24
- data/ext/pg_query/include/{catalog → postgres/catalog}/pg_type_d.h +70 -31
- data/ext/pg_query/include/{catalog → postgres/catalog}/storage.h +9 -7
- data/ext/pg_query/include/{commands → postgres/commands}/async.h +4 -5
- data/ext/pg_query/include/{commands → postgres/commands}/dbcommands.h +3 -1
- data/ext/pg_query/include/{commands → postgres/commands}/defrem.h +12 -24
- data/ext/pg_query/include/{commands → postgres/commands}/event_trigger.h +2 -2
- data/ext/pg_query/include/{commands → postgres/commands}/explain.h +3 -1
- data/ext/pg_query/include/{commands → postgres/commands}/prepare.h +1 -1
- data/ext/pg_query/include/{commands → postgres/commands}/tablespace.h +6 -4
- data/ext/pg_query/include/{commands → postgres/commands}/trigger.h +36 -25
- data/ext/pg_query/include/{commands → postgres/commands}/user.h +10 -4
- data/ext/pg_query/include/{commands → postgres/commands}/vacuum.h +140 -47
- data/ext/pg_query/include/postgres/common/cryptohash.h +39 -0
- data/ext/pg_query/include/{common → postgres/common}/file_perm.h +4 -4
- data/ext/pg_query/include/{common → postgres/common}/hashfn.h +1 -1
- data/ext/pg_query/include/postgres/common/int.h +437 -0
- data/ext/pg_query/include/{common → postgres/common}/keywords.h +2 -6
- data/ext/pg_query/include/{common → postgres/common}/kwlookup.h +2 -2
- data/ext/pg_query/include/postgres/common/pg_prng.h +61 -0
- data/ext/pg_query/include/{common → postgres/common}/relpath.h +21 -14
- data/ext/pg_query/include/postgres/common/scram-common.h +70 -0
- data/ext/pg_query/include/postgres/common/sha2.h +32 -0
- data/ext/pg_query/include/postgres/common/string.h +44 -0
- data/ext/pg_query/include/postgres/common/unicode_east_asian_fw_table.h +125 -0
- data/ext/pg_query/include/{common/unicode_combining_table.h → postgres/common/unicode_nonspacing_table.h} +138 -8
- data/ext/pg_query/include/postgres/copyfuncs.funcs.c +5013 -0
- data/ext/pg_query/include/postgres/copyfuncs.switch.c +938 -0
- data/ext/pg_query/include/{datatype → postgres/datatype}/timestamp.h +50 -4
- data/ext/pg_query/include/postgres/equalfuncs.funcs.c +3097 -0
- data/ext/pg_query/include/postgres/equalfuncs.switch.c +785 -0
- data/ext/pg_query/include/{executor → postgres/executor}/execdesc.h +1 -1
- data/ext/pg_query/include/{executor → postgres/executor}/executor.h +98 -32
- data/ext/pg_query/include/{executor → postgres/executor}/functions.h +17 -3
- data/ext/pg_query/include/{executor → postgres/executor}/instrument.h +33 -16
- data/ext/pg_query/include/{executor → postgres/executor}/spi.h +42 -4
- data/ext/pg_query/include/{executor → postgres/executor}/tablefunc.h +1 -1
- data/ext/pg_query/include/{executor → postgres/executor}/tuptable.h +18 -11
- data/ext/pg_query/include/{fmgr.h → postgres/fmgr.h} +33 -8
- data/ext/pg_query/include/postgres/foreign/fdwapi.h +294 -0
- data/ext/pg_query/include/{funcapi.h → postgres/funcapi.h} +22 -10
- data/ext/pg_query/include/postgres/gram.h +1127 -0
- data/ext/pg_query/include/{parser → postgres}/gramparse.h +4 -4
- data/ext/pg_query/include/{jit → postgres/jit}/jit.h +12 -12
- data/ext/pg_query/include/postgres/kwlist_d.h +1119 -0
- data/ext/pg_query/include/postgres/lib/dshash.h +115 -0
- data/ext/pg_query/include/{lib → postgres/lib}/ilist.h +454 -22
- data/ext/pg_query/include/{lib → postgres/lib}/pairingheap.h +1 -1
- data/ext/pg_query/include/{lib → postgres/lib}/simplehash.h +158 -33
- data/ext/pg_query/include/postgres/lib/sort_template.h +432 -0
- data/ext/pg_query/include/{lib → postgres/lib}/stringinfo.h +3 -3
- data/ext/pg_query/include/{libpq → postgres/libpq}/auth.h +12 -4
- data/ext/pg_query/include/{libpq → postgres/libpq}/crypt.h +5 -4
- data/ext/pg_query/include/{libpq → postgres/libpq}/hba.h +54 -8
- data/ext/pg_query/include/{libpq → postgres/libpq}/libpq-be.h +45 -17
- data/ext/pg_query/include/{libpq → postgres/libpq}/libpq.h +31 -20
- data/ext/pg_query/include/{libpq → postgres/libpq}/pqcomm.h +26 -71
- data/ext/pg_query/include/{libpq → postgres/libpq}/pqformat.h +2 -2
- data/ext/pg_query/include/{libpq → postgres/libpq}/pqsignal.h +25 -13
- data/ext/pg_query/include/postgres/libpq/sasl.h +136 -0
- data/ext/pg_query/include/postgres/libpq/scram.h +37 -0
- data/ext/pg_query/include/{mb → postgres/mb}/pg_wchar.h +125 -25
- data/ext/pg_query/include/{mb → postgres/mb}/stringinfo_mb.h +1 -1
- data/ext/pg_query/include/{miscadmin.h → postgres/miscadmin.h} +96 -65
- data/ext/pg_query/include/{nodes → postgres/nodes}/bitmapset.h +11 -7
- data/ext/pg_query/include/{nodes → postgres/nodes}/execnodes.h +351 -103
- data/ext/pg_query/include/{nodes → postgres/nodes}/extensible.h +8 -4
- data/ext/pg_query/include/{nodes → postgres/nodes}/lockoptions.h +1 -1
- data/ext/pg_query/include/{nodes → postgres/nodes}/makefuncs.h +19 -6
- data/ext/pg_query/include/{nodes → postgres/nodes}/memnodes.h +11 -6
- data/ext/pg_query/include/postgres/nodes/miscnodes.h +56 -0
- data/ext/pg_query/include/{nodes → postgres/nodes}/nodeFuncs.h +89 -29
- data/ext/pg_query/include/{nodes → postgres/nodes}/nodes.h +100 -496
- data/ext/pg_query/include/postgres/nodes/nodetags.h +471 -0
- data/ext/pg_query/include/{nodes → postgres/nodes}/params.h +3 -3
- data/ext/pg_query/include/{nodes → postgres/nodes}/parsenodes.h +678 -207
- data/ext/pg_query/include/{nodes → postgres/nodes}/pathnodes.h +1282 -454
- data/ext/pg_query/include/{nodes → postgres/nodes}/pg_list.h +103 -73
- data/ext/pg_query/include/{nodes → postgres/nodes}/plannodes.h +474 -133
- data/ext/pg_query/include/{nodes → postgres/nodes}/primnodes.h +754 -254
- data/ext/pg_query/include/{nodes → postgres/nodes}/print.h +1 -1
- data/ext/pg_query/include/postgres/nodes/queryjumble.h +86 -0
- data/ext/pg_query/include/postgres/nodes/replnodes.h +111 -0
- data/ext/pg_query/include/postgres/nodes/supportnodes.h +346 -0
- data/ext/pg_query/include/{nodes → postgres/nodes}/tidbitmap.h +1 -1
- data/ext/pg_query/include/postgres/nodes/value.h +90 -0
- data/ext/pg_query/include/{optimizer → postgres/optimizer}/cost.h +14 -5
- data/ext/pg_query/include/{optimizer → postgres/optimizer}/geqo.h +9 -7
- data/ext/pg_query/include/{optimizer → postgres/optimizer}/geqo_gene.h +1 -1
- data/ext/pg_query/include/{optimizer → postgres/optimizer}/optimizer.h +31 -28
- data/ext/pg_query/include/{optimizer → postgres/optimizer}/paths.h +29 -12
- data/ext/pg_query/include/{optimizer → postgres/optimizer}/planmain.h +15 -17
- data/ext/pg_query/include/{parser → postgres/parser}/analyze.h +20 -5
- data/ext/pg_query/include/postgres/parser/kwlist.h +498 -0
- data/ext/pg_query/include/{parser → postgres/parser}/parse_agg.h +5 -8
- data/ext/pg_query/include/{parser → postgres/parser}/parse_coerce.h +6 -1
- data/ext/pg_query/include/{parser → postgres/parser}/parse_expr.h +2 -3
- data/ext/pg_query/include/{parser → postgres/parser}/parse_func.h +2 -1
- data/ext/pg_query/include/{parser → postgres/parser}/parse_node.h +41 -11
- data/ext/pg_query/include/{parser → postgres/parser}/parse_oper.h +3 -5
- data/ext/pg_query/include/{parser → postgres/parser}/parse_relation.h +11 -5
- data/ext/pg_query/include/{parser → postgres/parser}/parse_type.h +4 -3
- data/ext/pg_query/include/postgres/parser/parser.h +68 -0
- data/ext/pg_query/include/{parser → postgres/parser}/parsetree.h +1 -1
- data/ext/pg_query/include/{parser → postgres/parser}/scanner.h +2 -2
- data/ext/pg_query/include/{parser → postgres/parser}/scansup.h +2 -5
- data/ext/pg_query/include/{partitioning → postgres/partitioning}/partdefs.h +1 -1
- data/ext/pg_query/include/{pg_config.h → postgres/pg_config.h} +216 -228
- data/ext/pg_query/include/{pg_config_manual.h → postgres/pg_config_manual.h} +80 -58
- data/ext/pg_query/include/postgres/pg_config_os.h +8 -0
- data/ext/pg_query/include/{pg_getopt.h → postgres/pg_getopt.h} +6 -6
- data/ext/pg_query/include/{pg_trace.h → postgres/pg_trace.h} +1 -1
- data/ext/pg_query/include/postgres/pgstat.h +778 -0
- data/ext/pg_query/include/{pgtime.h → postgres/pgtime.h} +16 -6
- data/ext/pg_query/include/{pl_gram.h → postgres/pl_gram.h} +116 -116
- data/ext/pg_query/include/{pl_reserved_kwlist.h → postgres/pl_reserved_kwlist.h} +1 -1
- data/ext/pg_query/include/{pl_reserved_kwlist_d.h → postgres/pl_reserved_kwlist_d.h} +10 -10
- data/ext/pg_query/include/{pl_unreserved_kwlist.h → postgres/pl_unreserved_kwlist.h} +3 -3
- data/ext/pg_query/include/{pl_unreserved_kwlist_d.h → postgres/pl_unreserved_kwlist_d.h} +60 -60
- data/ext/pg_query/include/{plerrcodes.h → postgres/plerrcodes.h} +9 -1
- data/ext/pg_query/include/{plpgsql.h → postgres/plpgsql.h} +79 -86
- data/ext/pg_query/include/{port → postgres/port}/atomics/arch-arm.h +9 -3
- data/ext/pg_query/include/postgres/port/atomics/arch-hppa.h +17 -0
- data/ext/pg_query/include/{port → postgres/port}/atomics/arch-ppc.h +21 -21
- data/ext/pg_query/include/{port → postgres/port}/atomics/arch-x86.h +2 -2
- data/ext/pg_query/include/{port → postgres/port}/atomics/fallback.h +3 -3
- data/ext/pg_query/include/{port → postgres/port}/atomics/generic-gcc.h +3 -3
- data/ext/pg_query/include/postgres/port/atomics/generic-msvc.h +101 -0
- data/ext/pg_query/include/postgres/port/atomics/generic-sunpro.h +106 -0
- data/ext/pg_query/include/{port → postgres/port}/atomics/generic.h +1 -1
- data/ext/pg_query/include/{port → postgres/port}/atomics.h +2 -7
- data/ext/pg_query/include/{port → postgres/port}/pg_bitutils.h +129 -16
- data/ext/pg_query/include/{port → postgres/port}/pg_bswap.h +1 -1
- data/ext/pg_query/include/{port → postgres/port}/pg_crc32c.h +1 -1
- data/ext/pg_query/include/postgres/port/simd.h +375 -0
- data/ext/pg_query/include/postgres/port/win32/arpa/inet.h +3 -0
- data/ext/pg_query/include/postgres/port/win32/dlfcn.h +1 -0
- data/ext/pg_query/include/postgres/port/win32/grp.h +1 -0
- data/ext/pg_query/include/postgres/port/win32/netdb.h +7 -0
- data/ext/pg_query/include/postgres/port/win32/netinet/in.h +3 -0
- data/ext/pg_query/include/postgres/port/win32/netinet/tcp.h +7 -0
- data/ext/pg_query/include/postgres/port/win32/pwd.h +3 -0
- data/ext/pg_query/include/postgres/port/win32/sys/resource.h +20 -0
- data/ext/pg_query/include/postgres/port/win32/sys/select.h +3 -0
- data/ext/pg_query/include/postgres/port/win32/sys/socket.h +26 -0
- data/ext/pg_query/include/postgres/port/win32/sys/un.h +17 -0
- data/ext/pg_query/include/postgres/port/win32/sys/wait.h +3 -0
- data/ext/pg_query/include/postgres/port/win32.h +59 -0
- data/ext/pg_query/include/postgres/port/win32_msvc/dirent.h +34 -0
- data/ext/pg_query/include/postgres/port/win32_msvc/sys/file.h +1 -0
- data/ext/pg_query/include/postgres/port/win32_msvc/sys/param.h +1 -0
- data/ext/pg_query/include/postgres/port/win32_msvc/sys/time.h +1 -0
- data/ext/pg_query/include/postgres/port/win32_msvc/unistd.h +9 -0
- data/ext/pg_query/include/postgres/port/win32_msvc/utime.h +3 -0
- data/ext/pg_query/include/postgres/port/win32_port.h +594 -0
- data/ext/pg_query/include/{port.h → postgres/port.h} +107 -111
- data/ext/pg_query/include/postgres/portability/instr_time.h +197 -0
- data/ext/pg_query/include/postgres/postgres.h +579 -0
- data/ext/pg_query/include/{postgres_ext.h → postgres/postgres_ext.h} +0 -1
- data/ext/pg_query/include/{postmaster → postgres/postmaster}/autovacuum.h +17 -20
- data/ext/pg_query/include/{postmaster → postgres/postmaster}/bgworker.h +3 -2
- data/ext/pg_query/include/{postmaster → postgres/postmaster}/bgworker_internals.h +2 -2
- data/ext/pg_query/include/{postmaster → postgres/postmaster}/bgwriter.h +6 -6
- data/ext/pg_query/include/{postmaster → postgres/postmaster}/interrupt.h +1 -1
- data/ext/pg_query/include/{postmaster → postgres/postmaster}/pgarch.h +7 -10
- data/ext/pg_query/include/{postmaster → postgres/postmaster}/postmaster.h +21 -17
- data/ext/pg_query/include/postgres/postmaster/startup.h +41 -0
- data/ext/pg_query/include/{postmaster → postgres/postmaster}/syslogger.h +16 -11
- data/ext/pg_query/include/{postmaster → postgres/postmaster}/walwriter.h +5 -3
- data/ext/pg_query/include/{regex → postgres/regex}/regex.h +27 -22
- data/ext/pg_query/include/{replication → postgres/replication}/logicallauncher.h +8 -5
- data/ext/pg_query/include/postgres/replication/logicalproto.h +274 -0
- data/ext/pg_query/include/postgres/replication/logicalworker.h +32 -0
- data/ext/pg_query/include/{replication → postgres/replication}/origin.h +8 -8
- data/ext/pg_query/include/postgres/replication/reorderbuffer.h +753 -0
- data/ext/pg_query/include/{replication → postgres/replication}/slot.h +42 -12
- data/ext/pg_query/include/{replication → postgres/replication}/syncrep.h +6 -12
- data/ext/pg_query/include/{replication → postgres/replication}/walreceiver.h +158 -20
- data/ext/pg_query/include/{replication → postgres/replication}/walsender.h +20 -20
- data/ext/pg_query/include/{rewrite → postgres/rewrite}/prs2lock.h +1 -1
- data/ext/pg_query/include/{rewrite → postgres/rewrite}/rewriteHandler.h +1 -6
- data/ext/pg_query/include/{rewrite → postgres/rewrite}/rewriteManip.h +11 -2
- data/ext/pg_query/include/{rewrite → postgres/rewrite}/rewriteSupport.h +1 -1
- data/ext/pg_query/include/{storage → postgres/storage}/backendid.h +3 -3
- data/ext/pg_query/include/{storage → postgres/storage}/block.h +24 -37
- data/ext/pg_query/include/{storage → postgres/storage}/buf.h +1 -1
- data/ext/pg_query/include/{storage → postgres/storage}/bufmgr.h +196 -95
- data/ext/pg_query/include/{storage → postgres/storage}/bufpage.h +152 -101
- data/ext/pg_query/include/{storage → postgres/storage}/condition_variable.h +14 -3
- data/ext/pg_query/include/{storage → postgres/storage}/dsm.h +6 -6
- data/ext/pg_query/include/{storage → postgres/storage}/dsm_impl.h +6 -2
- data/ext/pg_query/include/{storage → postgres/storage}/fd.h +48 -14
- data/ext/pg_query/include/postgres/storage/fileset.h +40 -0
- data/ext/pg_query/include/{storage → postgres/storage}/ipc.h +5 -2
- data/ext/pg_query/include/{storage → postgres/storage}/item.h +1 -1
- data/ext/pg_query/include/{storage → postgres/storage}/itemid.h +1 -1
- data/ext/pg_query/include/{storage → postgres/storage}/itemptr.h +96 -57
- data/ext/pg_query/include/{storage → postgres/storage}/large_object.h +2 -2
- data/ext/pg_query/include/{storage → postgres/storage}/latch.h +17 -13
- data/ext/pg_query/include/{storage → postgres/storage}/lmgr.h +7 -1
- data/ext/pg_query/include/{storage → postgres/storage}/lock.h +37 -25
- data/ext/pg_query/include/{storage → postgres/storage}/lockdefs.h +4 -4
- data/ext/pg_query/include/{storage → postgres/storage}/lwlock.h +21 -33
- data/ext/pg_query/include/{storage → postgres/storage}/lwlocknames.h +0 -1
- data/ext/pg_query/include/{storage → postgres/storage}/off.h +1 -1
- data/ext/pg_query/include/{storage → postgres/storage}/pg_sema.h +1 -1
- data/ext/pg_query/include/{storage → postgres/storage}/pg_shmem.h +9 -7
- data/ext/pg_query/include/{storage → postgres/storage}/pmsignal.h +15 -4
- data/ext/pg_query/include/{storage → postgres/storage}/predicate.h +5 -5
- data/ext/pg_query/include/{storage → postgres/storage}/proc.h +200 -67
- data/ext/pg_query/include/postgres/storage/procarray.h +99 -0
- data/ext/pg_query/include/{storage → postgres/storage}/proclist_types.h +1 -1
- data/ext/pg_query/include/{storage → postgres/storage}/procsignal.h +5 -7
- data/ext/pg_query/include/postgres/storage/relfilelocator.h +99 -0
- data/ext/pg_query/include/{storage → postgres/storage}/s_lock.h +118 -298
- data/ext/pg_query/include/{storage → postgres/storage}/sharedfileset.h +3 -11
- data/ext/pg_query/include/{storage → postgres/storage}/shm_mq.h +5 -4
- data/ext/pg_query/include/{storage → postgres/storage}/shm_toc.h +1 -1
- data/ext/pg_query/include/{storage → postgres/storage}/shmem.h +1 -23
- data/ext/pg_query/include/{storage → postgres/storage}/sinval.h +5 -5
- data/ext/pg_query/include/{storage → postgres/storage}/sinvaladt.h +4 -2
- data/ext/pg_query/include/{storage → postgres/storage}/smgr.h +21 -17
- data/ext/pg_query/include/{storage → postgres/storage}/spin.h +2 -2
- data/ext/pg_query/include/{storage → postgres/storage}/standby.h +17 -9
- data/ext/pg_query/include/{storage → postgres/storage}/standbydefs.h +2 -2
- data/ext/pg_query/include/{storage → postgres/storage}/sync.h +9 -5
- data/ext/pg_query/include/{tcop → postgres/tcop}/cmdtag.h +7 -2
- data/ext/pg_query/include/{tcop → postgres/tcop}/cmdtaglist.h +3 -2
- data/ext/pg_query/include/{tcop → postgres/tcop}/deparse_utility.h +1 -1
- data/ext/pg_query/include/{tcop → postgres/tcop}/dest.h +1 -3
- data/ext/pg_query/include/{tcop → postgres/tcop}/fastpath.h +1 -2
- data/ext/pg_query/include/{tcop → postgres/tcop}/pquery.h +7 -1
- data/ext/pg_query/include/{tcop → postgres/tcop}/tcopprot.h +19 -14
- data/ext/pg_query/include/{tcop → postgres/tcop}/utility.h +7 -3
- data/ext/pg_query/include/{tsearch → postgres/tsearch}/ts_cache.h +3 -5
- data/ext/pg_query/include/{utils → postgres/utils}/acl.h +37 -71
- data/ext/pg_query/include/{utils → postgres/utils}/aclchk_internal.h +1 -1
- data/ext/pg_query/include/{utils → postgres/utils}/array.h +26 -2
- data/ext/pg_query/include/postgres/utils/backend_progress.h +45 -0
- data/ext/pg_query/include/postgres/utils/backend_status.h +342 -0
- data/ext/pg_query/include/{utils → postgres/utils}/builtins.h +20 -11
- data/ext/pg_query/include/{utils → postgres/utils}/bytea.h +3 -2
- data/ext/pg_query/include/{utils → postgres/utils}/catcache.h +1 -1
- data/ext/pg_query/include/{utils → postgres/utils}/date.h +37 -9
- data/ext/pg_query/include/{utils → postgres/utils}/datetime.h +48 -27
- data/ext/pg_query/include/{utils → postgres/utils}/datum.h +9 -1
- data/ext/pg_query/include/{utils → postgres/utils}/dsa.h +5 -1
- data/ext/pg_query/include/{utils → postgres/utils}/elog.h +154 -48
- data/ext/pg_query/include/{utils → postgres/utils}/errcodes.h +2 -0
- data/ext/pg_query/include/{utils → postgres/utils}/expandeddatum.h +14 -3
- data/ext/pg_query/include/{utils → postgres/utils}/expandedrecord.h +14 -4
- data/ext/pg_query/include/{utils → postgres/utils}/float.h +13 -12
- data/ext/pg_query/include/{utils → postgres/utils}/fmgroids.h +1353 -696
- data/ext/pg_query/include/{utils → postgres/utils}/fmgrprotos.h +243 -18
- data/ext/pg_query/include/{utils → postgres/utils}/fmgrtab.h +6 -5
- data/ext/pg_query/include/{utils → postgres/utils}/guc.h +120 -121
- data/ext/pg_query/include/postgres/utils/guc_hooks.h +163 -0
- data/ext/pg_query/include/{utils → postgres/utils}/guc_tables.h +71 -21
- data/ext/pg_query/include/{utils → postgres/utils}/hsearch.h +15 -11
- data/ext/pg_query/include/{utils → postgres/utils}/inval.h +7 -3
- data/ext/pg_query/include/postgres/utils/logtape.h +77 -0
- data/ext/pg_query/include/{utils → postgres/utils}/lsyscache.h +16 -1
- data/ext/pg_query/include/{utils → postgres/utils}/memdebug.h +1 -1
- data/ext/pg_query/include/{utils → postgres/utils}/memutils.h +14 -53
- data/ext/pg_query/include/postgres/utils/memutils_internal.h +136 -0
- data/ext/pg_query/include/postgres/utils/memutils_memorychunk.h +237 -0
- data/ext/pg_query/include/{utils → postgres/utils}/numeric.h +38 -9
- data/ext/pg_query/include/{utils → postgres/utils}/palloc.h +33 -4
- data/ext/pg_query/include/{utils → postgres/utils}/partcache.h +3 -2
- data/ext/pg_query/include/{utils → postgres/utils}/pg_locale.h +37 -21
- data/ext/pg_query/include/postgres/utils/pgstat_internal.h +814 -0
- data/ext/pg_query/include/{utils → postgres/utils}/plancache.h +6 -5
- data/ext/pg_query/include/{utils → postgres/utils}/portal.h +12 -1
- data/ext/pg_query/include/{utils → postgres/utils}/probes.h +59 -59
- data/ext/pg_query/include/postgres/utils/ps_status.h +47 -0
- data/ext/pg_query/include/{utils → postgres/utils}/queryenvironment.h +1 -1
- data/ext/pg_query/include/postgres/utils/regproc.h +39 -0
- data/ext/pg_query/include/{utils → postgres/utils}/rel.h +129 -61
- data/ext/pg_query/include/{utils → postgres/utils}/relcache.h +21 -14
- data/ext/pg_query/include/{utils → postgres/utils}/reltrigger.h +1 -1
- data/ext/pg_query/include/{utils → postgres/utils}/resowner.h +1 -1
- data/ext/pg_query/include/{utils → postgres/utils}/ruleutils.h +9 -1
- data/ext/pg_query/include/{utils → postgres/utils}/sharedtuplestore.h +1 -1
- data/ext/pg_query/include/{utils → postgres/utils}/snapmgr.h +38 -15
- data/ext/pg_query/include/{utils → postgres/utils}/snapshot.h +14 -1
- data/ext/pg_query/include/{utils → postgres/utils}/sortsupport.h +117 -2
- data/ext/pg_query/include/{utils → postgres/utils}/syscache.h +9 -1
- data/ext/pg_query/include/{utils → postgres/utils}/timeout.h +11 -4
- data/ext/pg_query/include/{utils → postgres/utils}/timestamp.h +46 -15
- data/ext/pg_query/include/{utils → postgres/utils}/tuplesort.h +209 -41
- data/ext/pg_query/include/{utils → postgres/utils}/tuplestore.h +2 -2
- data/ext/pg_query/include/{utils → postgres/utils}/typcache.h +24 -17
- data/ext/pg_query/include/{utils → postgres/utils}/varlena.h +17 -3
- data/ext/pg_query/include/postgres/utils/wait_event.h +294 -0
- data/ext/pg_query/include/{utils → postgres/utils}/xml.h +18 -8
- data/ext/pg_query/include/{postgres.h → postgres/varatt.h} +65 -471
- data/ext/pg_query/include/protobuf/pg_query.pb-c.h +7494 -6382
- data/ext/pg_query/include/protobuf/pg_query.pb.h +116922 -84792
- data/ext/pg_query/include/protobuf-c/protobuf-c.h +7 -3
- data/ext/pg_query/include/protobuf-c.h +7 -3
- data/ext/pg_query/pg_query.c +10 -1
- data/ext/pg_query/pg_query.pb-c.c +21026 -17002
- data/ext/pg_query/pg_query_deparse.c +1 -9896
- data/ext/pg_query/pg_query_fingerprint.c +162 -50
- data/ext/pg_query/pg_query_fingerprint.h +3 -1
- data/ext/pg_query/pg_query_internal.h +1 -1
- data/ext/pg_query/pg_query_json_plpgsql.c +56 -12
- data/ext/pg_query/pg_query_normalize.c +259 -64
- data/ext/pg_query/pg_query_outfuncs.h +1 -0
- data/ext/pg_query/pg_query_outfuncs_json.c +71 -16
- data/ext/pg_query/pg_query_outfuncs_protobuf.c +73 -12
- data/ext/pg_query/pg_query_parse.c +47 -5
- data/ext/pg_query/pg_query_parse_plpgsql.c +86 -21
- data/ext/pg_query/pg_query_readfuncs_protobuf.c +43 -8
- data/ext/pg_query/pg_query_ruby.c +6 -1
- data/ext/pg_query/pg_query_ruby_freebsd.sym +2 -0
- data/ext/pg_query/pg_query_scan.c +3 -2
- data/ext/pg_query/pg_query_split.c +6 -5
- data/ext/pg_query/postgres_deparse.c +11067 -0
- data/ext/pg_query/postgres_deparse.h +9 -0
- data/ext/pg_query/protobuf-c.c +34 -27
- data/ext/pg_query/src_backend_catalog_namespace.c +27 -10
- data/ext/pg_query/src_backend_catalog_pg_proc.c +4 -1
- data/ext/pg_query/src_backend_commands_define.c +11 -1
- data/ext/pg_query/src_backend_nodes_bitmapset.c +13 -70
- data/ext/pg_query/src_backend_nodes_copyfuncs.c +103 -5894
- data/ext/pg_query/src_backend_nodes_equalfuncs.c +102 -3830
- data/ext/pg_query/src_backend_nodes_extensible.c +6 -29
- data/ext/pg_query/src_backend_nodes_list.c +99 -12
- data/ext/pg_query/src_backend_nodes_makefuncs.c +99 -4
- data/ext/pg_query/src_backend_nodes_nodeFuncs.c +325 -131
- data/ext/pg_query/src_backend_nodes_nodes.c +38 -0
- data/ext/pg_query/src_backend_nodes_value.c +28 -19
- data/ext/pg_query/src_backend_parser_gram.c +36104 -32074
- data/ext/pg_query/src_backend_parser_parser.c +53 -8
- data/ext/pg_query/src_backend_parser_scan.c +4893 -3701
- data/ext/pg_query/src_backend_parser_scansup.c +4 -28
- data/ext/pg_query/src_backend_storage_ipc_ipc.c +13 -4
- data/ext/pg_query/src_backend_tcop_postgres.c +133 -105
- data/ext/pg_query/src_backend_utils_activity_pgstat_database.c +140 -0
- data/ext/pg_query/src_backend_utils_adt_datum.c +17 -7
- data/ext/pg_query/src_backend_utils_adt_expandeddatum.c +1 -1
- data/ext/pg_query/src_backend_utils_adt_format_type.c +6 -2
- data/ext/pg_query/src_backend_utils_adt_numutils.c +489 -0
- data/ext/pg_query/src_backend_utils_adt_ruleutils.c +187 -19
- data/ext/pg_query/src_backend_utils_error_assert.c +17 -18
- data/ext/pg_query/src_backend_utils_error_elog.c +513 -318
- data/ext/pg_query/src_backend_utils_fmgr_fmgr.c +44 -17
- data/ext/pg_query/src_backend_utils_init_globals.c +9 -6
- data/ext/pg_query/src_backend_utils_mb_mbutils.c +74 -131
- data/ext/pg_query/src_backend_utils_misc_guc_tables.c +492 -0
- data/ext/pg_query/src_backend_utils_mmgr_alignedalloc.c +163 -0
- data/ext/pg_query/src_backend_utils_mmgr_aset.c +453 -314
- data/ext/pg_query/src_backend_utils_mmgr_generation.c +1039 -0
- data/ext/pg_query/src_backend_utils_mmgr_mcxt.c +549 -76
- data/ext/pg_query/src_backend_utils_mmgr_slab.c +1021 -0
- data/ext/pg_query/src_common_encnames.c +4 -1
- data/ext/pg_query/src_common_hashfn.c +420 -0
- data/ext/pg_query/src_common_keywords.c +15 -2
- data/ext/pg_query/src_common_kwlist_d.h +545 -498
- data/ext/pg_query/src_common_kwlookup.c +1 -1
- data/ext/pg_query/src_common_psprintf.c +1 -1
- data/ext/pg_query/src_common_stringinfo.c +4 -4
- data/ext/pg_query/src_common_wchar.c +717 -113
- data/ext/pg_query/src_pl_plpgsql_src_pl_comp.c +49 -22
- data/ext/pg_query/src_pl_plpgsql_src_pl_funcs.c +3 -18
- data/ext/pg_query/src_pl_plpgsql_src_pl_gram.c +1136 -1195
- data/ext/pg_query/src_pl_plpgsql_src_pl_handler.c +1 -1
- data/ext/pg_query/src_pl_plpgsql_src_pl_reserved_kwlist_d.h +10 -10
- data/ext/pg_query/src_pl_plpgsql_src_pl_scanner.c +2 -2
- data/ext/pg_query/src_pl_plpgsql_src_pl_unreserved_kwlist_d.h +60 -60
- data/ext/pg_query/src_port_pg_bitutils.c +103 -40
- data/ext/pg_query/src_port_pgstrcasecmp.c +29 -1
- data/ext/pg_query/src_port_qsort.c +12 -224
- data/ext/pg_query/src_port_snprintf.c +51 -29
- data/ext/pg_query/src_port_strerror.c +9 -19
- data/ext/pg_query/src_port_strlcpy.c +79 -0
- data/lib/pg_query/deparse.rb +7 -1
- data/lib/pg_query/filter_columns.rb +7 -5
- data/lib/pg_query/fingerprint.rb +21 -9
- data/lib/pg_query/node.rb +18 -13
- data/lib/pg_query/param_refs.rb +1 -1
- data/lib/pg_query/parse.rb +141 -50
- data/lib/pg_query/pg_query_pb.rb +175 -3031
- data/lib/pg_query/treewalker.rb +26 -2
- data/lib/pg_query/truncate.rb +54 -8
- data/lib/pg_query/version.rb +1 -1
- data/lib/pg_query.rb +0 -1
- metadata +443 -380
- data/ext/pg_query/guc-file.c +0 -0
- data/ext/pg_query/include/access/rmgr.h +0 -35
- data/ext/pg_query/include/access/xloginsert.h +0 -64
- data/ext/pg_query/include/bootstrap/bootstrap.h +0 -62
- data/ext/pg_query/include/catalog/genbki.h +0 -64
- data/ext/pg_query/include/catalog/indexing.h +0 -366
- data/ext/pg_query/include/commands/variable.h +0 -38
- data/ext/pg_query/include/common/ip.h +0 -37
- data/ext/pg_query/include/common/string.h +0 -19
- data/ext/pg_query/include/getaddrinfo.h +0 -162
- data/ext/pg_query/include/kwlist_d.h +0 -1072
- data/ext/pg_query/include/nodes/value.h +0 -61
- data/ext/pg_query/include/parser/gram.h +0 -1067
- data/ext/pg_query/include/parser/kwlist.h +0 -477
- data/ext/pg_query/include/parser/parse_clause.h +0 -54
- data/ext/pg_query/include/parser/parse_collate.h +0 -27
- data/ext/pg_query/include/parser/parse_target.h +0 -46
- data/ext/pg_query/include/parser/parser.h +0 -41
- data/ext/pg_query/include/pg_config_os.h +0 -8
- data/ext/pg_query/include/pgstat.h +0 -1487
- data/ext/pg_query/include/portability/instr_time.h +0 -256
- data/ext/pg_query/include/postmaster/fork_process.h +0 -17
- data/ext/pg_query/include/replication/logicalproto.h +0 -110
- data/ext/pg_query/include/replication/logicalworker.h +0 -19
- data/ext/pg_query/include/replication/reorderbuffer.h +0 -467
- data/ext/pg_query/include/storage/relfilenode.h +0 -99
- data/ext/pg_query/include/utils/dynahash.h +0 -19
- data/ext/pg_query/include/utils/pg_lsn.h +0 -29
- data/ext/pg_query/include/utils/pidfile.h +0 -56
- data/ext/pg_query/include/utils/ps_status.h +0 -25
- data/ext/pg_query/include/utils/regproc.h +0 -28
- data/ext/pg_query/include/utils/rls.h +0 -50
- data/ext/pg_query/include/utils/tzparser.h +0 -39
- data/ext/pg_query/src_backend_libpq_pqcomm.c +0 -651
- data/ext/pg_query/src_backend_parser_parse_expr.c +0 -313
- data/ext/pg_query/src_backend_postmaster_postmaster.c +0 -2230
- data/ext/pg_query/src_backend_storage_lmgr_s_lock.c +0 -370
- data/ext/pg_query/src_backend_utils_hash_dynahash.c +0 -1086
- data/ext/pg_query/src_backend_utils_misc_guc.c +0 -1831
- data/ext/pg_query/src_common_string.c +0 -86
- data/ext/pg_query/src_port_erand48.c +0 -127
- data/ext/pg_query/src_port_pgsleep.c +0 -69
- data/ext/pg_query/src_port_random.c +0 -31
- data/ext/pg_query/src_port_strnlen.c +0 -39
- data/lib/pg_query/json_field_names.rb +0 -1402
- /data/ext/pg_query/include/{pg_config_ext.h → postgres/pg_config_ext.h} +0 -0
|
@@ -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
|
+
|