pg_query 5.0.0 → 5.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (447) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +9 -0
  3. data/Rakefile +3 -4
  4. data/ext/pg_query/extconf.rb +14 -4
  5. data/ext/pg_query/include/pg_query_fingerprint_defs.c +1 -1
  6. data/ext/pg_query/include/pg_query_outfuncs_defs.c +1 -1
  7. data/ext/pg_query/include/pg_query_readfuncs_defs.c +1 -1
  8. data/ext/pg_query/include/{miscadmin.h → postgres/miscadmin.h} +1 -1
  9. data/ext/pg_query/include/{nodes → postgres/nodes}/nodes.h +1 -1
  10. data/ext/pg_query/include/{parser → postgres/parser}/parser.h +3 -3
  11. data/ext/pg_query/include/{pg_config.h → postgres/pg_config.h} +136 -2
  12. data/ext/pg_query/include/postgres/pg_config_os.h +8 -0
  13. data/ext/pg_query/include/{pgstat.h → postgres/pgstat.h} +1 -1
  14. data/ext/pg_query/include/{pl_gram.h → postgres/pl_gram.h} +2 -2
  15. data/ext/pg_query/include/{plpgsql.h → postgres/plpgsql.h} +11 -11
  16. data/ext/pg_query/include/postgres/port/atomics/arch-hppa.h +17 -0
  17. data/ext/pg_query/include/postgres/port/atomics/generic-msvc.h +101 -0
  18. data/ext/pg_query/include/postgres/port/atomics/generic-sunpro.h +106 -0
  19. data/ext/pg_query/include/postgres/port/win32/arpa/inet.h +3 -0
  20. data/ext/pg_query/include/postgres/port/win32/dlfcn.h +1 -0
  21. data/ext/pg_query/include/postgres/port/win32/grp.h +1 -0
  22. data/ext/pg_query/include/postgres/port/win32/netdb.h +7 -0
  23. data/ext/pg_query/include/postgres/port/win32/netinet/in.h +3 -0
  24. data/ext/pg_query/include/postgres/port/win32/netinet/tcp.h +7 -0
  25. data/ext/pg_query/include/postgres/port/win32/pwd.h +3 -0
  26. data/ext/pg_query/include/postgres/port/win32/sys/resource.h +20 -0
  27. data/ext/pg_query/include/postgres/port/win32/sys/select.h +3 -0
  28. data/ext/pg_query/include/postgres/port/win32/sys/socket.h +26 -0
  29. data/ext/pg_query/include/postgres/port/win32/sys/un.h +17 -0
  30. data/ext/pg_query/include/postgres/port/win32/sys/wait.h +3 -0
  31. data/ext/pg_query/include/postgres/port/win32.h +59 -0
  32. data/ext/pg_query/include/postgres/port/win32_msvc/dirent.h +34 -0
  33. data/ext/pg_query/include/postgres/port/win32_msvc/sys/file.h +1 -0
  34. data/ext/pg_query/include/postgres/port/win32_msvc/sys/param.h +1 -0
  35. data/ext/pg_query/include/postgres/port/win32_msvc/sys/time.h +1 -0
  36. data/ext/pg_query/include/postgres/port/win32_msvc/unistd.h +9 -0
  37. data/ext/pg_query/include/postgres/port/win32_msvc/utime.h +3 -0
  38. data/ext/pg_query/include/postgres/port/win32_port.h +594 -0
  39. data/ext/pg_query/include/{postmaster → postgres/postmaster}/postmaster.h +1 -1
  40. data/ext/pg_query/include/{storage → postgres/storage}/ipc.h +1 -1
  41. data/ext/pg_query/include/{tcop → postgres/tcop}/tcopprot.h +2 -2
  42. data/ext/pg_query/include/{utils → postgres/utils}/builtins.h +1 -1
  43. data/ext/pg_query/include/{utils → postgres/utils}/elog.h +3 -3
  44. data/ext/pg_query/include/{utils → postgres/utils}/guc.h +4 -4
  45. data/ext/pg_query/include/{utils → postgres/utils}/memutils.h +2 -2
  46. data/ext/pg_query/include/{utils → postgres/utils}/palloc.h +1 -1
  47. data/ext/pg_query/pg_query.c +9 -0
  48. data/ext/pg_query/pg_query_fingerprint.c +4 -5
  49. data/ext/pg_query/pg_query_outfuncs_json.c +6 -0
  50. data/ext/pg_query/pg_query_outfuncs_protobuf.c +1 -0
  51. data/ext/pg_query/pg_query_parse.c +1 -1
  52. data/ext/pg_query/pg_query_parse_plpgsql.c +6 -4
  53. data/ext/pg_query/pg_query_readfuncs_protobuf.c +1 -0
  54. data/ext/pg_query/pg_query_ruby.c +5 -0
  55. data/ext/pg_query/pg_query_split.c +1 -1
  56. data/ext/pg_query/src_backend_nodes_nodes.c +38 -0
  57. data/ext/pg_query/src_backend_utils_error_elog.c +17 -152
  58. data/ext/pg_query/src_backend_utils_init_globals.c +1 -1
  59. data/ext/pg_query/src_backend_utils_mb_mbutils.c +8 -63
  60. data/ext/pg_query/src_backend_utils_misc_guc_tables.c +0 -2
  61. data/ext/pg_query/src_port_pg_bitutils.c +78 -4
  62. data/ext/pg_query/src_port_snprintf.c +3 -3
  63. data/ext/pg_query/src_port_strlcpy.c +79 -0
  64. data/lib/pg_query/fingerprint.rb +2 -3
  65. data/lib/pg_query/node.rb +16 -11
  66. data/lib/pg_query/parse.rb +1 -1
  67. data/lib/pg_query/pg_query_pb.rb +1 -1
  68. data/lib/pg_query/treewalker.rb +16 -3
  69. data/lib/pg_query/version.rb +1 -1
  70. metadata +424 -394
  71. data/ext/pg_query/guc-file.c +0 -0
  72. data/ext/pg_query/include/common/ip.h +0 -33
  73. data/ext/pg_query/include/pg_config_os.h +0 -8
  74. data/ext/pg_query/include/postmaster/auxprocess.h +0 -20
  75. data/ext/pg_query/include/postmaster/fork_process.h +0 -17
  76. data/ext/pg_query/include/src_backend_nodes_copyfuncs.funcs.c +0 -5321
  77. data/ext/pg_query/include/src_backend_nodes_equalfuncs.funcs.c +0 -3354
  78. data/ext/pg_query/include/utils/pidfile.h +0 -56
  79. data/ext/pg_query/src_backend_postmaster_postmaster.c +0 -2220
  80. data/ext/pg_query/src_port_strnlen.c +0 -39
  81. /data/ext/pg_query/include/{access → postgres/access}/amapi.h +0 -0
  82. /data/ext/pg_query/include/{access → postgres/access}/attmap.h +0 -0
  83. /data/ext/pg_query/include/{access → postgres/access}/attnum.h +0 -0
  84. /data/ext/pg_query/include/{access → postgres/access}/clog.h +0 -0
  85. /data/ext/pg_query/include/{access → postgres/access}/commit_ts.h +0 -0
  86. /data/ext/pg_query/include/{access → postgres/access}/detoast.h +0 -0
  87. /data/ext/pg_query/include/{access → postgres/access}/genam.h +0 -0
  88. /data/ext/pg_query/include/{access → postgres/access}/gin.h +0 -0
  89. /data/ext/pg_query/include/{access → postgres/access}/htup.h +0 -0
  90. /data/ext/pg_query/include/{access → postgres/access}/htup_details.h +0 -0
  91. /data/ext/pg_query/include/{access → postgres/access}/itup.h +0 -0
  92. /data/ext/pg_query/include/{access → postgres/access}/parallel.h +0 -0
  93. /data/ext/pg_query/include/{access → postgres/access}/printtup.h +0 -0
  94. /data/ext/pg_query/include/{access → postgres/access}/relation.h +0 -0
  95. /data/ext/pg_query/include/{access → postgres/access}/relscan.h +0 -0
  96. /data/ext/pg_query/include/{access → postgres/access}/rmgr.h +0 -0
  97. /data/ext/pg_query/include/{access → postgres/access}/rmgrlist.h +0 -0
  98. /data/ext/pg_query/include/{access → postgres/access}/sdir.h +0 -0
  99. /data/ext/pg_query/include/{access → postgres/access}/skey.h +0 -0
  100. /data/ext/pg_query/include/{access → postgres/access}/stratnum.h +0 -0
  101. /data/ext/pg_query/include/{access → postgres/access}/sysattr.h +0 -0
  102. /data/ext/pg_query/include/{access → postgres/access}/table.h +0 -0
  103. /data/ext/pg_query/include/{access → postgres/access}/tableam.h +0 -0
  104. /data/ext/pg_query/include/{access → postgres/access}/toast_compression.h +0 -0
  105. /data/ext/pg_query/include/{access → postgres/access}/transam.h +0 -0
  106. /data/ext/pg_query/include/{access → postgres/access}/tsmapi.h +0 -0
  107. /data/ext/pg_query/include/{access → postgres/access}/tupconvert.h +0 -0
  108. /data/ext/pg_query/include/{access → postgres/access}/tupdesc.h +0 -0
  109. /data/ext/pg_query/include/{access → postgres/access}/tupmacs.h +0 -0
  110. /data/ext/pg_query/include/{access → postgres/access}/twophase.h +0 -0
  111. /data/ext/pg_query/include/{access → postgres/access}/xact.h +0 -0
  112. /data/ext/pg_query/include/{access → postgres/access}/xlog.h +0 -0
  113. /data/ext/pg_query/include/{access → postgres/access}/xlog_internal.h +0 -0
  114. /data/ext/pg_query/include/{access → postgres/access}/xlogbackup.h +0 -0
  115. /data/ext/pg_query/include/{access → postgres/access}/xlogdefs.h +0 -0
  116. /data/ext/pg_query/include/{access → postgres/access}/xlogprefetcher.h +0 -0
  117. /data/ext/pg_query/include/{access → postgres/access}/xlogreader.h +0 -0
  118. /data/ext/pg_query/include/{access → postgres/access}/xlogrecord.h +0 -0
  119. /data/ext/pg_query/include/{access → postgres/access}/xlogrecovery.h +0 -0
  120. /data/ext/pg_query/include/{archive → postgres/archive}/archive_module.h +0 -0
  121. /data/ext/pg_query/include/{c.h → postgres/c.h} +0 -0
  122. /data/ext/pg_query/include/{catalog → postgres/catalog}/catalog.h +0 -0
  123. /data/ext/pg_query/include/{catalog → postgres/catalog}/catversion.h +0 -0
  124. /data/ext/pg_query/include/{catalog → postgres/catalog}/dependency.h +0 -0
  125. /data/ext/pg_query/include/{catalog → postgres/catalog}/genbki.h +0 -0
  126. /data/ext/pg_query/include/{catalog → postgres/catalog}/index.h +0 -0
  127. /data/ext/pg_query/include/{catalog → postgres/catalog}/indexing.h +0 -0
  128. /data/ext/pg_query/include/{catalog → postgres/catalog}/namespace.h +0 -0
  129. /data/ext/pg_query/include/{catalog → postgres/catalog}/objectaccess.h +0 -0
  130. /data/ext/pg_query/include/{catalog → postgres/catalog}/objectaddress.h +0 -0
  131. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_aggregate.h +0 -0
  132. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_aggregate_d.h +0 -0
  133. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_am.h +0 -0
  134. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_am_d.h +0 -0
  135. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_attribute.h +0 -0
  136. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_attribute_d.h +0 -0
  137. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_authid.h +0 -0
  138. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_authid_d.h +0 -0
  139. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_class.h +0 -0
  140. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_class_d.h +0 -0
  141. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_collation.h +0 -0
  142. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_collation_d.h +0 -0
  143. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_constraint.h +0 -0
  144. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_constraint_d.h +0 -0
  145. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_control.h +0 -0
  146. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_conversion.h +0 -0
  147. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_conversion_d.h +0 -0
  148. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_database.h +0 -0
  149. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_database_d.h +0 -0
  150. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_depend.h +0 -0
  151. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_depend_d.h +0 -0
  152. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_event_trigger.h +0 -0
  153. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_event_trigger_d.h +0 -0
  154. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_index.h +0 -0
  155. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_index_d.h +0 -0
  156. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_language.h +0 -0
  157. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_language_d.h +0 -0
  158. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_namespace.h +0 -0
  159. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_namespace_d.h +0 -0
  160. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_opclass.h +0 -0
  161. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_opclass_d.h +0 -0
  162. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_operator.h +0 -0
  163. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_operator_d.h +0 -0
  164. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_opfamily.h +0 -0
  165. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_opfamily_d.h +0 -0
  166. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_partitioned_table.h +0 -0
  167. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_partitioned_table_d.h +0 -0
  168. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_proc.h +0 -0
  169. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_proc_d.h +0 -0
  170. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_publication.h +0 -0
  171. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_publication_d.h +0 -0
  172. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_replication_origin.h +0 -0
  173. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_replication_origin_d.h +0 -0
  174. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_statistic.h +0 -0
  175. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_statistic_d.h +0 -0
  176. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_statistic_ext.h +0 -0
  177. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_statistic_ext_d.h +0 -0
  178. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_transform.h +0 -0
  179. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_transform_d.h +0 -0
  180. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_trigger.h +0 -0
  181. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_trigger_d.h +0 -0
  182. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_ts_config.h +0 -0
  183. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_ts_config_d.h +0 -0
  184. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_ts_dict.h +0 -0
  185. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_ts_dict_d.h +0 -0
  186. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_ts_parser.h +0 -0
  187. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_ts_parser_d.h +0 -0
  188. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_ts_template.h +0 -0
  189. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_ts_template_d.h +0 -0
  190. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_type.h +0 -0
  191. /data/ext/pg_query/include/{catalog → postgres/catalog}/pg_type_d.h +0 -0
  192. /data/ext/pg_query/include/{catalog → postgres/catalog}/storage.h +0 -0
  193. /data/ext/pg_query/include/{commands → postgres/commands}/async.h +0 -0
  194. /data/ext/pg_query/include/{commands → postgres/commands}/dbcommands.h +0 -0
  195. /data/ext/pg_query/include/{commands → postgres/commands}/defrem.h +0 -0
  196. /data/ext/pg_query/include/{commands → postgres/commands}/event_trigger.h +0 -0
  197. /data/ext/pg_query/include/{commands → postgres/commands}/explain.h +0 -0
  198. /data/ext/pg_query/include/{commands → postgres/commands}/prepare.h +0 -0
  199. /data/ext/pg_query/include/{commands → postgres/commands}/tablespace.h +0 -0
  200. /data/ext/pg_query/include/{commands → postgres/commands}/trigger.h +0 -0
  201. /data/ext/pg_query/include/{commands → postgres/commands}/user.h +0 -0
  202. /data/ext/pg_query/include/{commands → postgres/commands}/vacuum.h +0 -0
  203. /data/ext/pg_query/include/{common → postgres/common}/cryptohash.h +0 -0
  204. /data/ext/pg_query/include/{common → postgres/common}/file_perm.h +0 -0
  205. /data/ext/pg_query/include/{common → postgres/common}/hashfn.h +0 -0
  206. /data/ext/pg_query/include/{common → postgres/common}/int.h +0 -0
  207. /data/ext/pg_query/include/{common → postgres/common}/keywords.h +0 -0
  208. /data/ext/pg_query/include/{common → postgres/common}/kwlookup.h +0 -0
  209. /data/ext/pg_query/include/{common → postgres/common}/pg_prng.h +0 -0
  210. /data/ext/pg_query/include/{common → postgres/common}/relpath.h +0 -0
  211. /data/ext/pg_query/include/{common → postgres/common}/scram-common.h +0 -0
  212. /data/ext/pg_query/include/{common → postgres/common}/sha2.h +0 -0
  213. /data/ext/pg_query/include/{common → postgres/common}/string.h +0 -0
  214. /data/ext/pg_query/include/{common → postgres/common}/unicode_east_asian_fw_table.h +0 -0
  215. /data/ext/pg_query/include/{common → postgres/common}/unicode_nonspacing_table.h +0 -0
  216. /data/ext/pg_query/include/{copyfuncs.funcs.c → postgres/copyfuncs.funcs.c} +0 -0
  217. /data/ext/pg_query/include/{copyfuncs.switch.c → postgres/copyfuncs.switch.c} +0 -0
  218. /data/ext/pg_query/include/{datatype → postgres/datatype}/timestamp.h +0 -0
  219. /data/ext/pg_query/include/{equalfuncs.funcs.c → postgres/equalfuncs.funcs.c} +0 -0
  220. /data/ext/pg_query/include/{equalfuncs.switch.c → postgres/equalfuncs.switch.c} +0 -0
  221. /data/ext/pg_query/include/{executor → postgres/executor}/execdesc.h +0 -0
  222. /data/ext/pg_query/include/{executor → postgres/executor}/executor.h +0 -0
  223. /data/ext/pg_query/include/{executor → postgres/executor}/functions.h +0 -0
  224. /data/ext/pg_query/include/{executor → postgres/executor}/instrument.h +0 -0
  225. /data/ext/pg_query/include/{executor → postgres/executor}/spi.h +0 -0
  226. /data/ext/pg_query/include/{executor → postgres/executor}/tablefunc.h +0 -0
  227. /data/ext/pg_query/include/{executor → postgres/executor}/tuptable.h +0 -0
  228. /data/ext/pg_query/include/{fmgr.h → postgres/fmgr.h} +0 -0
  229. /data/ext/pg_query/include/{foreign → postgres/foreign}/fdwapi.h +0 -0
  230. /data/ext/pg_query/include/{funcapi.h → postgres/funcapi.h} +0 -0
  231. /data/ext/pg_query/include/{gram.h → postgres/gram.h} +0 -0
  232. /data/ext/pg_query/include/{gramparse.h → postgres/gramparse.h} +0 -0
  233. /data/ext/pg_query/include/{jit → postgres/jit}/jit.h +0 -0
  234. /data/ext/pg_query/include/{kwlist_d.h → postgres/kwlist_d.h} +0 -0
  235. /data/ext/pg_query/include/{lib → postgres/lib}/dshash.h +0 -0
  236. /data/ext/pg_query/include/{lib → postgres/lib}/ilist.h +0 -0
  237. /data/ext/pg_query/include/{lib → postgres/lib}/pairingheap.h +0 -0
  238. /data/ext/pg_query/include/{lib → postgres/lib}/simplehash.h +0 -0
  239. /data/ext/pg_query/include/{lib → postgres/lib}/sort_template.h +0 -0
  240. /data/ext/pg_query/include/{lib → postgres/lib}/stringinfo.h +0 -0
  241. /data/ext/pg_query/include/{libpq → postgres/libpq}/auth.h +0 -0
  242. /data/ext/pg_query/include/{libpq → postgres/libpq}/crypt.h +0 -0
  243. /data/ext/pg_query/include/{libpq → postgres/libpq}/hba.h +0 -0
  244. /data/ext/pg_query/include/{libpq → postgres/libpq}/libpq-be.h +0 -0
  245. /data/ext/pg_query/include/{libpq → postgres/libpq}/libpq.h +0 -0
  246. /data/ext/pg_query/include/{libpq → postgres/libpq}/pqcomm.h +0 -0
  247. /data/ext/pg_query/include/{libpq → postgres/libpq}/pqformat.h +0 -0
  248. /data/ext/pg_query/include/{libpq → postgres/libpq}/pqsignal.h +0 -0
  249. /data/ext/pg_query/include/{libpq → postgres/libpq}/sasl.h +0 -0
  250. /data/ext/pg_query/include/{libpq → postgres/libpq}/scram.h +0 -0
  251. /data/ext/pg_query/include/{mb → postgres/mb}/pg_wchar.h +0 -0
  252. /data/ext/pg_query/include/{mb → postgres/mb}/stringinfo_mb.h +0 -0
  253. /data/ext/pg_query/include/{nodes → postgres/nodes}/bitmapset.h +0 -0
  254. /data/ext/pg_query/include/{nodes → postgres/nodes}/execnodes.h +0 -0
  255. /data/ext/pg_query/include/{nodes → postgres/nodes}/extensible.h +0 -0
  256. /data/ext/pg_query/include/{nodes → postgres/nodes}/lockoptions.h +0 -0
  257. /data/ext/pg_query/include/{nodes → postgres/nodes}/makefuncs.h +0 -0
  258. /data/ext/pg_query/include/{nodes → postgres/nodes}/memnodes.h +0 -0
  259. /data/ext/pg_query/include/{nodes → postgres/nodes}/miscnodes.h +0 -0
  260. /data/ext/pg_query/include/{nodes → postgres/nodes}/nodeFuncs.h +0 -0
  261. /data/ext/pg_query/include/{nodes → postgres/nodes}/nodetags.h +0 -0
  262. /data/ext/pg_query/include/{nodes → postgres/nodes}/params.h +0 -0
  263. /data/ext/pg_query/include/{nodes → postgres/nodes}/parsenodes.h +0 -0
  264. /data/ext/pg_query/include/{nodes → postgres/nodes}/pathnodes.h +0 -0
  265. /data/ext/pg_query/include/{nodes → postgres/nodes}/pg_list.h +0 -0
  266. /data/ext/pg_query/include/{nodes → postgres/nodes}/plannodes.h +0 -0
  267. /data/ext/pg_query/include/{nodes → postgres/nodes}/primnodes.h +0 -0
  268. /data/ext/pg_query/include/{nodes → postgres/nodes}/print.h +0 -0
  269. /data/ext/pg_query/include/{nodes → postgres/nodes}/queryjumble.h +0 -0
  270. /data/ext/pg_query/include/{nodes → postgres/nodes}/replnodes.h +0 -0
  271. /data/ext/pg_query/include/{nodes → postgres/nodes}/supportnodes.h +0 -0
  272. /data/ext/pg_query/include/{nodes → postgres/nodes}/tidbitmap.h +0 -0
  273. /data/ext/pg_query/include/{nodes → postgres/nodes}/value.h +0 -0
  274. /data/ext/pg_query/include/{optimizer → postgres/optimizer}/cost.h +0 -0
  275. /data/ext/pg_query/include/{optimizer → postgres/optimizer}/geqo.h +0 -0
  276. /data/ext/pg_query/include/{optimizer → postgres/optimizer}/geqo_gene.h +0 -0
  277. /data/ext/pg_query/include/{optimizer → postgres/optimizer}/optimizer.h +0 -0
  278. /data/ext/pg_query/include/{optimizer → postgres/optimizer}/paths.h +0 -0
  279. /data/ext/pg_query/include/{optimizer → postgres/optimizer}/planmain.h +0 -0
  280. /data/ext/pg_query/include/{parser → postgres/parser}/analyze.h +0 -0
  281. /data/ext/pg_query/include/{parser → postgres/parser}/kwlist.h +0 -0
  282. /data/ext/pg_query/include/{parser → postgres/parser}/parse_agg.h +0 -0
  283. /data/ext/pg_query/include/{parser → postgres/parser}/parse_coerce.h +0 -0
  284. /data/ext/pg_query/include/{parser → postgres/parser}/parse_expr.h +0 -0
  285. /data/ext/pg_query/include/{parser → postgres/parser}/parse_func.h +0 -0
  286. /data/ext/pg_query/include/{parser → postgres/parser}/parse_node.h +0 -0
  287. /data/ext/pg_query/include/{parser → postgres/parser}/parse_oper.h +0 -0
  288. /data/ext/pg_query/include/{parser → postgres/parser}/parse_relation.h +0 -0
  289. /data/ext/pg_query/include/{parser → postgres/parser}/parse_type.h +0 -0
  290. /data/ext/pg_query/include/{parser → postgres/parser}/parsetree.h +0 -0
  291. /data/ext/pg_query/include/{parser → postgres/parser}/scanner.h +0 -0
  292. /data/ext/pg_query/include/{parser → postgres/parser}/scansup.h +0 -0
  293. /data/ext/pg_query/include/{partitioning → postgres/partitioning}/partdefs.h +0 -0
  294. /data/ext/pg_query/include/{pg_config_ext.h → postgres/pg_config_ext.h} +0 -0
  295. /data/ext/pg_query/include/{pg_config_manual.h → postgres/pg_config_manual.h} +0 -0
  296. /data/ext/pg_query/include/{pg_getopt.h → postgres/pg_getopt.h} +0 -0
  297. /data/ext/pg_query/include/{pg_trace.h → postgres/pg_trace.h} +0 -0
  298. /data/ext/pg_query/include/{pgtime.h → postgres/pgtime.h} +0 -0
  299. /data/ext/pg_query/include/{pl_reserved_kwlist.h → postgres/pl_reserved_kwlist.h} +0 -0
  300. /data/ext/pg_query/include/{pl_reserved_kwlist_d.h → postgres/pl_reserved_kwlist_d.h} +0 -0
  301. /data/ext/pg_query/include/{pl_unreserved_kwlist.h → postgres/pl_unreserved_kwlist.h} +0 -0
  302. /data/ext/pg_query/include/{pl_unreserved_kwlist_d.h → postgres/pl_unreserved_kwlist_d.h} +0 -0
  303. /data/ext/pg_query/include/{plerrcodes.h → postgres/plerrcodes.h} +0 -0
  304. /data/ext/pg_query/include/{port → postgres/port}/atomics/arch-arm.h +0 -0
  305. /data/ext/pg_query/include/{port → postgres/port}/atomics/arch-ppc.h +0 -0
  306. /data/ext/pg_query/include/{port → postgres/port}/atomics/arch-x86.h +0 -0
  307. /data/ext/pg_query/include/{port → postgres/port}/atomics/fallback.h +0 -0
  308. /data/ext/pg_query/include/{port → postgres/port}/atomics/generic-gcc.h +0 -0
  309. /data/ext/pg_query/include/{port → postgres/port}/atomics/generic.h +0 -0
  310. /data/ext/pg_query/include/{port → postgres/port}/atomics.h +0 -0
  311. /data/ext/pg_query/include/{port → postgres/port}/pg_bitutils.h +0 -0
  312. /data/ext/pg_query/include/{port → postgres/port}/pg_bswap.h +0 -0
  313. /data/ext/pg_query/include/{port → postgres/port}/pg_crc32c.h +0 -0
  314. /data/ext/pg_query/include/{port → postgres/port}/simd.h +0 -0
  315. /data/ext/pg_query/include/{port.h → postgres/port.h} +0 -0
  316. /data/ext/pg_query/include/{portability → postgres/portability}/instr_time.h +0 -0
  317. /data/ext/pg_query/include/{postgres.h → postgres/postgres.h} +0 -0
  318. /data/ext/pg_query/include/{postgres_ext.h → postgres/postgres_ext.h} +0 -0
  319. /data/ext/pg_query/include/{postmaster → postgres/postmaster}/autovacuum.h +0 -0
  320. /data/ext/pg_query/include/{postmaster → postgres/postmaster}/bgworker.h +0 -0
  321. /data/ext/pg_query/include/{postmaster → postgres/postmaster}/bgworker_internals.h +0 -0
  322. /data/ext/pg_query/include/{postmaster → postgres/postmaster}/bgwriter.h +0 -0
  323. /data/ext/pg_query/include/{postmaster → postgres/postmaster}/interrupt.h +0 -0
  324. /data/ext/pg_query/include/{postmaster → postgres/postmaster}/pgarch.h +0 -0
  325. /data/ext/pg_query/include/{postmaster → postgres/postmaster}/startup.h +0 -0
  326. /data/ext/pg_query/include/{postmaster → postgres/postmaster}/syslogger.h +0 -0
  327. /data/ext/pg_query/include/{postmaster → postgres/postmaster}/walwriter.h +0 -0
  328. /data/ext/pg_query/include/{regex → postgres/regex}/regex.h +0 -0
  329. /data/ext/pg_query/include/{replication → postgres/replication}/logicallauncher.h +0 -0
  330. /data/ext/pg_query/include/{replication → postgres/replication}/logicalproto.h +0 -0
  331. /data/ext/pg_query/include/{replication → postgres/replication}/logicalworker.h +0 -0
  332. /data/ext/pg_query/include/{replication → postgres/replication}/origin.h +0 -0
  333. /data/ext/pg_query/include/{replication → postgres/replication}/reorderbuffer.h +0 -0
  334. /data/ext/pg_query/include/{replication → postgres/replication}/slot.h +0 -0
  335. /data/ext/pg_query/include/{replication → postgres/replication}/syncrep.h +0 -0
  336. /data/ext/pg_query/include/{replication → postgres/replication}/walreceiver.h +0 -0
  337. /data/ext/pg_query/include/{replication → postgres/replication}/walsender.h +0 -0
  338. /data/ext/pg_query/include/{rewrite → postgres/rewrite}/prs2lock.h +0 -0
  339. /data/ext/pg_query/include/{rewrite → postgres/rewrite}/rewriteHandler.h +0 -0
  340. /data/ext/pg_query/include/{rewrite → postgres/rewrite}/rewriteManip.h +0 -0
  341. /data/ext/pg_query/include/{rewrite → postgres/rewrite}/rewriteSupport.h +0 -0
  342. /data/ext/pg_query/include/{storage → postgres/storage}/backendid.h +0 -0
  343. /data/ext/pg_query/include/{storage → postgres/storage}/block.h +0 -0
  344. /data/ext/pg_query/include/{storage → postgres/storage}/buf.h +0 -0
  345. /data/ext/pg_query/include/{storage → postgres/storage}/bufmgr.h +0 -0
  346. /data/ext/pg_query/include/{storage → postgres/storage}/bufpage.h +0 -0
  347. /data/ext/pg_query/include/{storage → postgres/storage}/condition_variable.h +0 -0
  348. /data/ext/pg_query/include/{storage → postgres/storage}/dsm.h +0 -0
  349. /data/ext/pg_query/include/{storage → postgres/storage}/dsm_impl.h +0 -0
  350. /data/ext/pg_query/include/{storage → postgres/storage}/fd.h +0 -0
  351. /data/ext/pg_query/include/{storage → postgres/storage}/fileset.h +0 -0
  352. /data/ext/pg_query/include/{storage → postgres/storage}/item.h +0 -0
  353. /data/ext/pg_query/include/{storage → postgres/storage}/itemid.h +0 -0
  354. /data/ext/pg_query/include/{storage → postgres/storage}/itemptr.h +0 -0
  355. /data/ext/pg_query/include/{storage → postgres/storage}/large_object.h +0 -0
  356. /data/ext/pg_query/include/{storage → postgres/storage}/latch.h +0 -0
  357. /data/ext/pg_query/include/{storage → postgres/storage}/lmgr.h +0 -0
  358. /data/ext/pg_query/include/{storage → postgres/storage}/lock.h +0 -0
  359. /data/ext/pg_query/include/{storage → postgres/storage}/lockdefs.h +0 -0
  360. /data/ext/pg_query/include/{storage → postgres/storage}/lwlock.h +0 -0
  361. /data/ext/pg_query/include/{storage → postgres/storage}/lwlocknames.h +0 -0
  362. /data/ext/pg_query/include/{storage → postgres/storage}/off.h +0 -0
  363. /data/ext/pg_query/include/{storage → postgres/storage}/pg_sema.h +0 -0
  364. /data/ext/pg_query/include/{storage → postgres/storage}/pg_shmem.h +0 -0
  365. /data/ext/pg_query/include/{storage → postgres/storage}/pmsignal.h +0 -0
  366. /data/ext/pg_query/include/{storage → postgres/storage}/predicate.h +0 -0
  367. /data/ext/pg_query/include/{storage → postgres/storage}/proc.h +0 -0
  368. /data/ext/pg_query/include/{storage → postgres/storage}/procarray.h +0 -0
  369. /data/ext/pg_query/include/{storage → postgres/storage}/proclist_types.h +0 -0
  370. /data/ext/pg_query/include/{storage → postgres/storage}/procsignal.h +0 -0
  371. /data/ext/pg_query/include/{storage → postgres/storage}/relfilelocator.h +0 -0
  372. /data/ext/pg_query/include/{storage → postgres/storage}/s_lock.h +0 -0
  373. /data/ext/pg_query/include/{storage → postgres/storage}/sharedfileset.h +0 -0
  374. /data/ext/pg_query/include/{storage → postgres/storage}/shm_mq.h +0 -0
  375. /data/ext/pg_query/include/{storage → postgres/storage}/shm_toc.h +0 -0
  376. /data/ext/pg_query/include/{storage → postgres/storage}/shmem.h +0 -0
  377. /data/ext/pg_query/include/{storage → postgres/storage}/sinval.h +0 -0
  378. /data/ext/pg_query/include/{storage → postgres/storage}/sinvaladt.h +0 -0
  379. /data/ext/pg_query/include/{storage → postgres/storage}/smgr.h +0 -0
  380. /data/ext/pg_query/include/{storage → postgres/storage}/spin.h +0 -0
  381. /data/ext/pg_query/include/{storage → postgres/storage}/standby.h +0 -0
  382. /data/ext/pg_query/include/{storage → postgres/storage}/standbydefs.h +0 -0
  383. /data/ext/pg_query/include/{storage → postgres/storage}/sync.h +0 -0
  384. /data/ext/pg_query/include/{tcop → postgres/tcop}/cmdtag.h +0 -0
  385. /data/ext/pg_query/include/{tcop → postgres/tcop}/cmdtaglist.h +0 -0
  386. /data/ext/pg_query/include/{tcop → postgres/tcop}/deparse_utility.h +0 -0
  387. /data/ext/pg_query/include/{tcop → postgres/tcop}/dest.h +0 -0
  388. /data/ext/pg_query/include/{tcop → postgres/tcop}/fastpath.h +0 -0
  389. /data/ext/pg_query/include/{tcop → postgres/tcop}/pquery.h +0 -0
  390. /data/ext/pg_query/include/{tcop → postgres/tcop}/utility.h +0 -0
  391. /data/ext/pg_query/include/{tsearch → postgres/tsearch}/ts_cache.h +0 -0
  392. /data/ext/pg_query/include/{utils → postgres/utils}/acl.h +0 -0
  393. /data/ext/pg_query/include/{utils → postgres/utils}/aclchk_internal.h +0 -0
  394. /data/ext/pg_query/include/{utils → postgres/utils}/array.h +0 -0
  395. /data/ext/pg_query/include/{utils → postgres/utils}/backend_progress.h +0 -0
  396. /data/ext/pg_query/include/{utils → postgres/utils}/backend_status.h +0 -0
  397. /data/ext/pg_query/include/{utils → postgres/utils}/bytea.h +0 -0
  398. /data/ext/pg_query/include/{utils → postgres/utils}/catcache.h +0 -0
  399. /data/ext/pg_query/include/{utils → postgres/utils}/date.h +0 -0
  400. /data/ext/pg_query/include/{utils → postgres/utils}/datetime.h +0 -0
  401. /data/ext/pg_query/include/{utils → postgres/utils}/datum.h +0 -0
  402. /data/ext/pg_query/include/{utils → postgres/utils}/dsa.h +0 -0
  403. /data/ext/pg_query/include/{utils → postgres/utils}/errcodes.h +0 -0
  404. /data/ext/pg_query/include/{utils → postgres/utils}/expandeddatum.h +0 -0
  405. /data/ext/pg_query/include/{utils → postgres/utils}/expandedrecord.h +0 -0
  406. /data/ext/pg_query/include/{utils → postgres/utils}/float.h +0 -0
  407. /data/ext/pg_query/include/{utils → postgres/utils}/fmgroids.h +0 -0
  408. /data/ext/pg_query/include/{utils → postgres/utils}/fmgrprotos.h +0 -0
  409. /data/ext/pg_query/include/{utils → postgres/utils}/fmgrtab.h +0 -0
  410. /data/ext/pg_query/include/{utils → postgres/utils}/guc_hooks.h +0 -0
  411. /data/ext/pg_query/include/{utils → postgres/utils}/guc_tables.h +0 -0
  412. /data/ext/pg_query/include/{utils → postgres/utils}/hsearch.h +0 -0
  413. /data/ext/pg_query/include/{utils → postgres/utils}/inval.h +0 -0
  414. /data/ext/pg_query/include/{utils → postgres/utils}/logtape.h +0 -0
  415. /data/ext/pg_query/include/{utils → postgres/utils}/lsyscache.h +0 -0
  416. /data/ext/pg_query/include/{utils → postgres/utils}/memdebug.h +0 -0
  417. /data/ext/pg_query/include/{utils → postgres/utils}/memutils_internal.h +0 -0
  418. /data/ext/pg_query/include/{utils → postgres/utils}/memutils_memorychunk.h +0 -0
  419. /data/ext/pg_query/include/{utils → postgres/utils}/numeric.h +0 -0
  420. /data/ext/pg_query/include/{utils → postgres/utils}/partcache.h +0 -0
  421. /data/ext/pg_query/include/{utils → postgres/utils}/pg_locale.h +0 -0
  422. /data/ext/pg_query/include/{utils → postgres/utils}/pgstat_internal.h +0 -0
  423. /data/ext/pg_query/include/{utils → postgres/utils}/plancache.h +0 -0
  424. /data/ext/pg_query/include/{utils → postgres/utils}/portal.h +0 -0
  425. /data/ext/pg_query/include/{utils → postgres/utils}/probes.h +0 -0
  426. /data/ext/pg_query/include/{utils → postgres/utils}/ps_status.h +0 -0
  427. /data/ext/pg_query/include/{utils → postgres/utils}/queryenvironment.h +0 -0
  428. /data/ext/pg_query/include/{utils → postgres/utils}/regproc.h +0 -0
  429. /data/ext/pg_query/include/{utils → postgres/utils}/rel.h +0 -0
  430. /data/ext/pg_query/include/{utils → postgres/utils}/relcache.h +0 -0
  431. /data/ext/pg_query/include/{utils → postgres/utils}/reltrigger.h +0 -0
  432. /data/ext/pg_query/include/{utils → postgres/utils}/resowner.h +0 -0
  433. /data/ext/pg_query/include/{utils → postgres/utils}/ruleutils.h +0 -0
  434. /data/ext/pg_query/include/{utils → postgres/utils}/sharedtuplestore.h +0 -0
  435. /data/ext/pg_query/include/{utils → postgres/utils}/snapmgr.h +0 -0
  436. /data/ext/pg_query/include/{utils → postgres/utils}/snapshot.h +0 -0
  437. /data/ext/pg_query/include/{utils → postgres/utils}/sortsupport.h +0 -0
  438. /data/ext/pg_query/include/{utils → postgres/utils}/syscache.h +0 -0
  439. /data/ext/pg_query/include/{utils → postgres/utils}/timeout.h +0 -0
  440. /data/ext/pg_query/include/{utils → postgres/utils}/timestamp.h +0 -0
  441. /data/ext/pg_query/include/{utils → postgres/utils}/tuplesort.h +0 -0
  442. /data/ext/pg_query/include/{utils → postgres/utils}/tuplestore.h +0 -0
  443. /data/ext/pg_query/include/{utils → postgres/utils}/typcache.h +0 -0
  444. /data/ext/pg_query/include/{utils → postgres/utils}/varlena.h +0 -0
  445. /data/ext/pg_query/include/{utils → postgres/utils}/wait_event.h +0 -0
  446. /data/ext/pg_query/include/{utils → postgres/utils}/xml.h +0 -0
  447. /data/ext/pg_query/include/{varatt.h → postgres/varatt.h} +0 -0
@@ -5,7 +5,7 @@
5
5
  require 'google/protobuf'
6
6
 
7
7
 
8
- descriptor_data = "\n\x0epg_query.proto\x12\x08pg_query\"@\n\x0bParseResult\x12\x0f\n\x07version\x18\x01 \x01(\x05\x12 \n\x05stmts\x18\x02 \x03(\x0b\x32\x11.pg_query.RawStmt\"B\n\nScanResult\x12\x0f\n\x07version\x18\x01 \x01(\x05\x12#\n\x06tokens\x18\x02 \x03(\x0b\x32\x13.pg_query.ScanToken\"\xc1\x85\x01\n\x04Node\x12\'\n\x05\x61lias\x18\x01 \x01(\x0b\x32\x0f.pg_query.AliasH\x00R\x05\x41lias\x12\x31\n\trange_var\x18\x02 \x01(\x0b\x32\x12.pg_query.RangeVarH\x00R\x08RangeVar\x12\x34\n\ntable_func\x18\x03 \x01(\x0b\x32\x13.pg_query.TableFuncH\x00R\tTableFunc\x12\x37\n\x0binto_clause\x18\x04 \x01(\x0b\x32\x14.pg_query.IntoClauseH\x00R\nIntoClause\x12!\n\x03var\x18\x05 \x01(\x0b\x32\r.pg_query.VarH\x00R\x03Var\x12\'\n\x05param\x18\x06 \x01(\x0b\x32\x0f.pg_query.ParamH\x00R\x05Param\x12*\n\x06\x61ggref\x18\x07 \x01(\x0b\x32\x10.pg_query.AggrefH\x00R\x06\x41ggref\x12=\n\rgrouping_func\x18\x08 \x01(\x0b\x32\x16.pg_query.GroupingFuncH\x00R\x0cGroupingFunc\x12\x37\n\x0bwindow_func\x18\t \x01(\x0b\x32\x14.pg_query.WindowFuncH\x00R\nWindowFunc\x12\x46\n\x10subscripting_ref\x18\n \x01(\x0b\x32\x19.pg_query.SubscriptingRefH\x00R\x0fSubscriptingRef\x12\x31\n\tfunc_expr\x18\x0b \x01(\x0b\x32\x12.pg_query.FuncExprH\x00R\x08\x46uncExpr\x12>\n\x0enamed_arg_expr\x18\x0c \x01(\x0b\x32\x16.pg_query.NamedArgExprH\x00R\x0cNamedArgExpr\x12+\n\x07op_expr\x18\r \x01(\x0b\x32\x10.pg_query.OpExprH\x00R\x06OpExpr\x12=\n\rdistinct_expr\x18\x0e \x01(\x0b\x32\x16.pg_query.DistinctExprH\x00R\x0c\x44istinctExpr\x12\x38\n\x0cnull_if_expr\x18\x0f \x01(\x0b\x32\x14.pg_query.NullIfExprH\x00R\nNullIfExpr\x12N\n\x14scalar_array_op_expr\x18\x10 \x01(\x0b\x32\x1b.pg_query.ScalarArrayOpExprH\x00R\x11ScalarArrayOpExpr\x12\x31\n\tbool_expr\x18\x11 \x01(\x0b\x32\x12.pg_query.BoolExprH\x00R\x08\x42oolExpr\x12.\n\x08sub_link\x18\x12 \x01(\x0b\x32\x11.pg_query.SubLinkH\x00R\x07SubLink\x12.\n\x08sub_plan\x18\x13 \x01(\x0b\x32\x11.pg_query.SubPlanH\x00R\x07SubPlan\x12P\n\x14\x61lternative_sub_plan\x18\x14 \x01(\x0b\x32\x1c.pg_query.AlternativeSubPlanH\x00R\x12\x41lternativeSubPlan\x12:\n\x0c\x66ield_select\x18\x15 \x01(\x0b\x32\x15.pg_query.FieldSelectH\x00R\x0b\x46ieldSelect\x12\x37\n\x0b\x66ield_store\x18\x16 \x01(\x0b\x32\x14.pg_query.FieldStoreH\x00R\nFieldStore\x12:\n\x0crelabel_type\x18\x17 \x01(\x0b\x32\x15.pg_query.RelabelTypeH\x00R\x0bRelabelType\x12;\n\rcoerce_via_io\x18\x18 \x01(\x0b\x32\x15.pg_query.CoerceViaIOH\x00R\x0b\x43oerceViaIO\x12G\n\x11\x61rray_coerce_expr\x18\x19 \x01(\x0b\x32\x19.pg_query.ArrayCoerceExprH\x00R\x0f\x41rrayCoerceExpr\x12P\n\x14\x63onvert_rowtype_expr\x18\x1a \x01(\x0b\x32\x1c.pg_query.ConvertRowtypeExprH\x00R\x12\x43onvertRowtypeExpr\x12:\n\x0c\x63ollate_expr\x18\x1b \x01(\x0b\x32\x15.pg_query.CollateExprH\x00R\x0b\x43ollateExpr\x12\x31\n\tcase_expr\x18\x1c \x01(\x0b\x32\x12.pg_query.CaseExprH\x00R\x08\x43\x61seExpr\x12\x31\n\tcase_when\x18\x1d \x01(\x0b\x32\x12.pg_query.CaseWhenH\x00R\x08\x43\x61seWhen\x12>\n\x0e\x63\x61se_test_expr\x18\x1e \x01(\x0b\x32\x16.pg_query.CaseTestExprH\x00R\x0c\x43\x61seTestExpr\x12\x34\n\narray_expr\x18\x1f \x01(\x0b\x32\x13.pg_query.ArrayExprH\x00R\tArrayExpr\x12.\n\x08row_expr\x18 \x01(\x0b\x32\x11.pg_query.RowExprH\x00R\x07RowExpr\x12\x44\n\x10row_compare_expr\x18! \x01(\x0b\x32\x18.pg_query.RowCompareExprH\x00R\x0eRowCompareExpr\x12=\n\rcoalesce_expr\x18\" \x01(\x0b\x32\x16.pg_query.CoalesceExprH\x00R\x0c\x43oalesceExpr\x12\x38\n\x0cmin_max_expr\x18# \x01(\x0b\x32\x14.pg_query.MinMaxExprH\x00R\nMinMaxExpr\x12I\n\x11sqlvalue_function\x18$ \x01(\x0b\x32\x1a.pg_query.SQLValueFunctionH\x00R\x10SQLValueFunction\x12.\n\x08xml_expr\x18% \x01(\x0b\x32\x11.pg_query.XmlExprH\x00R\x07XmlExpr\x12\x37\n\x0bjson_format\x18& \x01(\x0b\x32\x14.pg_query.JsonFormatH\x00R\nJsonFormat\x12@\n\x0ejson_returning\x18\' \x01(\x0b\x32\x17.pg_query.JsonReturningH\x00R\rJsonReturning\x12\x41\n\x0fjson_value_expr\x18( \x01(\x0b\x32\x17.pg_query.JsonValueExprH\x00R\rJsonValueExpr\x12S\n\x15json_constructor_expr\x18) \x01(\x0b\x32\x1d.pg_query.JsonConstructorExprH\x00R\x13JsonConstructorExpr\x12G\n\x11json_is_predicate\x18* \x01(\x0b\x32\x19.pg_query.JsonIsPredicateH\x00R\x0fJsonIsPredicate\x12\x31\n\tnull_test\x18+ \x01(\x0b\x32\x12.pg_query.NullTestH\x00R\x08NullTest\x12:\n\x0c\x62oolean_test\x18, \x01(\x0b\x32\x15.pg_query.BooleanTestH\x00R\x0b\x42ooleanTest\x12\x44\n\x10\x63oerce_to_domain\x18- \x01(\x0b\x32\x18.pg_query.CoerceToDomainH\x00R\x0e\x43oerceToDomain\x12T\n\x16\x63oerce_to_domain_value\x18. \x01(\x0b\x32\x1d.pg_query.CoerceToDomainValueH\x00R\x13\x43oerceToDomainValue\x12>\n\x0eset_to_default\x18/ \x01(\x0b\x32\x16.pg_query.SetToDefaultH\x00R\x0cSetToDefault\x12\x41\n\x0f\x63urrent_of_expr\x18\x30 \x01(\x0b\x32\x17.pg_query.CurrentOfExprH\x00R\rCurrentOfExpr\x12\x41\n\x0fnext_value_expr\x18\x31 \x01(\x0b\x32\x17.pg_query.NextValueExprH\x00R\rNextValueExpr\x12@\n\x0einference_elem\x18\x32 \x01(\x0b\x32\x17.pg_query.InferenceElemH\x00R\rInferenceElem\x12:\n\x0ctarget_entry\x18\x33 \x01(\x0b\x32\x15.pg_query.TargetEntryH\x00R\x0bTargetEntry\x12;\n\rrange_tbl_ref\x18\x34 \x01(\x0b\x32\x15.pg_query.RangeTblRefH\x00R\x0bRangeTblRef\x12\x31\n\tjoin_expr\x18\x35 \x01(\x0b\x32\x12.pg_query.JoinExprH\x00R\x08JoinExpr\x12\x31\n\tfrom_expr\x18\x36 \x01(\x0b\x32\x12.pg_query.FromExprH\x00R\x08\x46romExpr\x12\x44\n\x10on_conflict_expr\x18\x37 \x01(\x0b\x32\x18.pg_query.OnConflictExprH\x00R\x0eOnConflictExpr\x12\'\n\x05query\x18\x38 \x01(\x0b\x32\x0f.pg_query.QueryH\x00R\x05Query\x12\x31\n\ttype_name\x18\x39 \x01(\x0b\x32\x12.pg_query.TypeNameH\x00R\x08TypeName\x12\x34\n\ncolumn_ref\x18: \x01(\x0b\x32\x13.pg_query.ColumnRefH\x00R\tColumnRef\x12\x31\n\tparam_ref\x18; \x01(\x0b\x32\x12.pg_query.ParamRefH\x00R\x08ParamRef\x12*\n\x06\x61_expr\x18< \x01(\x0b\x32\x10.pg_query.A_ExprH\x00R\x06\x41_Expr\x12\x31\n\ttype_cast\x18= \x01(\x0b\x32\x12.pg_query.TypeCastH\x00R\x08TypeCast\x12@\n\x0e\x63ollate_clause\x18> \x01(\x0b\x32\x17.pg_query.CollateClauseH\x00R\rCollateClause\x12\x31\n\trole_spec\x18? \x01(\x0b\x32\x12.pg_query.RoleSpecH\x00R\x08RoleSpec\x12\x31\n\tfunc_call\x18@ \x01(\x0b\x32\x12.pg_query.FuncCallH\x00R\x08\x46uncCall\x12*\n\x06\x61_star\x18\x41 \x01(\x0b\x32\x10.pg_query.A_StarH\x00R\x06\x41_Star\x12\x33\n\ta_indices\x18\x42 \x01(\x0b\x32\x13.pg_query.A_IndicesH\x00R\tA_Indices\x12?\n\ra_indirection\x18\x43 \x01(\x0b\x32\x17.pg_query.A_IndirectionH\x00R\rA_Indirection\x12:\n\x0c\x61_array_expr\x18\x44 \x01(\x0b\x32\x15.pg_query.A_ArrayExprH\x00R\x0b\x41_ArrayExpr\x12\x34\n\nres_target\x18\x45 \x01(\x0b\x32\x13.pg_query.ResTargetH\x00R\tResTarget\x12\x44\n\x10multi_assign_ref\x18\x46 \x01(\x0b\x32\x18.pg_query.MultiAssignRefH\x00R\x0eMultiAssignRef\x12+\n\x07sort_by\x18G \x01(\x0b\x32\x10.pg_query.SortByH\x00R\x06SortBy\x12\x34\n\nwindow_def\x18H \x01(\x0b\x32\x13.pg_query.WindowDefH\x00R\tWindowDef\x12\x43\n\x0frange_subselect\x18I \x01(\x0b\x32\x18.pg_query.RangeSubselectH\x00R\x0eRangeSubselect\x12@\n\x0erange_function\x18J \x01(\x0b\x32\x17.pg_query.RangeFunctionH\x00R\rRangeFunction\x12\x44\n\x10range_table_func\x18K \x01(\x0b\x32\x18.pg_query.RangeTableFuncH\x00R\x0eRangeTableFunc\x12N\n\x14range_table_func_col\x18L \x01(\x0b\x32\x1b.pg_query.RangeTableFuncColH\x00R\x11RangeTableFuncCol\x12J\n\x12range_table_sample\x18M \x01(\x0b\x32\x1a.pg_query.RangeTableSampleH\x00R\x10RangeTableSample\x12\x34\n\ncolumn_def\x18N \x01(\x0b\x32\x13.pg_query.ColumnDefH\x00R\tColumnDef\x12G\n\x11table_like_clause\x18O \x01(\x0b\x32\x19.pg_query.TableLikeClauseH\x00R\x0fTableLikeClause\x12\x34\n\nindex_elem\x18P \x01(\x0b\x32\x13.pg_query.IndexElemH\x00R\tIndexElem\x12.\n\x08\x64\x65\x66_elem\x18Q \x01(\x0b\x32\x11.pg_query.DefElemH\x00R\x07\x44\x65\x66\x45lem\x12@\n\x0elocking_clause\x18R \x01(\x0b\x32\x17.pg_query.LockingClauseH\x00R\rLockingClause\x12=\n\rxml_serialize\x18S \x01(\x0b\x32\x16.pg_query.XmlSerializeH\x00R\x0cXmlSerialize\x12@\n\x0epartition_elem\x18T \x01(\x0b\x32\x17.pg_query.PartitionElemH\x00R\rPartitionElem\x12@\n\x0epartition_spec\x18U \x01(\x0b\x32\x17.pg_query.PartitionSpecH\x00R\rPartitionSpec\x12P\n\x14partition_bound_spec\x18V \x01(\x0b\x32\x1c.pg_query.PartitionBoundSpecH\x00R\x12PartitionBoundSpec\x12S\n\x15partition_range_datum\x18W \x01(\x0b\x32\x1d.pg_query.PartitionRangeDatumH\x00R\x13PartitionRangeDatum\x12=\n\rpartition_cmd\x18X \x01(\x0b\x32\x16.pg_query.PartitionCmdH\x00R\x0cPartitionCmd\x12\x41\n\x0frange_tbl_entry\x18Y \x01(\x0b\x32\x17.pg_query.RangeTblEntryH\x00R\rRangeTblEntry\x12L\n\x12rtepermission_info\x18Z \x01(\x0b\x32\x1b.pg_query.RTEPermissionInfoH\x00R\x11RTEPermissionInfo\x12J\n\x12range_tbl_function\x18[ \x01(\x0b\x32\x1a.pg_query.RangeTblFunctionH\x00R\x10RangeTblFunction\x12M\n\x13table_sample_clause\x18\\ \x01(\x0b\x32\x1b.pg_query.TableSampleClauseH\x00R\x11TableSampleClause\x12G\n\x11with_check_option\x18] \x01(\x0b\x32\x19.pg_query.WithCheckOptionH\x00R\x0fWithCheckOption\x12G\n\x11sort_group_clause\x18^ \x01(\x0b\x32\x19.pg_query.SortGroupClauseH\x00R\x0fSortGroupClause\x12:\n\x0cgrouping_set\x18_ \x01(\x0b\x32\x15.pg_query.GroupingSetH\x00R\x0bGroupingSet\x12=\n\rwindow_clause\x18` \x01(\x0b\x32\x16.pg_query.WindowClauseH\x00R\x0cWindowClause\x12\x41\n\x0frow_mark_clause\x18\x61 \x01(\x0b\x32\x17.pg_query.RowMarkClauseH\x00R\rRowMarkClause\x12\x37\n\x0bwith_clause\x18\x62 \x01(\x0b\x32\x14.pg_query.WithClauseH\x00R\nWithClause\x12:\n\x0cinfer_clause\x18\x63 \x01(\x0b\x32\x15.pg_query.InferClauseH\x00R\x0bInferClause\x12J\n\x12on_conflict_clause\x18\x64 \x01(\x0b\x32\x1a.pg_query.OnConflictClauseH\x00R\x10OnConflictClause\x12\x46\n\x10\x63tesearch_clause\x18\x65 \x01(\x0b\x32\x19.pg_query.CTESearchClauseH\x00R\x0f\x43TESearchClause\x12\x43\n\x0f\x63tecycle_clause\x18\x66 \x01(\x0b\x32\x18.pg_query.CTECycleClauseH\x00R\x0e\x43TECycleClause\x12G\n\x11\x63ommon_table_expr\x18g \x01(\x0b\x32\x19.pg_query.CommonTableExprH\x00R\x0f\x43ommonTableExpr\x12G\n\x11merge_when_clause\x18h \x01(\x0b\x32\x19.pg_query.MergeWhenClauseH\x00R\x0fMergeWhenClause\x12:\n\x0cmerge_action\x18i \x01(\x0b\x32\x15.pg_query.MergeActionH\x00R\x0bMergeAction\x12L\n\x12trigger_transition\x18j \x01(\x0b\x32\x1b.pg_query.TriggerTransitionH\x00R\x11TriggerTransition\x12\x37\n\x0bjson_output\x18k \x01(\x0b\x32\x14.pg_query.JsonOutputH\x00R\nJsonOutput\x12>\n\x0ejson_key_value\x18l \x01(\x0b\x32\x16.pg_query.JsonKeyValueH\x00R\x0cJsonKeyValue\x12Y\n\x17json_object_constructor\x18m \x01(\x0b\x32\x1f.pg_query.JsonObjectConstructorH\x00R\x15JsonObjectConstructor\x12V\n\x16json_array_constructor\x18n \x01(\x0b\x32\x1e.pg_query.JsonArrayConstructorH\x00R\x14JsonArrayConstructor\x12\x66\n\x1cjson_array_query_constructor\x18o \x01(\x0b\x32#.pg_query.JsonArrayQueryConstructorH\x00R\x19JsonArrayQueryConstructor\x12P\n\x14json_agg_constructor\x18p \x01(\x0b\x32\x1c.pg_query.JsonAggConstructorH\x00R\x12JsonAggConstructor\x12\x41\n\x0fjson_object_agg\x18q \x01(\x0b\x32\x17.pg_query.JsonObjectAggH\x00R\rJsonObjectAgg\x12>\n\x0ejson_array_agg\x18r \x01(\x0b\x32\x16.pg_query.JsonArrayAggH\x00R\x0cJsonArrayAgg\x12.\n\x08raw_stmt\x18s \x01(\x0b\x32\x11.pg_query.RawStmtH\x00R\x07RawStmt\x12\x37\n\x0binsert_stmt\x18t \x01(\x0b\x32\x14.pg_query.InsertStmtH\x00R\nInsertStmt\x12\x37\n\x0b\x64\x65lete_stmt\x18u \x01(\x0b\x32\x14.pg_query.DeleteStmtH\x00R\nDeleteStmt\x12\x37\n\x0bupdate_stmt\x18v \x01(\x0b\x32\x14.pg_query.UpdateStmtH\x00R\nUpdateStmt\x12\x34\n\nmerge_stmt\x18w \x01(\x0b\x32\x13.pg_query.MergeStmtH\x00R\tMergeStmt\x12\x37\n\x0bselect_stmt\x18x \x01(\x0b\x32\x14.pg_query.SelectStmtH\x00R\nSelectStmt\x12J\n\x12set_operation_stmt\x18y \x01(\x0b\x32\x1a.pg_query.SetOperationStmtH\x00R\x10SetOperationStmt\x12\x37\n\x0breturn_stmt\x18z \x01(\x0b\x32\x14.pg_query.ReturnStmtH\x00R\nReturnStmt\x12=\n\rplassign_stmt\x18{ \x01(\x0b\x32\x16.pg_query.PLAssignStmtH\x00R\x0cPLAssignStmt\x12J\n\x12\x63reate_schema_stmt\x18| \x01(\x0b\x32\x1a.pg_query.CreateSchemaStmtH\x00R\x10\x43reateSchemaStmt\x12\x44\n\x10\x61lter_table_stmt\x18} \x01(\x0b\x32\x18.pg_query.AlterTableStmtH\x00R\x0e\x41lterTableStmt\x12S\n\x15replica_identity_stmt\x18~ \x01(\x0b\x32\x1d.pg_query.ReplicaIdentityStmtH\x00R\x13ReplicaIdentityStmt\x12\x41\n\x0f\x61lter_table_cmd\x18\x7f \x01(\x0b\x32\x17.pg_query.AlterTableCmdH\x00R\rAlterTableCmd\x12Q\n\x14\x61lter_collation_stmt\x18\x80\x01 \x01(\x0b\x32\x1c.pg_query.AlterCollationStmtH\x00R\x12\x41lterCollationStmt\x12H\n\x11\x61lter_domain_stmt\x18\x81\x01 \x01(\x0b\x32\x19.pg_query.AlterDomainStmtH\x00R\x0f\x41lterDomainStmt\x12\x35\n\ngrant_stmt\x18\x82\x01 \x01(\x0b\x32\x13.pg_query.GrantStmtH\x00R\tGrantStmt\x12\x45\n\x10object_with_args\x18\x83\x01 \x01(\x0b\x32\x18.pg_query.ObjectWithArgsH\x00R\x0eObjectWithArgs\x12\x38\n\x0b\x61\x63\x63\x65ss_priv\x18\x84\x01 \x01(\x0b\x32\x14.pg_query.AccessPrivH\x00R\nAccessPriv\x12\x42\n\x0fgrant_role_stmt\x18\x85\x01 \x01(\x0b\x32\x17.pg_query.GrantRoleStmtH\x00R\rGrantRoleStmt\x12j\n\x1d\x61lter_default_privileges_stmt\x18\x86\x01 \x01(\x0b\x32$.pg_query.AlterDefaultPrivilegesStmtH\x00R\x1a\x41lterDefaultPrivilegesStmt\x12\x32\n\tcopy_stmt\x18\x87\x01 \x01(\x0b\x32\x12.pg_query.CopyStmtH\x00R\x08\x43opyStmt\x12H\n\x11variable_set_stmt\x18\x88\x01 \x01(\x0b\x32\x19.pg_query.VariableSetStmtH\x00R\x0fVariableSetStmt\x12K\n\x12variable_show_stmt\x18\x89\x01 \x01(\x0b\x32\x1a.pg_query.VariableShowStmtH\x00R\x10VariableShowStmt\x12\x38\n\x0b\x63reate_stmt\x18\x8a\x01 \x01(\x0b\x32\x14.pg_query.CreateStmtH\x00R\nCreateStmt\x12\x37\n\nconstraint\x18\x8b\x01 \x01(\x0b\x32\x14.pg_query.ConstraintH\x00R\nConstraint\x12X\n\x17\x63reate_table_space_stmt\x18\x8c\x01 \x01(\x0b\x32\x1e.pg_query.CreateTableSpaceStmtH\x00R\x14\x43reateTableSpaceStmt\x12R\n\x15\x64rop_table_space_stmt\x18\x8d\x01 \x01(\x0b\x32\x1c.pg_query.DropTableSpaceStmtH\x00R\x12\x44ropTableSpaceStmt\x12k\n\x1e\x61lter_table_space_options_stmt\x18\x8e\x01 \x01(\x0b\x32$.pg_query.AlterTableSpaceOptionsStmtH\x00R\x1a\x41lterTableSpaceOptionsStmt\x12\\\n\x19\x61lter_table_move_all_stmt\x18\x8f\x01 \x01(\x0b\x32\x1f.pg_query.AlterTableMoveAllStmtH\x00R\x15\x41lterTableMoveAllStmt\x12T\n\x15\x63reate_extension_stmt\x18\x90\x01 \x01(\x0b\x32\x1d.pg_query.CreateExtensionStmtH\x00R\x13\x43reateExtensionStmt\x12Q\n\x14\x61lter_extension_stmt\x18\x91\x01 \x01(\x0b\x32\x1c.pg_query.AlterExtensionStmtH\x00R\x12\x41lterExtensionStmt\x12j\n\x1d\x61lter_extension_contents_stmt\x18\x92\x01 \x01(\x0b\x32$.pg_query.AlterExtensionContentsStmtH\x00R\x1a\x41lterExtensionContentsStmt\x12\x42\n\x0f\x63reate_fdw_stmt\x18\x93\x01 \x01(\x0b\x32\x17.pg_query.CreateFdwStmtH\x00R\rCreateFdwStmt\x12?\n\x0e\x61lter_fdw_stmt\x18\x94\x01 \x01(\x0b\x32\x16.pg_query.AlterFdwStmtH\x00R\x0c\x41lterFdwStmt\x12\x61\n\x1a\x63reate_foreign_server_stmt\x18\x95\x01 \x01(\x0b\x32!.pg_query.CreateForeignServerStmtH\x00R\x17\x43reateForeignServerStmt\x12^\n\x19\x61lter_foreign_server_stmt\x18\x96\x01 \x01(\x0b\x32 .pg_query.AlterForeignServerStmtH\x00R\x16\x41lterForeignServerStmt\x12^\n\x19\x63reate_foreign_table_stmt\x18\x97\x01 \x01(\x0b\x32 .pg_query.CreateForeignTableStmtH\x00R\x16\x43reateForeignTableStmt\x12[\n\x18\x63reate_user_mapping_stmt\x18\x98\x01 \x01(\x0b\x32\x1f.pg_query.CreateUserMappingStmtH\x00R\x15\x43reateUserMappingStmt\x12X\n\x17\x61lter_user_mapping_stmt\x18\x99\x01 \x01(\x0b\x32\x1e.pg_query.AlterUserMappingStmtH\x00R\x14\x41lterUserMappingStmt\x12U\n\x16\x64rop_user_mapping_stmt\x18\x9a\x01 \x01(\x0b\x32\x1d.pg_query.DropUserMappingStmtH\x00R\x13\x44ropUserMappingStmt\x12\x61\n\x1aimport_foreign_schema_stmt\x18\x9b\x01 \x01(\x0b\x32!.pg_query.ImportForeignSchemaStmtH\x00R\x17ImportForeignSchemaStmt\x12K\n\x12\x63reate_policy_stmt\x18\x9c\x01 \x01(\x0b\x32\x1a.pg_query.CreatePolicyStmtH\x00R\x10\x43reatePolicyStmt\x12H\n\x11\x61lter_policy_stmt\x18\x9d\x01 \x01(\x0b\x32\x19.pg_query.AlterPolicyStmtH\x00R\x0f\x41lterPolicyStmt\x12?\n\x0e\x63reate_am_stmt\x18\x9e\x01 \x01(\x0b\x32\x16.pg_query.CreateAmStmtH\x00R\x0c\x43reateAmStmt\x12\x45\n\x10\x63reate_trig_stmt\x18\x9f\x01 \x01(\x0b\x32\x18.pg_query.CreateTrigStmtH\x00R\x0e\x43reateTrigStmt\x12U\n\x16\x63reate_event_trig_stmt\x18\xa0\x01 \x01(\x0b\x32\x1d.pg_query.CreateEventTrigStmtH\x00R\x13\x43reateEventTrigStmt\x12R\n\x15\x61lter_event_trig_stmt\x18\xa1\x01 \x01(\x0b\x32\x1c.pg_query.AlterEventTrigStmtH\x00R\x12\x41lterEventTrigStmt\x12H\n\x11\x63reate_plang_stmt\x18\xa2\x01 \x01(\x0b\x32\x19.pg_query.CreatePLangStmtH\x00R\x0f\x43reatePLangStmt\x12\x45\n\x10\x63reate_role_stmt\x18\xa3\x01 \x01(\x0b\x32\x18.pg_query.CreateRoleStmtH\x00R\x0e\x43reateRoleStmt\x12\x42\n\x0f\x61lter_role_stmt\x18\xa4\x01 \x01(\x0b\x32\x17.pg_query.AlterRoleStmtH\x00R\rAlterRoleStmt\x12L\n\x13\x61lter_role_set_stmt\x18\xa5\x01 \x01(\x0b\x32\x1a.pg_query.AlterRoleSetStmtH\x00R\x10\x41lterRoleSetStmt\x12?\n\x0e\x64rop_role_stmt\x18\xa6\x01 \x01(\x0b\x32\x16.pg_query.DropRoleStmtH\x00R\x0c\x44ropRoleStmt\x12\x42\n\x0f\x63reate_seq_stmt\x18\xa7\x01 \x01(\x0b\x32\x17.pg_query.CreateSeqStmtH\x00R\rCreateSeqStmt\x12?\n\x0e\x61lter_seq_stmt\x18\xa8\x01 \x01(\x0b\x32\x16.pg_query.AlterSeqStmtH\x00R\x0c\x41lterSeqStmt\x12\x38\n\x0b\x64\x65\x66ine_stmt\x18\xa9\x01 \x01(\x0b\x32\x14.pg_query.DefineStmtH\x00R\nDefineStmt\x12K\n\x12\x63reate_domain_stmt\x18\xaa\x01 \x01(\x0b\x32\x1a.pg_query.CreateDomainStmtH\x00R\x10\x43reateDomainStmt\x12O\n\x14\x63reate_op_class_stmt\x18\xab\x01 \x01(\x0b\x32\x1b.pg_query.CreateOpClassStmtH\x00R\x11\x43reateOpClassStmt\x12O\n\x14\x63reate_op_class_item\x18\xac\x01 \x01(\x0b\x32\x1b.pg_query.CreateOpClassItemH\x00R\x11\x43reateOpClassItem\x12R\n\x15\x63reate_op_family_stmt\x18\xad\x01 \x01(\x0b\x32\x1c.pg_query.CreateOpFamilyStmtH\x00R\x12\x43reateOpFamilyStmt\x12O\n\x14\x61lter_op_family_stmt\x18\xae\x01 \x01(\x0b\x32\x1b.pg_query.AlterOpFamilyStmtH\x00R\x11\x41lterOpFamilyStmt\x12\x32\n\tdrop_stmt\x18\xaf\x01 \x01(\x0b\x32\x12.pg_query.DropStmtH\x00R\x08\x44ropStmt\x12>\n\rtruncate_stmt\x18\xb0\x01 \x01(\x0b\x32\x16.pg_query.TruncateStmtH\x00R\x0cTruncateStmt\x12;\n\x0c\x63omment_stmt\x18\xb1\x01 \x01(\x0b\x32\x15.pg_query.CommentStmtH\x00R\x0b\x43ommentStmt\x12?\n\x0esec_label_stmt\x18\xb2\x01 \x01(\x0b\x32\x16.pg_query.SecLabelStmtH\x00R\x0cSecLabelStmt\x12N\n\x13\x64\x65\x63lare_cursor_stmt\x18\xb3\x01 \x01(\x0b\x32\x1b.pg_query.DeclareCursorStmtH\x00R\x11\x44\x65\x63lareCursorStmt\x12H\n\x11\x63lose_portal_stmt\x18\xb4\x01 \x01(\x0b\x32\x19.pg_query.ClosePortalStmtH\x00R\x0f\x43losePortalStmt\x12\x35\n\nfetch_stmt\x18\xb5\x01 \x01(\x0b\x32\x13.pg_query.FetchStmtH\x00R\tFetchStmt\x12\x35\n\nindex_stmt\x18\xb6\x01 \x01(\x0b\x32\x13.pg_query.IndexStmtH\x00R\tIndexStmt\x12H\n\x11\x63reate_stats_stmt\x18\xb7\x01 \x01(\x0b\x32\x19.pg_query.CreateStatsStmtH\x00R\x0f\x43reateStatsStmt\x12\x35\n\nstats_elem\x18\xb8\x01 \x01(\x0b\x32\x13.pg_query.StatsElemH\x00R\tStatsElem\x12\x45\n\x10\x61lter_stats_stmt\x18\xb9\x01 \x01(\x0b\x32\x18.pg_query.AlterStatsStmtH\x00R\x0e\x41lterStatsStmt\x12Q\n\x14\x63reate_function_stmt\x18\xba\x01 \x01(\x0b\x32\x1c.pg_query.CreateFunctionStmtH\x00R\x12\x43reateFunctionStmt\x12M\n\x12\x66unction_parameter\x18\xbb\x01 \x01(\x0b\x32\x1b.pg_query.FunctionParameterH\x00R\x11\x46unctionParameter\x12N\n\x13\x61lter_function_stmt\x18\xbc\x01 \x01(\x0b\x32\x1b.pg_query.AlterFunctionStmtH\x00R\x11\x41lterFunctionStmt\x12,\n\x07\x64o_stmt\x18\xbd\x01 \x01(\x0b\x32\x10.pg_query.DoStmtH\x00R\x06\x44oStmt\x12H\n\x11inline_code_block\x18\xbe\x01 \x01(\x0b\x32\x19.pg_query.InlineCodeBlockH\x00R\x0fInlineCodeBlock\x12\x32\n\tcall_stmt\x18\xbf\x01 \x01(\x0b\x32\x12.pg_query.CallStmtH\x00R\x08\x43\x61llStmt\x12;\n\x0c\x63\x61ll_context\x18\xc0\x01 \x01(\x0b\x32\x15.pg_query.CallContextH\x00R\x0b\x43\x61llContext\x12\x38\n\x0brename_stmt\x18\xc1\x01 \x01(\x0b\x32\x14.pg_query.RenameStmtH\x00R\nRenameStmt\x12^\n\x19\x61lter_object_depends_stmt\x18\xc2\x01 \x01(\x0b\x32 .pg_query.AlterObjectDependsStmtH\x00R\x16\x41lterObjectDependsStmt\x12[\n\x18\x61lter_object_schema_stmt\x18\xc3\x01 \x01(\x0b\x32\x1f.pg_query.AlterObjectSchemaStmtH\x00R\x15\x41lterObjectSchemaStmt\x12\x45\n\x10\x61lter_owner_stmt\x18\xc4\x01 \x01(\x0b\x32\x18.pg_query.AlterOwnerStmtH\x00R\x0e\x41lterOwnerStmt\x12N\n\x13\x61lter_operator_stmt\x18\xc5\x01 \x01(\x0b\x32\x1b.pg_query.AlterOperatorStmtH\x00R\x11\x41lterOperatorStmt\x12\x42\n\x0f\x61lter_type_stmt\x18\xc6\x01 \x01(\x0b\x32\x17.pg_query.AlterTypeStmtH\x00R\rAlterTypeStmt\x12\x32\n\trule_stmt\x18\xc7\x01 \x01(\x0b\x32\x12.pg_query.RuleStmtH\x00R\x08RuleStmt\x12\x38\n\x0bnotify_stmt\x18\xc8\x01 \x01(\x0b\x32\x14.pg_query.NotifyStmtH\x00R\nNotifyStmt\x12\x38\n\x0blisten_stmt\x18\xc9\x01 \x01(\x0b\x32\x14.pg_query.ListenStmtH\x00R\nListenStmt\x12>\n\runlisten_stmt\x18\xca\x01 \x01(\x0b\x32\x16.pg_query.UnlistenStmtH\x00R\x0cUnlistenStmt\x12G\n\x10transaction_stmt\x18\xcb\x01 \x01(\x0b\x32\x19.pg_query.TransactionStmtH\x00R\x0fTransactionStmt\x12N\n\x13\x63omposite_type_stmt\x18\xcc\x01 \x01(\x0b\x32\x1b.pg_query.CompositeTypeStmtH\x00R\x11\x43ompositeTypeStmt\x12\x45\n\x10\x63reate_enum_stmt\x18\xcd\x01 \x01(\x0b\x32\x18.pg_query.CreateEnumStmtH\x00R\x0e\x43reateEnumStmt\x12H\n\x11\x63reate_range_stmt\x18\xce\x01 \x01(\x0b\x32\x19.pg_query.CreateRangeStmtH\x00R\x0f\x43reateRangeStmt\x12\x42\n\x0f\x61lter_enum_stmt\x18\xcf\x01 \x01(\x0b\x32\x17.pg_query.AlterEnumStmtH\x00R\rAlterEnumStmt\x12\x32\n\tview_stmt\x18\xd0\x01 \x01(\x0b\x32\x12.pg_query.ViewStmtH\x00R\x08ViewStmt\x12\x32\n\tload_stmt\x18\xd1\x01 \x01(\x0b\x32\x12.pg_query.LoadStmtH\x00R\x08LoadStmt\x12>\n\rcreatedb_stmt\x18\xd2\x01 \x01(\x0b\x32\x16.pg_query.CreatedbStmtH\x00R\x0c\x43reatedbStmt\x12N\n\x13\x61lter_database_stmt\x18\xd3\x01 \x01(\x0b\x32\x1b.pg_query.AlterDatabaseStmtH\x00R\x11\x41lterDatabaseStmt\x12q\n alter_database_refresh_coll_stmt\x18\xd4\x01 \x01(\x0b\x32&.pg_query.AlterDatabaseRefreshCollStmtH\x00R\x1c\x41lterDatabaseRefreshCollStmt\x12X\n\x17\x61lter_database_set_stmt\x18\xd5\x01 \x01(\x0b\x32\x1e.pg_query.AlterDatabaseSetStmtH\x00R\x14\x41lterDatabaseSetStmt\x12\x38\n\x0b\x64ropdb_stmt\x18\xd6\x01 \x01(\x0b\x32\x14.pg_query.DropdbStmtH\x00R\nDropdbStmt\x12H\n\x11\x61lter_system_stmt\x18\xd7\x01 \x01(\x0b\x32\x19.pg_query.AlterSystemStmtH\x00R\x0f\x41lterSystemStmt\x12;\n\x0c\x63luster_stmt\x18\xd8\x01 \x01(\x0b\x32\x15.pg_query.ClusterStmtH\x00R\x0b\x43lusterStmt\x12\x38\n\x0bvacuum_stmt\x18\xd9\x01 \x01(\x0b\x32\x14.pg_query.VacuumStmtH\x00R\nVacuumStmt\x12\x44\n\x0fvacuum_relation\x18\xda\x01 \x01(\x0b\x32\x18.pg_query.VacuumRelationH\x00R\x0eVacuumRelation\x12;\n\x0c\x65xplain_stmt\x18\xdb\x01 \x01(\x0b\x32\x15.pg_query.ExplainStmtH\x00R\x0b\x45xplainStmt\x12O\n\x14\x63reate_table_as_stmt\x18\xdc\x01 \x01(\x0b\x32\x1b.pg_query.CreateTableAsStmtH\x00R\x11\x43reateTableAsStmt\x12R\n\x15refresh_mat_view_stmt\x18\xdd\x01 \x01(\x0b\x32\x1c.pg_query.RefreshMatViewStmtH\x00R\x12RefreshMatViewStmt\x12\x45\n\x10\x63heck_point_stmt\x18\xde\x01 \x01(\x0b\x32\x18.pg_query.CheckPointStmtH\x00R\x0e\x43heckPointStmt\x12;\n\x0c\x64iscard_stmt\x18\xdf\x01 \x01(\x0b\x32\x15.pg_query.DiscardStmtH\x00R\x0b\x44iscardStmt\x12\x32\n\tlock_stmt\x18\xe0\x01 \x01(\x0b\x32\x12.pg_query.LockStmtH\x00R\x08LockStmt\x12Q\n\x14\x63onstraints_set_stmt\x18\xe1\x01 \x01(\x0b\x32\x1c.pg_query.ConstraintsSetStmtH\x00R\x12\x43onstraintsSetStmt\x12;\n\x0creindex_stmt\x18\xe2\x01 \x01(\x0b\x32\x15.pg_query.ReindexStmtH\x00R\x0bReindexStmt\x12W\n\x16\x63reate_conversion_stmt\x18\xe3\x01 \x01(\x0b\x32\x1e.pg_query.CreateConversionStmtH\x00R\x14\x43reateConversionStmt\x12\x45\n\x10\x63reate_cast_stmt\x18\xe4\x01 \x01(\x0b\x32\x18.pg_query.CreateCastStmtH\x00R\x0e\x43reateCastStmt\x12T\n\x15\x63reate_transform_stmt\x18\xe5\x01 \x01(\x0b\x32\x1d.pg_query.CreateTransformStmtH\x00R\x13\x43reateTransformStmt\x12;\n\x0cprepare_stmt\x18\xe6\x01 \x01(\x0b\x32\x15.pg_query.PrepareStmtH\x00R\x0bPrepareStmt\x12;\n\x0c\x65xecute_stmt\x18\xe7\x01 \x01(\x0b\x32\x15.pg_query.ExecuteStmtH\x00R\x0b\x45xecuteStmt\x12\x44\n\x0f\x64\x65\x61llocate_stmt\x18\xe8\x01 \x01(\x0b\x32\x18.pg_query.DeallocateStmtH\x00R\x0e\x44\x65\x61llocateStmt\x12\x42\n\x0f\x64rop_owned_stmt\x18\xe9\x01 \x01(\x0b\x32\x17.pg_query.DropOwnedStmtH\x00R\rDropOwnedStmt\x12N\n\x13reassign_owned_stmt\x18\xea\x01 \x01(\x0b\x32\x1b.pg_query.ReassignOwnedStmtH\x00R\x11ReassignOwnedStmt\x12Z\n\x17\x61lter_tsdictionary_stmt\x18\xeb\x01 \x01(\x0b\x32\x1f.pg_query.AlterTSDictionaryStmtH\x00R\x15\x41lterTSDictionaryStmt\x12\x63\n\x1a\x61lter_tsconfiguration_stmt\x18\xec\x01 \x01(\x0b\x32\".pg_query.AlterTSConfigurationStmtH\x00R\x18\x41lterTSConfigurationStmt\x12J\n\x11publication_table\x18\xed\x01 \x01(\x0b\x32\x1a.pg_query.PublicationTableH\x00R\x10PublicationTable\x12Q\n\x14publication_obj_spec\x18\xee\x01 \x01(\x0b\x32\x1c.pg_query.PublicationObjSpecH\x00R\x12PublicationObjSpec\x12Z\n\x17\x63reate_publication_stmt\x18\xef\x01 \x01(\x0b\x32\x1f.pg_query.CreatePublicationStmtH\x00R\x15\x43reatePublicationStmt\x12W\n\x16\x61lter_publication_stmt\x18\xf0\x01 \x01(\x0b\x32\x1e.pg_query.AlterPublicationStmtH\x00R\x14\x41lterPublicationStmt\x12]\n\x18\x63reate_subscription_stmt\x18\xf1\x01 \x01(\x0b\x32 .pg_query.CreateSubscriptionStmtH\x00R\x16\x43reateSubscriptionStmt\x12Z\n\x17\x61lter_subscription_stmt\x18\xf2\x01 \x01(\x0b\x32\x1f.pg_query.AlterSubscriptionStmtH\x00R\x15\x41lterSubscriptionStmt\x12W\n\x16\x64rop_subscription_stmt\x18\xf3\x01 \x01(\x0b\x32\x1e.pg_query.DropSubscriptionStmtH\x00R\x14\x44ropSubscriptionStmt\x12.\n\x07integer\x18\xf4\x01 \x01(\x0b\x32\x11.pg_query.IntegerH\x00R\x07Integer\x12(\n\x05\x66loat\x18\xf5\x01 \x01(\x0b\x32\x0f.pg_query.FloatH\x00R\x05\x46loat\x12.\n\x07\x62oolean\x18\xf6\x01 \x01(\x0b\x32\x11.pg_query.BooleanH\x00R\x07\x42oolean\x12+\n\x06string\x18\xf7\x01 \x01(\x0b\x32\x10.pg_query.StringH\x00R\x06String\x12\x35\n\nbit_string\x18\xf8\x01 \x01(\x0b\x32\x13.pg_query.BitStringH\x00R\tBitString\x12%\n\x04list\x18\xf9\x01 \x01(\x0b\x32\x0e.pg_query.ListH\x00R\x04List\x12/\n\x08int_list\x18\xfa\x01 \x01(\x0b\x32\x11.pg_query.IntListH\x00R\x07IntList\x12/\n\x08oid_list\x18\xfb\x01 \x01(\x0b\x32\x11.pg_query.OidListH\x00R\x07OidList\x12.\n\x07\x61_const\x18\xfc\x01 \x01(\x0b\x32\x11.pg_query.A_ConstH\x00R\x07\x41_ConstB\x06\n\x04node\"\x17\n\x07Integer\x12\x0c\n\x04ival\x18\x01 \x01(\x05\"\x15\n\x05\x46loat\x12\x0c\n\x04\x66val\x18\x01 \x01(\t\"\x1a\n\x07\x42oolean\x12\x0f\n\x07\x62oolval\x18\x01 \x01(\x08\"\x16\n\x06String\x12\x0c\n\x04sval\x18\x01 \x01(\t\"\x1a\n\tBitString\x12\r\n\x05\x62sval\x18\x01 \x01(\t\"%\n\x04List\x12\x1d\n\x05items\x18\x01 \x03(\x0b\x32\x0e.pg_query.Node\"(\n\x07OidList\x12\x1d\n\x05items\x18\x01 \x03(\x0b\x32\x0e.pg_query.Node\"(\n\x07IntList\x12\x1d\n\x05items\x18\x01 \x03(\x0b\x32\x0e.pg_query.Node\"\xe4\x01\n\x07\x41_Const\x12!\n\x04ival\x18\x01 \x01(\x0b\x32\x11.pg_query.IntegerH\x00\x12\x1f\n\x04\x66val\x18\x02 \x01(\x0b\x32\x0f.pg_query.FloatH\x00\x12$\n\x07\x62oolval\x18\x03 \x01(\x0b\x32\x11.pg_query.BooleanH\x00\x12 \n\x04sval\x18\x04 \x01(\x0b\x32\x10.pg_query.StringH\x00\x12$\n\x05\x62sval\x18\x05 \x01(\x0b\x32\x13.pg_query.BitStringH\x00\x12\x0e\n\x06isnull\x18\n \x01(\x08\x12\x10\n\x08location\x18\x0b \x01(\x05\x42\x05\n\x03val\"Q\n\x05\x41lias\x12\x1c\n\taliasname\x18\x01 \x01(\tR\taliasname\x12*\n\x08\x63olnames\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x63olnames\"\xe3\x01\n\x08RangeVar\x12 \n\x0b\x63\x61talogname\x18\x01 \x01(\tR\x0b\x63\x61talogname\x12\x1e\n\nschemaname\x18\x02 \x01(\tR\nschemaname\x12\x18\n\x07relname\x18\x03 \x01(\tR\x07relname\x12\x10\n\x03inh\x18\x04 \x01(\x08R\x03inh\x12&\n\x0erelpersistence\x18\x05 \x01(\tR\x0erelpersistence\x12%\n\x05\x61lias\x18\x06 \x01(\x0b\x32\x0f.pg_query.AliasR\x05\x61lias\x12\x1a\n\x08location\x18\x07 \x01(\x05R\x08location\"\xaf\x04\n\tTableFunc\x12(\n\x07ns_uris\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x07ns_uris\x12*\n\x08ns_names\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x08ns_names\x12(\n\x07\x64ocexpr\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x07\x64ocexpr\x12(\n\x07rowexpr\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x07rowexpr\x12*\n\x08\x63olnames\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x63olnames\x12*\n\x08\x63oltypes\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x63oltypes\x12.\n\ncoltypmods\x18\x07 \x03(\x0b\x32\x0e.pg_query.NodeR\ncoltypmods\x12\x34\n\rcolcollations\x18\x08 \x03(\x0b\x32\x0e.pg_query.NodeR\rcolcollations\x12*\n\x08\x63olexprs\x18\t \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x63olexprs\x12\x30\n\x0b\x63oldefexprs\x18\n \x03(\x0b\x32\x0e.pg_query.NodeR\x0b\x63oldefexprs\x12\x1a\n\x08notnulls\x18\x0b \x03(\x04R\x08notnulls\x12$\n\rordinalitycol\x18\x0c \x01(\x05R\rordinalitycol\x12\x1a\n\x08location\x18\r \x01(\x05R\x08location\"\xdb\x02\n\nIntoClause\x12$\n\x03rel\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x03rel\x12+\n\tcol_names\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x63olNames\x12#\n\raccess_method\x18\x03 \x01(\tR\x0c\x61\x63\x63\x65ssMethod\x12(\n\x07options\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12\x35\n\ton_commit\x18\x05 \x01(\x0e\x32\x18.pg_query.OnCommitActionR\x08onCommit\x12(\n\x10table_space_name\x18\x06 \x01(\tR\x0etableSpaceName\x12-\n\nview_query\x18\x07 \x01(\x0b\x32\x0e.pg_query.NodeR\tviewQuery\x12\x1b\n\tskip_data\x18\x08 \x01(\x08R\x08skipData\"\x95\x02\n\x03Var\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x14\n\x05varno\x18\x02 \x01(\x05R\x05varno\x12\x1a\n\x08varattno\x18\x03 \x01(\x05R\x08varattno\x12\x18\n\x07vartype\x18\x04 \x01(\rR\x07vartype\x12\x1c\n\tvartypmod\x18\x05 \x01(\x05R\tvartypmod\x12\x1c\n\tvarcollid\x18\x06 \x01(\rR\tvarcollid\x12&\n\x0evarnullingrels\x18\x07 \x03(\x04R\x0evarnullingrels\x12 \n\x0bvarlevelsup\x18\x08 \x01(\rR\x0bvarlevelsup\x12\x1a\n\x08location\x18\t \x01(\x05R\x08location\"\xf4\x01\n\x05Param\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x31\n\tparamkind\x18\x02 \x01(\x0e\x32\x13.pg_query.ParamKindR\tparamkind\x12\x18\n\x07paramid\x18\x03 \x01(\x05R\x07paramid\x12\x1c\n\tparamtype\x18\x04 \x01(\rR\tparamtype\x12 \n\x0bparamtypmod\x18\x05 \x01(\x05R\x0bparamtypmod\x12 \n\x0bparamcollid\x18\x06 \x01(\rR\x0bparamcollid\x12\x1a\n\x08location\x18\x07 \x01(\x05R\x08location\"\xb2\x05\n\x06\x41ggref\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x1a\n\x08\x61ggfnoid\x18\x02 \x01(\rR\x08\x61ggfnoid\x12\x18\n\x07\x61ggtype\x18\x03 \x01(\rR\x07\x61ggtype\x12\x1c\n\taggcollid\x18\x04 \x01(\rR\taggcollid\x12 \n\x0binputcollid\x18\x05 \x01(\rR\x0binputcollid\x12\x30\n\x0b\x61ggargtypes\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x0b\x61ggargtypes\x12\x34\n\raggdirectargs\x18\x07 \x03(\x0b\x32\x0e.pg_query.NodeR\raggdirectargs\x12\"\n\x04\x61rgs\x18\x08 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12*\n\x08\x61ggorder\x18\t \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x61ggorder\x12\x30\n\x0b\x61ggdistinct\x18\n \x03(\x0b\x32\x0e.pg_query.NodeR\x0b\x61ggdistinct\x12,\n\taggfilter\x18\x0b \x01(\x0b\x32\x0e.pg_query.NodeR\taggfilter\x12\x18\n\x07\x61ggstar\x18\x0c \x01(\x08R\x07\x61ggstar\x12 \n\x0b\x61ggvariadic\x18\r \x01(\x08R\x0b\x61ggvariadic\x12\x18\n\x07\x61ggkind\x18\x0e \x01(\tR\x07\x61ggkind\x12 \n\x0b\x61gglevelsup\x18\x0f \x01(\rR\x0b\x61gglevelsup\x12.\n\x08\x61ggsplit\x18\x10 \x01(\x0e\x32\x12.pg_query.AggSplitR\x08\x61ggsplit\x12\x14\n\x05\x61ggno\x18\x11 \x01(\x05R\x05\x61ggno\x12\x1e\n\naggtransno\x18\x12 \x01(\x05R\naggtransno\x12\x1a\n\x08location\x18\x13 \x01(\x05R\x08location\"\xb6\x01\n\x0cGroupingFunc\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\"\n\x04\x61rgs\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\"\n\x04refs\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x04refs\x12 \n\x0b\x61gglevelsup\x18\x04 \x01(\rR\x0b\x61gglevelsup\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xdc\x02\n\nWindowFunc\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x1a\n\x08winfnoid\x18\x02 \x01(\rR\x08winfnoid\x12\x18\n\x07wintype\x18\x03 \x01(\rR\x07wintype\x12\x1c\n\twincollid\x18\x04 \x01(\rR\twincollid\x12 \n\x0binputcollid\x18\x05 \x01(\rR\x0binputcollid\x12\"\n\x04\x61rgs\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12,\n\taggfilter\x18\x07 \x01(\x0b\x32\x0e.pg_query.NodeR\taggfilter\x12\x16\n\x06winref\x18\x08 \x01(\rR\x06winref\x12\x18\n\x07winstar\x18\t \x01(\x08R\x07winstar\x12\x16\n\x06winagg\x18\n \x01(\x08R\x06winagg\x12\x1a\n\x08location\x18\x0b \x01(\x05R\x08location\"\xaf\x03\n\x0fSubscriptingRef\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12*\n\x10refcontainertype\x18\x02 \x01(\rR\x10refcontainertype\x12 \n\x0brefelemtype\x18\x03 \x01(\rR\x0brefelemtype\x12\x1e\n\nrefrestype\x18\x04 \x01(\rR\nrefrestype\x12\x1c\n\treftypmod\x18\x05 \x01(\x05R\treftypmod\x12\x1c\n\trefcollid\x18\x06 \x01(\rR\trefcollid\x12\x38\n\x0frefupperindexpr\x18\x07 \x03(\x0b\x32\x0e.pg_query.NodeR\x0frefupperindexpr\x12\x38\n\x0freflowerindexpr\x18\x08 \x03(\x0b\x32\x0e.pg_query.NodeR\x0freflowerindexpr\x12(\n\x07refexpr\x18\t \x01(\x0b\x32\x0e.pg_query.NodeR\x07refexpr\x12\x32\n\x0crefassgnexpr\x18\n \x01(\x0b\x32\x0e.pg_query.NodeR\x0crefassgnexpr\"\xea\x02\n\x08\x46uncExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x16\n\x06\x66uncid\x18\x02 \x01(\rR\x06\x66uncid\x12&\n\x0e\x66uncresulttype\x18\x03 \x01(\rR\x0e\x66uncresulttype\x12\x1e\n\nfuncretset\x18\x04 \x01(\x08R\nfuncretset\x12\"\n\x0c\x66uncvariadic\x18\x05 \x01(\x08R\x0c\x66uncvariadic\x12\x36\n\nfuncformat\x18\x06 \x01(\x0e\x32\x16.pg_query.CoercionFormR\nfuncformat\x12\x1e\n\nfunccollid\x18\x07 \x01(\rR\nfunccollid\x12 \n\x0binputcollid\x18\x08 \x01(\rR\x0binputcollid\x12\"\n\x04\x61rgs\x18\t \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\x1a\n\x08location\x18\n \x01(\x05R\x08location\"\xa0\x01\n\x0cNamedArgExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12 \n\x03\x61rg\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\x12\x1c\n\targnumber\x18\x04 \x01(\x05R\targnumber\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xfc\x01\n\x06OpExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x12\n\x04opno\x18\x02 \x01(\rR\x04opno\x12\"\n\x0copresulttype\x18\x03 \x01(\rR\x0copresulttype\x12\x1a\n\x08opretset\x18\x04 \x01(\x08R\x08opretset\x12\x1a\n\x08opcollid\x18\x05 \x01(\rR\x08opcollid\x12 \n\x0binputcollid\x18\x06 \x01(\rR\x0binputcollid\x12\"\n\x04\x61rgs\x18\x07 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\x1a\n\x08location\x18\x08 \x01(\x05R\x08location\"\x82\x02\n\x0c\x44istinctExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x12\n\x04opno\x18\x02 \x01(\rR\x04opno\x12\"\n\x0copresulttype\x18\x03 \x01(\rR\x0copresulttype\x12\x1a\n\x08opretset\x18\x04 \x01(\x08R\x08opretset\x12\x1a\n\x08opcollid\x18\x05 \x01(\rR\x08opcollid\x12 \n\x0binputcollid\x18\x06 \x01(\rR\x0binputcollid\x12\"\n\x04\x61rgs\x18\x07 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\x1a\n\x08location\x18\x08 \x01(\x05R\x08location\"\x80\x02\n\nNullIfExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x12\n\x04opno\x18\x02 \x01(\rR\x04opno\x12\"\n\x0copresulttype\x18\x03 \x01(\rR\x0copresulttype\x12\x1a\n\x08opretset\x18\x04 \x01(\x08R\x08opretset\x12\x1a\n\x08opcollid\x18\x05 \x01(\rR\x08opcollid\x12 \n\x0binputcollid\x18\x06 \x01(\rR\x0binputcollid\x12\"\n\x04\x61rgs\x18\x07 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\x1a\n\x08location\x18\x08 \x01(\x05R\x08location\"\xc2\x01\n\x11ScalarArrayOpExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x12\n\x04opno\x18\x02 \x01(\rR\x04opno\x12\x15\n\x06use_or\x18\x03 \x01(\x08R\x05useOr\x12 \n\x0binputcollid\x18\x04 \x01(\rR\x0binputcollid\x12\"\n\x04\x61rgs\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\x1a\n\x08location\x18\x06 \x01(\x05R\x08location\"\x9c\x01\n\x08\x42oolExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12.\n\x06\x62oolop\x18\x02 \x01(\x0e\x32\x16.pg_query.BoolExprTypeR\x06\x62oolop\x12\"\n\x04\x61rgs\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\x1a\n\x08location\x18\x04 \x01(\x05R\x08location\"\xa9\x02\n\x07SubLink\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x39\n\rsub_link_type\x18\x02 \x01(\x0e\x32\x15.pg_query.SubLinkTypeR\x0bsubLinkType\x12\x1e\n\x0bsub_link_id\x18\x03 \x01(\x05R\tsubLinkId\x12*\n\x08testexpr\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x08testexpr\x12+\n\toper_name\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x08operName\x12,\n\tsubselect\x18\x06 \x01(\x0b\x32\x0e.pg_query.NodeR\tsubselect\x12\x1a\n\x08location\x18\x07 \x01(\x05R\x08location\"\xb5\x05\n\x07SubPlan\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x39\n\rsub_link_type\x18\x02 \x01(\x0e\x32\x15.pg_query.SubLinkTypeR\x0bsubLinkType\x12*\n\x08testexpr\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x08testexpr\x12+\n\tparam_ids\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x08paramIds\x12\x18\n\x07plan_id\x18\x05 \x01(\x05R\x07plan_id\x12\x1c\n\tplan_name\x18\x06 \x01(\tR\tplan_name\x12$\n\x0e\x66irst_col_type\x18\x07 \x01(\rR\x0c\x66irstColType\x12(\n\x10\x66irst_col_typmod\x18\x08 \x01(\x05R\x0e\x66irstColTypmod\x12.\n\x13\x66irst_col_collation\x18\t \x01(\rR\x11\x66irstColCollation\x12$\n\x0euse_hash_table\x18\n \x01(\x08R\x0cuseHashTable\x12(\n\x10unknown_eq_false\x18\x0b \x01(\x08R\x0eunknownEqFalse\x12$\n\rparallel_safe\x18\x0c \x01(\x08R\rparallel_safe\x12+\n\tset_param\x18\r \x03(\x0b\x32\x0e.pg_query.NodeR\x08setParam\x12+\n\tpar_param\x18\x0e \x03(\x0b\x32\x0e.pg_query.NodeR\x08parParam\x12\"\n\x04\x61rgs\x18\x0f \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\"\n\x0cstartup_cost\x18\x10 \x01(\x01R\x0cstartup_cost\x12$\n\rper_call_cost\x18\x11 \x01(\x01R\rper_call_cost\"b\n\x12\x41lternativeSubPlan\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12*\n\x08subplans\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x08subplans\"\xd5\x01\n\x0b\x46ieldSelect\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12 \n\x03\x61rg\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12\x1a\n\x08\x66ieldnum\x18\x03 \x01(\x05R\x08\x66ieldnum\x12\x1e\n\nresulttype\x18\x04 \x01(\rR\nresulttype\x12\"\n\x0cresulttypmod\x18\x05 \x01(\x05R\x0cresulttypmod\x12\"\n\x0cresultcollid\x18\x06 \x01(\rR\x0cresultcollid\"\xc8\x01\n\nFieldStore\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12 \n\x03\x61rg\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12(\n\x07newvals\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x07newvals\x12,\n\tfieldnums\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\tfieldnums\x12\x1e\n\nresulttype\x18\x05 \x01(\rR\nresulttype\"\x93\x02\n\x0bRelabelType\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12 \n\x03\x61rg\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12\x1e\n\nresulttype\x18\x03 \x01(\rR\nresulttype\x12\"\n\x0cresulttypmod\x18\x04 \x01(\x05R\x0cresulttypmod\x12\"\n\x0cresultcollid\x18\x05 \x01(\rR\x0cresultcollid\x12<\n\rrelabelformat\x18\x06 \x01(\x0e\x32\x16.pg_query.CoercionFormR\rrelabelformat\x12\x1a\n\x08location\x18\x07 \x01(\x05R\x08location\"\xed\x01\n\x0b\x43oerceViaIO\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12 \n\x03\x61rg\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12\x1e\n\nresulttype\x18\x03 \x01(\rR\nresulttype\x12\"\n\x0cresultcollid\x18\x04 \x01(\rR\x0cresultcollid\x12:\n\x0c\x63oerceformat\x18\x05 \x01(\x0e\x32\x16.pg_query.CoercionFormR\x0c\x63oerceformat\x12\x1a\n\x08location\x18\x06 \x01(\x05R\x08location\"\xc1\x02\n\x0f\x41rrayCoerceExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12 \n\x03\x61rg\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12*\n\x08\x65lemexpr\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x08\x65lemexpr\x12\x1e\n\nresulttype\x18\x04 \x01(\rR\nresulttype\x12\"\n\x0cresulttypmod\x18\x05 \x01(\x05R\x0cresulttypmod\x12\"\n\x0cresultcollid\x18\x06 \x01(\rR\x0cresultcollid\x12:\n\x0c\x63oerceformat\x18\x07 \x01(\x0e\x32\x16.pg_query.CoercionFormR\x0c\x63oerceformat\x12\x1a\n\x08location\x18\x08 \x01(\x05R\x08location\"\xd2\x01\n\x12\x43onvertRowtypeExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12 \n\x03\x61rg\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12\x1e\n\nresulttype\x18\x03 \x01(\rR\nresulttype\x12<\n\rconvertformat\x18\x04 \x01(\x0e\x32\x16.pg_query.CoercionFormR\rconvertformat\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\x88\x01\n\x0b\x43ollateExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12 \n\x03\x61rg\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12\x19\n\x08\x63oll_oid\x18\x03 \x01(\rR\x07\x63ollOid\x12\x1a\n\x08location\x18\x04 \x01(\x05R\x08location\"\xf8\x01\n\x08\x43\x61seExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x1a\n\x08\x63\x61setype\x18\x02 \x01(\rR\x08\x63\x61setype\x12\x1e\n\ncasecollid\x18\x03 \x01(\rR\ncasecollid\x12 \n\x03\x61rg\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12\"\n\x04\x61rgs\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12,\n\tdefresult\x18\x06 \x01(\x0b\x32\x0e.pg_query.NodeR\tdefresult\x12\x1a\n\x08location\x18\x07 \x01(\x05R\x08location\"\x94\x01\n\x08\x43\x61seWhen\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\"\n\x04\x65xpr\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x04\x65xpr\x12&\n\x06result\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x06result\x12\x1a\n\x08location\x18\x04 \x01(\x05R\x08location\"\x82\x01\n\x0c\x43\x61seTestExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x17\n\x07type_id\x18\x02 \x01(\rR\x06typeId\x12\x19\n\x08type_mod\x18\x03 \x01(\x05R\x07typeMod\x12\x1c\n\tcollation\x18\x04 \x01(\rR\tcollation\"\x83\x02\n\tArrayExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\"\n\x0c\x61rray_typeid\x18\x02 \x01(\rR\x0c\x61rray_typeid\x12\"\n\x0c\x61rray_collid\x18\x03 \x01(\rR\x0c\x61rray_collid\x12&\n\x0e\x65lement_typeid\x18\x04 \x01(\rR\x0e\x65lement_typeid\x12*\n\x08\x65lements\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x65lements\x12\x1c\n\tmultidims\x18\x06 \x01(\x08R\tmultidims\x12\x1a\n\x08location\x18\x07 \x01(\x05R\x08location\"\xef\x01\n\x07RowExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\"\n\x04\x61rgs\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\x1e\n\nrow_typeid\x18\x03 \x01(\rR\nrow_typeid\x12\x36\n\nrow_format\x18\x04 \x01(\x0e\x32\x16.pg_query.CoercionFormR\nrow_format\x12*\n\x08\x63olnames\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x63olnames\x12\x1a\n\x08location\x18\x06 \x01(\x05R\x08location\"\xba\x02\n\x0eRowCompareExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x30\n\x06rctype\x18\x02 \x01(\x0e\x32\x18.pg_query.RowCompareTypeR\x06rctype\x12$\n\x05opnos\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x05opnos\x12.\n\nopfamilies\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\nopfamilies\x12\x32\n\x0cinputcollids\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x0cinputcollids\x12$\n\x05largs\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x05largs\x12$\n\x05rargs\x18\x07 \x03(\x0b\x32\x0e.pg_query.NodeR\x05rargs\"\xbc\x01\n\x0c\x43oalesceExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\"\n\x0c\x63oalescetype\x18\x02 \x01(\rR\x0c\x63oalescetype\x12&\n\x0e\x63oalescecollid\x18\x03 \x01(\rR\x0e\x63oalescecollid\x12\"\n\x04\x61rgs\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xf8\x01\n\nMinMaxExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x1e\n\nminmaxtype\x18\x02 \x01(\rR\nminmaxtype\x12\"\n\x0cminmaxcollid\x18\x03 \x01(\rR\x0cminmaxcollid\x12 \n\x0binputcollid\x18\x04 \x01(\rR\x0binputcollid\x12\"\n\x02op\x18\x05 \x01(\x0e\x32\x12.pg_query.MinMaxOpR\x02op\x12\"\n\x04\x61rgs\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\x1a\n\x08location\x18\x07 \x01(\x05R\x08location\"\xaa\x01\n\x10SQLValueFunction\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12,\n\x02op\x18\x02 \x01(\x0e\x32\x1c.pg_query.SQLValueFunctionOpR\x02op\x12\x12\n\x04type\x18\x03 \x01(\rR\x04type\x12\x16\n\x06typmod\x18\x04 \x01(\x05R\x06typmod\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xfd\x02\n\x07XmlExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12#\n\x02op\x18\x02 \x01(\x0e\x32\x13.pg_query.XmlExprOpR\x02op\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\x12.\n\nnamed_args\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\nnamed_args\x12,\n\targ_names\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\targ_names\x12\"\n\x04\x61rgs\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\x35\n\txmloption\x18\x07 \x01(\x0e\x32\x17.pg_query.XmlOptionTypeR\txmloption\x12\x16\n\x06indent\x18\x08 \x01(\x08R\x06indent\x12\x12\n\x04type\x18\t \x01(\rR\x04type\x12\x16\n\x06typmod\x18\n \x01(\x05R\x06typmod\x12\x1a\n\x08location\x18\x0b \x01(\x05R\x08location\"\x98\x01\n\nJsonFormat\x12:\n\x0b\x66ormat_type\x18\x01 \x01(\x0e\x32\x18.pg_query.JsonFormatTypeR\x0b\x66ormat_type\x12\x32\n\x08\x65ncoding\x18\x02 \x01(\x0e\x32\x16.pg_query.JsonEncodingR\x08\x65ncoding\x12\x1a\n\x08location\x18\x03 \x01(\x05R\x08location\"k\n\rJsonReturning\x12,\n\x06\x66ormat\x18\x01 \x01(\x0b\x32\x14.pg_query.JsonFormatR\x06\x66ormat\x12\x14\n\x05typid\x18\x02 \x01(\rR\x05typid\x12\x16\n\x06typmod\x18\x03 \x01(\x05R\x06typmod\"\xa1\x01\n\rJsonValueExpr\x12*\n\x08raw_expr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x08raw_expr\x12\x36\n\x0e\x66ormatted_expr\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x0e\x66ormatted_expr\x12,\n\x06\x66ormat\x18\x03 \x01(\x0b\x32\x14.pg_query.JsonFormatR\x06\x66ormat\"\xf1\x02\n\x13JsonConstructorExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x31\n\x04type\x18\x02 \x01(\x0e\x32\x1d.pg_query.JsonConstructorTypeR\x04type\x12\"\n\x04\x61rgs\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\"\n\x04\x66unc\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x04\x66unc\x12*\n\x08\x63oercion\x18\x05 \x01(\x0b\x32\x0e.pg_query.NodeR\x08\x63oercion\x12\x35\n\treturning\x18\x06 \x01(\x0b\x32\x17.pg_query.JsonReturningR\treturning\x12&\n\x0e\x61\x62sent_on_null\x18\x07 \x01(\x08R\x0e\x61\x62sent_on_null\x12\x16\n\x06unique\x18\x08 \x01(\x08R\x06unique\x12\x1a\n\x08location\x18\t \x01(\x05R\x08location\"\xd8\x01\n\x0fJsonIsPredicate\x12\"\n\x04\x65xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x04\x65xpr\x12,\n\x06\x66ormat\x18\x02 \x01(\x0b\x32\x14.pg_query.JsonFormatR\x06\x66ormat\x12\x35\n\titem_type\x18\x03 \x01(\x0e\x32\x17.pg_query.JsonValueTypeR\titem_type\x12 \n\x0bunique_keys\x18\x04 \x01(\x08R\x0bunique_keys\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xc2\x01\n\x08NullTest\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12 \n\x03\x61rg\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12:\n\x0cnulltesttype\x18\x03 \x01(\x0e\x32\x16.pg_query.NullTestTypeR\x0cnulltesttype\x12\x1a\n\x08\x61rgisrow\x18\x04 \x01(\x08R\x08\x61rgisrow\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xa9\x01\n\x0b\x42ooleanTest\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12 \n\x03\x61rg\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12:\n\x0c\x62ooltesttype\x18\x03 \x01(\x0e\x32\x16.pg_query.BoolTestTypeR\x0c\x62ooltesttype\x12\x1a\n\x08location\x18\x04 \x01(\x05R\x08location\"\x98\x02\n\x0e\x43oerceToDomain\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12 \n\x03\x61rg\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12\x1e\n\nresulttype\x18\x03 \x01(\rR\nresulttype\x12\"\n\x0cresulttypmod\x18\x04 \x01(\x05R\x0cresulttypmod\x12\"\n\x0cresultcollid\x18\x05 \x01(\rR\x0cresultcollid\x12>\n\x0e\x63oercionformat\x18\x06 \x01(\x0e\x32\x16.pg_query.CoercionFormR\x0e\x63oercionformat\x12\x1a\n\x08location\x18\x07 \x01(\x05R\x08location\"\xa5\x01\n\x13\x43oerceToDomainValue\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x17\n\x07type_id\x18\x02 \x01(\rR\x06typeId\x12\x19\n\x08type_mod\x18\x03 \x01(\x05R\x07typeMod\x12\x1c\n\tcollation\x18\x04 \x01(\rR\tcollation\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\x9e\x01\n\x0cSetToDefault\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x17\n\x07type_id\x18\x02 \x01(\rR\x06typeId\x12\x19\n\x08type_mod\x18\x03 \x01(\x05R\x07typeMod\x12\x1c\n\tcollation\x18\x04 \x01(\rR\tcollation\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\x8f\x01\n\rCurrentOfExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x16\n\x06\x63varno\x18\x02 \x01(\rR\x06\x63varno\x12 \n\x0b\x63ursor_name\x18\x03 \x01(\tR\x0b\x63ursor_name\x12\"\n\x0c\x63ursor_param\x18\x04 \x01(\x05R\x0c\x63ursor_param\"`\n\rNextValueExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x14\n\x05seqid\x18\x02 \x01(\rR\x05seqid\x12\x17\n\x07type_id\x18\x03 \x01(\rR\x06typeId\"\x9b\x01\n\rInferenceElem\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\"\n\x04\x65xpr\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x04\x65xpr\x12 \n\x0binfercollid\x18\x03 \x01(\rR\x0binfercollid\x12\"\n\x0cinferopclass\x18\x04 \x01(\rR\x0cinferopclass\"\x87\x02\n\x0bTargetEntry\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\"\n\x04\x65xpr\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x04\x65xpr\x12\x14\n\x05resno\x18\x03 \x01(\x05R\x05resno\x12\x18\n\x07resname\x18\x04 \x01(\tR\x07resname\x12(\n\x0fressortgroupref\x18\x05 \x01(\rR\x0fressortgroupref\x12\x1e\n\nresorigtbl\x18\x06 \x01(\rR\nresorigtbl\x12\x1e\n\nresorigcol\x18\x07 \x01(\x05R\nresorigcol\x12\x18\n\x07resjunk\x18\x08 \x01(\x08R\x07resjunk\"\'\n\x0bRangeTblRef\x12\x18\n\x07rtindex\x18\x01 \x01(\x05R\x07rtindex\"\xf8\x02\n\x08JoinExpr\x12.\n\x08jointype\x18\x01 \x01(\x0e\x32\x12.pg_query.JoinTypeR\x08jointype\x12\x1d\n\nis_natural\x18\x02 \x01(\x08R\tisNatural\x12\"\n\x04larg\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x04larg\x12\"\n\x04rarg\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x04rarg\x12\x31\n\x0cusing_clause\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x0busingClause\x12;\n\x10join_using_alias\x18\x06 \x01(\x0b\x32\x0f.pg_query.AliasR\x10join_using_alias\x12$\n\x05quals\x18\x07 \x01(\x0b\x32\x0e.pg_query.NodeR\x05quals\x12%\n\x05\x61lias\x18\x08 \x01(\x0b\x32\x0f.pg_query.AliasR\x05\x61lias\x12\x18\n\x07rtindex\x18\t \x01(\x05R\x07rtindex\"\\\n\x08\x46romExpr\x12*\n\x08\x66romlist\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x66romlist\x12$\n\x05quals\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x05quals\"\x9e\x03\n\x0eOnConflictExpr\x12\x32\n\x06\x61\x63tion\x18\x01 \x01(\x0e\x32\x1a.pg_query.OnConflictActionR\x06\x61\x63tion\x12\x33\n\rarbiter_elems\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x0c\x61rbiterElems\x12\x33\n\rarbiter_where\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x0c\x61rbiterWhere\x12\x1e\n\nconstraint\x18\x04 \x01(\rR\nconstraint\x12\x36\n\x0fon_conflict_set\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\ronConflictSet\x12:\n\x11on_conflict_where\x18\x06 \x01(\x0b\x32\x0e.pg_query.NodeR\x0fonConflictWhere\x12$\n\x0e\x65xcl_rel_index\x18\x07 \x01(\x05R\x0c\x65xclRelIndex\x12\x34\n\x0e\x65xcl_rel_tlist\x18\x08 \x03(\x0b\x32\x0e.pg_query.NodeR\x0c\x65xclRelTlist\"\x81\x0f\n\x05Query\x12\x34\n\x0c\x63ommand_type\x18\x01 \x01(\x0e\x32\x11.pg_query.CmdTypeR\x0b\x63ommandType\x12\x38\n\x0cquery_source\x18\x02 \x01(\x0e\x32\x15.pg_query.QuerySourceR\x0bquerySource\x12\x1e\n\x0b\x63\x61n_set_tag\x18\x03 \x01(\x08R\tcanSetTag\x12\x31\n\x0cutility_stmt\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x0butilityStmt\x12\'\n\x0fresult_relation\x18\x05 \x01(\x05R\x0eresultRelation\x12\x19\n\x08has_aggs\x18\x06 \x01(\x08R\x07hasAggs\x12(\n\x10has_window_funcs\x18\x07 \x01(\x08R\x0ehasWindowFuncs\x12&\n\x0fhas_target_srfs\x18\x08 \x01(\x08R\rhasTargetSRFs\x12\"\n\rhas_sub_links\x18\t \x01(\x08R\x0bhasSubLinks\x12&\n\x0fhas_distinct_on\x18\n \x01(\x08R\rhasDistinctOn\x12#\n\rhas_recursive\x18\x0b \x01(\x08R\x0chasRecursive\x12*\n\x11has_modifying_cte\x18\x0c \x01(\x08R\x0fhasModifyingCTE\x12$\n\x0ehas_for_update\x18\r \x01(\x08R\x0chasForUpdate\x12(\n\x10has_row_security\x18\x0e \x01(\x08R\x0ehasRowSecurity\x12\x1b\n\tis_return\x18\x0f \x01(\x08R\x08isReturn\x12)\n\x08\x63te_list\x18\x10 \x03(\x0b\x32\x0e.pg_query.NodeR\x07\x63teList\x12&\n\x06rtable\x18\x11 \x03(\x0b\x32\x0e.pg_query.NodeR\x06rtable\x12\x32\n\x0crteperminfos\x18\x12 \x03(\x0b\x32\x0e.pg_query.NodeR\x0crteperminfos\x12.\n\x08jointree\x18\x13 \x01(\x0b\x32\x12.pg_query.FromExprR\x08jointree\x12:\n\x11merge_action_list\x18\x14 \x03(\x0b\x32\x0e.pg_query.NodeR\x0fmergeActionList\x12/\n\x14merge_use_outer_join\x18\x15 \x01(\x08R\x11mergeUseOuterJoin\x12/\n\x0btarget_list\x18\x16 \x03(\x0b\x32\x0e.pg_query.NodeR\ntargetList\x12\x34\n\x08override\x18\x17 \x01(\x0e\x32\x18.pg_query.OverridingKindR\x08override\x12\x39\n\x0bon_conflict\x18\x18 \x01(\x0b\x32\x18.pg_query.OnConflictExprR\nonConflict\x12\x35\n\x0ereturning_list\x18\x19 \x03(\x0b\x32\x0e.pg_query.NodeR\rreturningList\x12\x31\n\x0cgroup_clause\x18\x1a \x03(\x0b\x32\x0e.pg_query.NodeR\x0bgroupClause\x12%\n\x0egroup_distinct\x18\x1b \x01(\x08R\rgroupDistinct\x12\x33\n\rgrouping_sets\x18\x1c \x03(\x0b\x32\x0e.pg_query.NodeR\x0cgroupingSets\x12/\n\x0bhaving_qual\x18\x1d \x01(\x0b\x32\x0e.pg_query.NodeR\nhavingQual\x12\x33\n\rwindow_clause\x18\x1e \x03(\x0b\x32\x0e.pg_query.NodeR\x0cwindowClause\x12\x37\n\x0f\x64istinct_clause\x18\x1f \x03(\x0b\x32\x0e.pg_query.NodeR\x0e\x64istinctClause\x12/\n\x0bsort_clause\x18 \x03(\x0b\x32\x0e.pg_query.NodeR\nsortClause\x12\x31\n\x0climit_offset\x18! \x01(\x0b\x32\x0e.pg_query.NodeR\x0blimitOffset\x12/\n\x0blimit_count\x18\" \x01(\x0b\x32\x0e.pg_query.NodeR\nlimitCount\x12\x38\n\x0climit_option\x18# \x01(\x0e\x32\x15.pg_query.LimitOptionR\x0blimitOption\x12+\n\trow_marks\x18$ \x03(\x0b\x32\x0e.pg_query.NodeR\x08rowMarks\x12\x35\n\x0eset_operations\x18% \x01(\x0b\x32\x0e.pg_query.NodeR\rsetOperations\x12\x37\n\x0f\x63onstraint_deps\x18& \x03(\x0b\x32\x0e.pg_query.NodeR\x0e\x63onstraintDeps\x12<\n\x12with_check_options\x18\' \x03(\x0b\x32\x0e.pg_query.NodeR\x10withCheckOptions\x12$\n\rstmt_location\x18( \x01(\x05R\rstmt_location\x12\x1a\n\x08stmt_len\x18) \x01(\x05R\x08stmt_len\"\x90\x02\n\x08TypeName\x12$\n\x05names\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x05names\x12\x19\n\x08type_oid\x18\x02 \x01(\rR\x07typeOid\x12\x14\n\x05setof\x18\x03 \x01(\x08R\x05setof\x12\x1a\n\x08pct_type\x18\x04 \x01(\x08R\x08pct_type\x12(\n\x07typmods\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x07typmods\x12\x18\n\x07typemod\x18\x06 \x01(\x05R\x07typemod\x12\x31\n\x0c\x61rray_bounds\x18\x07 \x03(\x0b\x32\x0e.pg_query.NodeR\x0b\x61rrayBounds\x12\x1a\n\x08location\x18\x08 \x01(\x05R\x08location\"O\n\tColumnRef\x12&\n\x06\x66ields\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x06\x66ields\x12\x1a\n\x08location\x18\x02 \x01(\x05R\x08location\">\n\x08ParamRef\x12\x16\n\x06number\x18\x01 \x01(\x05R\x06number\x12\x1a\n\x08location\x18\x02 \x01(\x05R\x08location\"\xbf\x01\n\x06\x41_Expr\x12)\n\x04kind\x18\x01 \x01(\x0e\x32\x15.pg_query.A_Expr_KindR\x04kind\x12\"\n\x04name\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x04name\x12$\n\x05lexpr\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x05lexpr\x12$\n\x05rexpr\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x05rexpr\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"y\n\x08TypeCast\x12 \n\x03\x61rg\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12/\n\ttype_name\x18\x02 \x01(\x0b\x32\x12.pg_query.TypeNameR\x08typeName\x12\x1a\n\x08location\x18\x03 \x01(\x05R\x08location\"y\n\rCollateClause\x12 \n\x03\x61rg\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12*\n\x08\x63ollname\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x63ollname\x12\x1a\n\x08location\x18\x03 \x01(\x05R\x08location\"v\n\x08RoleSpec\x12\x32\n\x08roletype\x18\x01 \x01(\x0e\x32\x16.pg_query.RoleSpecTypeR\x08roletype\x12\x1a\n\x08rolename\x18\x02 \x01(\tR\x08rolename\x12\x1a\n\x08location\x18\x03 \x01(\x05R\x08location\"\xc7\x03\n\x08\x46uncCall\x12*\n\x08\x66uncname\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x66uncname\x12\"\n\x04\x61rgs\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12,\n\tagg_order\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\tagg_order\x12.\n\nagg_filter\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\nagg_filter\x12\'\n\x04over\x18\x05 \x01(\x0b\x32\x13.pg_query.WindowDefR\x04over\x12*\n\x10\x61gg_within_group\x18\x06 \x01(\x08R\x10\x61gg_within_group\x12\x1a\n\x08\x61gg_star\x18\x07 \x01(\x08R\x08\x61gg_star\x12\"\n\x0c\x61gg_distinct\x18\x08 \x01(\x08R\x0c\x61gg_distinct\x12$\n\rfunc_variadic\x18\t \x01(\x08R\rfunc_variadic\x12\x36\n\nfuncformat\x18\n \x01(\x0e\x32\x16.pg_query.CoercionFormR\nfuncformat\x12\x1a\n\x08location\x18\x0b \x01(\x05R\x08location\"\x08\n\x06\x41_Star\"o\n\tA_Indices\x12\x1a\n\x08is_slice\x18\x01 \x01(\x08R\x08is_slice\x12\"\n\x04lidx\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x04lidx\x12\"\n\x04uidx\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x04uidx\"c\n\rA_Indirection\x12 \n\x03\x61rg\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12\x30\n\x0bindirection\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x0bindirection\"U\n\x0b\x41_ArrayExpr\x12*\n\x08\x65lements\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x65lements\x12\x1a\n\x08location\x18\x02 \x01(\x05R\x08location\"\x8f\x01\n\tResTarget\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x30\n\x0bindirection\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x0bindirection\x12 \n\x03val\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x03val\x12\x1a\n\x08location\x18\x04 \x01(\x05R\x08location\"j\n\x0eMultiAssignRef\x12&\n\x06source\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x06source\x12\x14\n\x05\x63olno\x18\x02 \x01(\x05R\x05\x63olno\x12\x1a\n\x08ncolumns\x18\x03 \x01(\x05R\x08ncolumns\"\xdf\x01\n\x06SortBy\x12\"\n\x04node\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x04node\x12\x33\n\nsortby_dir\x18\x02 \x01(\x0e\x32\x13.pg_query.SortByDirR\nsortby_dir\x12\x39\n\x0csortby_nulls\x18\x03 \x01(\x0e\x32\x15.pg_query.SortByNullsR\x0csortby_nulls\x12%\n\x06use_op\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x05useOp\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xca\x02\n\tWindowDef\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x18\n\x07refname\x18\x02 \x01(\tR\x07refname\x12\x39\n\x10partition_clause\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x0fpartitionClause\x12\x31\n\x0corder_clause\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x0borderClause\x12#\n\rframe_options\x18\x05 \x01(\x05R\x0c\x66rameOptions\x12\x31\n\x0cstart_offset\x18\x06 \x01(\x0b\x32\x0e.pg_query.NodeR\x0bstartOffset\x12-\n\nend_offset\x18\x07 \x01(\x0b\x32\x0e.pg_query.NodeR\tendOffset\x12\x1a\n\x08location\x18\x08 \x01(\x05R\x08location\"}\n\x0eRangeSubselect\x12\x18\n\x07lateral\x18\x01 \x01(\x08R\x07lateral\x12*\n\x08subquery\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x08subquery\x12%\n\x05\x61lias\x18\x03 \x01(\x0b\x32\x0f.pg_query.AliasR\x05\x61lias\"\xf0\x01\n\rRangeFunction\x12\x18\n\x07lateral\x18\x01 \x01(\x08R\x07lateral\x12\x1e\n\nordinality\x18\x02 \x01(\x08R\nordinality\x12 \n\x0bis_rowsfrom\x18\x03 \x01(\x08R\x0bis_rowsfrom\x12,\n\tfunctions\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\tfunctions\x12%\n\x05\x61lias\x18\x05 \x01(\x0b\x32\x0f.pg_query.AliasR\x05\x61lias\x12.\n\ncoldeflist\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\ncoldeflist\"\x9b\x02\n\x0eRangeTableFunc\x12\x18\n\x07lateral\x18\x01 \x01(\x08R\x07lateral\x12(\n\x07\x64ocexpr\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x07\x64ocexpr\x12(\n\x07rowexpr\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x07rowexpr\x12.\n\nnamespaces\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\nnamespaces\x12(\n\x07\x63olumns\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x07\x63olumns\x12%\n\x05\x61lias\x18\x06 \x01(\x0b\x32\x0f.pg_query.AliasR\x05\x61lias\x12\x1a\n\x08location\x18\x07 \x01(\x05R\x08location\"\x9e\x02\n\x11RangeTableFuncCol\x12\x18\n\x07\x63olname\x18\x01 \x01(\tR\x07\x63olname\x12/\n\ttype_name\x18\x02 \x01(\x0b\x32\x12.pg_query.TypeNameR\x08typeName\x12&\n\x0e\x66or_ordinality\x18\x03 \x01(\x08R\x0e\x66or_ordinality\x12 \n\x0bis_not_null\x18\x04 \x01(\x08R\x0bis_not_null\x12(\n\x07\x63olexpr\x18\x05 \x01(\x0b\x32\x0e.pg_query.NodeR\x07\x63olexpr\x12.\n\ncoldefexpr\x18\x06 \x01(\x0b\x32\x0e.pg_query.NodeR\ncoldefexpr\x12\x1a\n\x08location\x18\x07 \x01(\x05R\x08location\"\xd6\x01\n\x10RangeTableSample\x12*\n\x08relation\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x08relation\x12&\n\x06method\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x06method\x12\"\n\x04\x61rgs\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12.\n\nrepeatable\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\nrepeatable\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xec\x05\n\tColumnDef\x12\x18\n\x07\x63olname\x18\x01 \x01(\tR\x07\x63olname\x12/\n\ttype_name\x18\x02 \x01(\x0b\x32\x12.pg_query.TypeNameR\x08typeName\x12 \n\x0b\x63ompression\x18\x03 \x01(\tR\x0b\x63ompression\x12\x1a\n\x08inhcount\x18\x04 \x01(\x05R\x08inhcount\x12\x1a\n\x08is_local\x18\x05 \x01(\x08R\x08is_local\x12 \n\x0bis_not_null\x18\x06 \x01(\x08R\x0bis_not_null\x12\"\n\x0cis_from_type\x18\x07 \x01(\x08R\x0cis_from_type\x12\x18\n\x07storage\x18\x08 \x01(\tR\x07storage\x12\"\n\x0cstorage_name\x18\t \x01(\tR\x0cstorage_name\x12\x30\n\x0braw_default\x18\n \x01(\x0b\x32\x0e.pg_query.NodeR\x0braw_default\x12\x36\n\x0e\x63ooked_default\x18\x0b \x01(\x0b\x32\x0e.pg_query.NodeR\x0e\x63ooked_default\x12\x1a\n\x08identity\x18\x0c \x01(\tR\x08identity\x12?\n\x11identity_sequence\x18\r \x01(\x0b\x32\x12.pg_query.RangeVarR\x10identitySequence\x12\x1c\n\tgenerated\x18\x0e \x01(\tR\tgenerated\x12\x38\n\x0b\x63oll_clause\x18\x0f \x01(\x0b\x32\x17.pg_query.CollateClauseR\ncollClause\x12\x19\n\x08\x63oll_oid\x18\x10 \x01(\rR\x07\x63ollOid\x12\x30\n\x0b\x63onstraints\x18\x11 \x03(\x0b\x32\x0e.pg_query.NodeR\x0b\x63onstraints\x12.\n\nfdwoptions\x18\x12 \x03(\x0b\x32\x0e.pg_query.NodeR\nfdwoptions\x12\x1a\n\x08location\x18\x13 \x01(\x05R\x08location\"~\n\x0fTableLikeClause\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12\x18\n\x07options\x18\x02 \x01(\rR\x07options\x12!\n\x0crelation_oid\x18\x03 \x01(\rR\x0brelationOid\"\xe1\x02\n\tIndexElem\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\"\n\x04\x65xpr\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x04\x65xpr\x12\"\n\x0cindexcolname\x18\x03 \x01(\tR\x0cindexcolname\x12,\n\tcollation\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\tcollation\x12(\n\x07opclass\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x07opclass\x12\x30\n\x0bopclassopts\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x0bopclassopts\x12/\n\x08ordering\x18\x07 \x01(\x0e\x32\x13.pg_query.SortByDirR\x08ordering\x12=\n\x0enulls_ordering\x18\x08 \x01(\x0e\x32\x15.pg_query.SortByNullsR\x0enulls_ordering\"\xbc\x01\n\x07\x44\x65\x66\x45lem\x12\"\n\x0c\x64\x65\x66namespace\x18\x01 \x01(\tR\x0c\x64\x65\x66namespace\x12\x18\n\x07\x64\x65\x66name\x18\x02 \x01(\tR\x07\x64\x65\x66name\x12 \n\x03\x61rg\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12\x35\n\tdefaction\x18\x04 \x01(\x0e\x32\x17.pg_query.DefElemActionR\tdefaction\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xb5\x01\n\rLockingClause\x12/\n\x0blocked_rels\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\nlockedRels\x12\x38\n\x08strength\x18\x02 \x01(\x0e\x32\x1c.pg_query.LockClauseStrengthR\x08strength\x12\x39\n\x0bwait_policy\x18\x03 \x01(\x0e\x32\x18.pg_query.LockWaitPolicyR\nwaitPolicy\"\xce\x01\n\x0cXmlSerialize\x12\x35\n\txmloption\x18\x01 \x01(\x0e\x32\x17.pg_query.XmlOptionTypeR\txmloption\x12\"\n\x04\x65xpr\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x04\x65xpr\x12/\n\ttype_name\x18\x03 \x01(\x0b\x32\x12.pg_query.TypeNameR\x08typeName\x12\x16\n\x06indent\x18\x04 \x01(\x08R\x06indent\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xbb\x01\n\rPartitionElem\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\"\n\x04\x65xpr\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x04\x65xpr\x12,\n\tcollation\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\tcollation\x12(\n\x07opclass\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x07opclass\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\x95\x01\n\rPartitionSpec\x12\x37\n\x08strategy\x18\x01 \x01(\x0e\x32\x1b.pg_query.PartitionStrategyR\x08strategy\x12/\n\x0bpart_params\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\npartParams\x12\x1a\n\x08location\x18\x03 \x01(\x05R\x08location\"\xb8\x02\n\x12PartitionBoundSpec\x12\x1a\n\x08strategy\x18\x01 \x01(\tR\x08strategy\x12\x1e\n\nis_default\x18\x02 \x01(\x08R\nis_default\x12\x18\n\x07modulus\x18\x03 \x01(\x05R\x07modulus\x12\x1c\n\tremainder\x18\x04 \x01(\x05R\tremainder\x12.\n\nlistdatums\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\nlistdatums\x12\x30\n\x0blowerdatums\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x0blowerdatums\x12\x30\n\x0bupperdatums\x18\x07 \x03(\x0b\x32\x0e.pg_query.NodeR\x0bupperdatums\x12\x1a\n\x08location\x18\x08 \x01(\x05R\x08location\"\x8e\x01\n\x13PartitionRangeDatum\x12\x35\n\x04kind\x18\x01 \x01(\x0e\x32!.pg_query.PartitionRangeDatumKindR\x04kind\x12$\n\x05value\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x05value\x12\x1a\n\x08location\x18\x03 \x01(\x05R\x08location\"\x8a\x01\n\x0cPartitionCmd\x12&\n\x04name\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x04name\x12\x32\n\x05\x62ound\x18\x02 \x01(\x0b\x32\x1c.pg_query.PartitionBoundSpecR\x05\x62ound\x12\x1e\n\nconcurrent\x18\x03 \x01(\x08R\nconcurrent\"\xb9\n\n\rRangeTblEntry\x12+\n\x07rtekind\x18\x01 \x01(\x0e\x32\x11.pg_query.RTEKindR\x07rtekind\x12\x14\n\x05relid\x18\x02 \x01(\rR\x05relid\x12\x18\n\x07relkind\x18\x03 \x01(\tR\x07relkind\x12 \n\x0brellockmode\x18\x04 \x01(\x05R\x0brellockmode\x12=\n\x0btablesample\x18\x05 \x01(\x0b\x32\x1b.pg_query.TableSampleClauseR\x0btablesample\x12$\n\rperminfoindex\x18\x06 \x01(\rR\rperminfoindex\x12+\n\x08subquery\x18\x07 \x01(\x0b\x32\x0f.pg_query.QueryR\x08subquery\x12*\n\x10security_barrier\x18\x08 \x01(\x08R\x10security_barrier\x12.\n\x08jointype\x18\t \x01(\x0e\x32\x12.pg_query.JoinTypeR\x08jointype\x12&\n\x0ejoinmergedcols\x18\n \x01(\x05R\x0ejoinmergedcols\x12\x34\n\rjoinaliasvars\x18\x0b \x03(\x0b\x32\x0e.pg_query.NodeR\rjoinaliasvars\x12\x32\n\x0cjoinleftcols\x18\x0c \x03(\x0b\x32\x0e.pg_query.NodeR\x0cjoinleftcols\x12\x34\n\rjoinrightcols\x18\r \x03(\x0b\x32\x0e.pg_query.NodeR\rjoinrightcols\x12;\n\x10join_using_alias\x18\x0e \x01(\x0b\x32\x0f.pg_query.AliasR\x10join_using_alias\x12,\n\tfunctions\x18\x0f \x03(\x0b\x32\x0e.pg_query.NodeR\tfunctions\x12&\n\x0e\x66uncordinality\x18\x10 \x01(\x08R\x0e\x66uncordinality\x12\x31\n\ttablefunc\x18\x11 \x01(\x0b\x32\x13.pg_query.TableFuncR\ttablefunc\x12\x32\n\x0cvalues_lists\x18\x12 \x03(\x0b\x32\x0e.pg_query.NodeR\x0cvalues_lists\x12\x18\n\x07\x63tename\x18\x13 \x01(\tR\x07\x63tename\x12 \n\x0b\x63televelsup\x18\x14 \x01(\rR\x0b\x63televelsup\x12&\n\x0eself_reference\x18\x15 \x01(\x08R\x0eself_reference\x12*\n\x08\x63oltypes\x18\x16 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x63oltypes\x12.\n\ncoltypmods\x18\x17 \x03(\x0b\x32\x0e.pg_query.NodeR\ncoltypmods\x12\x34\n\rcolcollations\x18\x18 \x03(\x0b\x32\x0e.pg_query.NodeR\rcolcollations\x12\x18\n\x07\x65nrname\x18\x19 \x01(\tR\x07\x65nrname\x12\x1c\n\tenrtuples\x18\x1a \x01(\x01R\tenrtuples\x12%\n\x05\x61lias\x18\x1b \x01(\x0b\x32\x0f.pg_query.AliasR\x05\x61lias\x12#\n\x04\x65ref\x18\x1c \x01(\x0b\x32\x0f.pg_query.AliasR\x04\x65ref\x12\x18\n\x07lateral\x18\x1d \x01(\x08R\x07lateral\x12\x10\n\x03inh\x18\x1e \x01(\x08R\x03inh\x12\x1c\n\nin_from_cl\x18\x1f \x01(\x08R\x08inFromCl\x12\x35\n\x0esecurity_quals\x18 \x03(\x0b\x32\x0e.pg_query.NodeR\rsecurityQuals\"\xf3\x01\n\x11RTEPermissionInfo\x12\x14\n\x05relid\x18\x01 \x01(\rR\x05relid\x12\x10\n\x03inh\x18\x02 \x01(\x08R\x03inh\x12%\n\x0erequired_perms\x18\x03 \x01(\x03R\rrequiredPerms\x12\"\n\rcheck_as_user\x18\x04 \x01(\rR\x0b\x63heckAsUser\x12#\n\rselected_cols\x18\x05 \x03(\x04R\x0cselectedCols\x12#\n\rinserted_cols\x18\x06 \x03(\x04R\x0cinsertedCols\x12!\n\x0cupdated_cols\x18\x07 \x03(\x04R\x0bupdatedCols\"\xe0\x02\n\x10RangeTblFunction\x12*\n\x08\x66uncexpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x08\x66uncexpr\x12\"\n\x0c\x66unccolcount\x18\x02 \x01(\x05R\x0c\x66unccolcount\x12\x32\n\x0c\x66unccolnames\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x0c\x66unccolnames\x12\x32\n\x0c\x66unccoltypes\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x0c\x66unccoltypes\x12\x36\n\x0e\x66unccoltypmods\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x0e\x66unccoltypmods\x12<\n\x11\x66unccolcollations\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x11\x66unccolcollations\x12\x1e\n\nfuncparams\x18\x07 \x03(\x04R\nfuncparams\"\x87\x01\n\x11TableSampleClause\x12\x1e\n\ntsmhandler\x18\x01 \x01(\rR\ntsmhandler\x12\"\n\x04\x61rgs\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12.\n\nrepeatable\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\nrepeatable\"\xac\x01\n\x0fWithCheckOption\x12%\n\x04kind\x18\x01 \x01(\x0e\x32\x11.pg_query.WCOKindR\x04kind\x12\x18\n\x07relname\x18\x02 \x01(\tR\x07relname\x12\x18\n\x07polname\x18\x03 \x01(\tR\x07polname\x12\"\n\x04qual\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x04qual\x12\x1a\n\x08\x63\x61scaded\x18\x05 \x01(\x08R\x08\x63\x61scaded\"\xa8\x01\n\x0fSortGroupClause\x12+\n\x12tle_sort_group_ref\x18\x01 \x01(\rR\x0ftleSortGroupRef\x12\x12\n\x04\x65qop\x18\x02 \x01(\rR\x04\x65qop\x12\x16\n\x06sortop\x18\x03 \x01(\rR\x06sortop\x12 \n\x0bnulls_first\x18\x04 \x01(\x08R\x0bnulls_first\x12\x1a\n\x08hashable\x18\x05 \x01(\x08R\x08hashable\"\x82\x01\n\x0bGroupingSet\x12-\n\x04kind\x18\x01 \x01(\x0e\x32\x19.pg_query.GroupingSetKindR\x04kind\x12(\n\x07\x63ontent\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07\x63ontent\x12\x1a\n\x08location\x18\x03 \x01(\x05R\x08location\"\xf2\x04\n\x0cWindowClause\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x18\n\x07refname\x18\x02 \x01(\tR\x07refname\x12\x39\n\x10partition_clause\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x0fpartitionClause\x12\x31\n\x0corder_clause\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x0borderClause\x12#\n\rframe_options\x18\x05 \x01(\x05R\x0c\x66rameOptions\x12\x31\n\x0cstart_offset\x18\x06 \x01(\x0b\x32\x0e.pg_query.NodeR\x0bstartOffset\x12-\n\nend_offset\x18\x07 \x01(\x0b\x32\x0e.pg_query.NodeR\tendOffset\x12\x33\n\rrun_condition\x18\x08 \x03(\x0b\x32\x0e.pg_query.NodeR\x0crunCondition\x12-\n\x13start_in_range_func\x18\t \x01(\rR\x10startInRangeFunc\x12)\n\x11\x65nd_in_range_func\x18\n \x01(\rR\x0e\x65ndInRangeFunc\x12\"\n\rin_range_coll\x18\x0b \x01(\rR\x0binRangeColl\x12 \n\x0cin_range_asc\x18\x0c \x01(\x08R\ninRangeAsc\x12/\n\x14in_range_nulls_first\x18\r \x01(\x08R\x11inRangeNullsFirst\x12\x16\n\x06winref\x18\x0e \x01(\rR\x06winref\x12!\n\x0c\x63opied_order\x18\x0f \x01(\x08R\x0b\x63opiedOrder\"\xb7\x01\n\rRowMarkClause\x12\x10\n\x03rti\x18\x01 \x01(\rR\x03rti\x12\x38\n\x08strength\x18\x02 \x01(\x0e\x32\x1c.pg_query.LockClauseStrengthR\x08strength\x12\x39\n\x0bwait_policy\x18\x03 \x01(\x0e\x32\x18.pg_query.LockWaitPolicyR\nwaitPolicy\x12\x1f\n\x0bpushed_down\x18\x04 \x01(\x08R\npushedDown\"j\n\nWithClause\x12\"\n\x04\x63tes\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x63tes\x12\x1c\n\trecursive\x18\x02 \x01(\x08R\trecursive\x12\x1a\n\x08location\x18\x03 \x01(\x05R\x08location\"\xa7\x01\n\x0bInferClause\x12/\n\x0bindex_elems\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\nindexElems\x12\x31\n\x0cwhere_clause\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x0bwhereClause\x12\x18\n\x07\x63onname\x18\x03 \x01(\tR\x07\x63onname\x12\x1a\n\x08location\x18\x04 \x01(\x05R\x08location\"\xf3\x01\n\x10OnConflictClause\x12\x32\n\x06\x61\x63tion\x18\x01 \x01(\x0e\x32\x1a.pg_query.OnConflictActionR\x06\x61\x63tion\x12+\n\x05infer\x18\x02 \x01(\x0b\x32\x15.pg_query.InferClauseR\x05infer\x12/\n\x0btarget_list\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\ntargetList\x12\x31\n\x0cwhere_clause\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x0bwhereClause\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xc9\x01\n\x0f\x43TESearchClause\x12\x38\n\x0fsearch_col_list\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x0fsearch_col_list\x12\x32\n\x14search_breadth_first\x18\x02 \x01(\x08R\x14search_breadth_first\x12,\n\x11search_seq_column\x18\x03 \x01(\tR\x11search_seq_column\x12\x1a\n\x08location\x18\x04 \x01(\x05R\x08location\"\xf2\x03\n\x0e\x43TECycleClause\x12\x36\n\x0e\x63ycle_col_list\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x0e\x63ycle_col_list\x12,\n\x11\x63ycle_mark_column\x18\x02 \x01(\tR\x11\x63ycle_mark_column\x12:\n\x10\x63ycle_mark_value\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x10\x63ycle_mark_value\x12>\n\x12\x63ycle_mark_default\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x12\x63ycle_mark_default\x12,\n\x11\x63ycle_path_column\x18\x05 \x01(\tR\x11\x63ycle_path_column\x12\x1a\n\x08location\x18\x06 \x01(\x05R\x08location\x12(\n\x0f\x63ycle_mark_type\x18\x07 \x01(\rR\x0f\x63ycle_mark_type\x12,\n\x11\x63ycle_mark_typmod\x18\x08 \x01(\x05R\x11\x63ycle_mark_typmod\x12\x32\n\x14\x63ycle_mark_collation\x18\t \x01(\rR\x14\x63ycle_mark_collation\x12(\n\x0f\x63ycle_mark_neop\x18\n \x01(\rR\x0f\x63ycle_mark_neop\"\x88\x05\n\x0f\x43ommonTableExpr\x12\x18\n\x07\x63tename\x18\x01 \x01(\tR\x07\x63tename\x12\x34\n\raliascolnames\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\raliascolnames\x12\x42\n\x0f\x63tematerialized\x18\x03 \x01(\x0e\x32\x18.pg_query.CTEMaterializeR\x0f\x63tematerialized\x12*\n\x08\x63tequery\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x08\x63tequery\x12?\n\rsearch_clause\x18\x05 \x01(\x0b\x32\x19.pg_query.CTESearchClauseR\rsearch_clause\x12<\n\x0c\x63ycle_clause\x18\x06 \x01(\x0b\x32\x18.pg_query.CTECycleClauseR\x0c\x63ycle_clause\x12\x1a\n\x08location\x18\x07 \x01(\x05R\x08location\x12\"\n\x0c\x63terecursive\x18\x08 \x01(\x08R\x0c\x63terecursive\x12 \n\x0b\x63terefcount\x18\t \x01(\x05R\x0b\x63terefcount\x12\x30\n\x0b\x63tecolnames\x18\n \x03(\x0b\x32\x0e.pg_query.NodeR\x0b\x63tecolnames\x12\x30\n\x0b\x63tecoltypes\x18\x0b \x03(\x0b\x32\x0e.pg_query.NodeR\x0b\x63tecoltypes\x12\x34\n\rctecoltypmods\x18\x0c \x03(\x0b\x32\x0e.pg_query.NodeR\rctecoltypmods\x12:\n\x10\x63tecolcollations\x18\r \x03(\x0b\x32\x0e.pg_query.NodeR\x10\x63tecolcollations\"\x9e\x02\n\x0fMergeWhenClause\x12\x18\n\x07matched\x18\x01 \x01(\x08R\x07matched\x12\x34\n\x0c\x63ommand_type\x18\x02 \x01(\x0e\x32\x11.pg_query.CmdTypeR\x0b\x63ommandType\x12\x34\n\x08override\x18\x03 \x01(\x0e\x32\x18.pg_query.OverridingKindR\x08override\x12,\n\tcondition\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\tcondition\x12/\n\x0btarget_list\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\ntargetList\x12&\n\x06values\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x06values\"\x9d\x02\n\x0bMergeAction\x12\x18\n\x07matched\x18\x01 \x01(\x08R\x07matched\x12\x34\n\x0c\x63ommand_type\x18\x02 \x01(\x0e\x32\x11.pg_query.CmdTypeR\x0b\x63ommandType\x12\x34\n\x08override\x18\x03 \x01(\x0e\x32\x18.pg_query.OverridingKindR\x08override\x12\"\n\x04qual\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x04qual\x12/\n\x0btarget_list\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\ntargetList\x12\x33\n\rupdate_colnos\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x0cupdateColnos\"Y\n\x11TriggerTransition\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x15\n\x06is_new\x18\x02 \x01(\x08R\x05isNew\x12\x19\n\x08is_table\x18\x03 \x01(\x08R\x07isTable\"t\n\nJsonOutput\x12/\n\ttype_name\x18\x01 \x01(\x0b\x32\x12.pg_query.TypeNameR\x08typeName\x12\x35\n\treturning\x18\x02 \x01(\x0b\x32\x17.pg_query.JsonReturningR\treturning\"_\n\x0cJsonKeyValue\x12 \n\x03key\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03key\x12-\n\x05value\x18\x02 \x01(\x0b\x32\x17.pg_query.JsonValueExprR\x05value\"\xc7\x01\n\x15JsonObjectConstructor\x12$\n\x05\x65xprs\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x05\x65xprs\x12,\n\x06output\x18\x02 \x01(\x0b\x32\x14.pg_query.JsonOutputR\x06output\x12&\n\x0e\x61\x62sent_on_null\x18\x03 \x01(\x08R\x0e\x61\x62sent_on_null\x12\x16\n\x06unique\x18\x04 \x01(\x08R\x06unique\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xae\x01\n\x14JsonArrayConstructor\x12$\n\x05\x65xprs\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x05\x65xprs\x12,\n\x06output\x18\x02 \x01(\x0b\x32\x14.pg_query.JsonOutputR\x06output\x12&\n\x0e\x61\x62sent_on_null\x18\x03 \x01(\x08R\x0e\x61\x62sent_on_null\x12\x1a\n\x08location\x18\x04 \x01(\x05R\x08location\"\xe1\x01\n\x19JsonArrayQueryConstructor\x12$\n\x05query\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x05query\x12,\n\x06output\x18\x02 \x01(\x0b\x32\x14.pg_query.JsonOutputR\x06output\x12,\n\x06\x66ormat\x18\x03 \x01(\x0b\x32\x14.pg_query.JsonFormatR\x06\x66ormat\x12&\n\x0e\x61\x62sent_on_null\x18\x04 \x01(\x08R\x0e\x61\x62sent_on_null\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xe5\x01\n\x12JsonAggConstructor\x12,\n\x06output\x18\x01 \x01(\x0b\x32\x14.pg_query.JsonOutputR\x06output\x12.\n\nagg_filter\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\nagg_filter\x12,\n\tagg_order\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\tagg_order\x12\'\n\x04over\x18\x04 \x01(\x0b\x32\x13.pg_query.WindowDefR\x04over\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xb9\x01\n\rJsonObjectAgg\x12>\n\x0b\x63onstructor\x18\x01 \x01(\x0b\x32\x1c.pg_query.JsonAggConstructorR\x0b\x63onstructor\x12(\n\x03\x61rg\x18\x02 \x01(\x0b\x32\x16.pg_query.JsonKeyValueR\x03\x61rg\x12&\n\x0e\x61\x62sent_on_null\x18\x03 \x01(\x08R\x0e\x61\x62sent_on_null\x12\x16\n\x06unique\x18\x04 \x01(\x08R\x06unique\"\xa1\x01\n\x0cJsonArrayAgg\x12>\n\x0b\x63onstructor\x18\x01 \x01(\x0b\x32\x1c.pg_query.JsonAggConstructorR\x0b\x63onstructor\x12)\n\x03\x61rg\x18\x02 \x01(\x0b\x32\x17.pg_query.JsonValueExprR\x03\x61rg\x12&\n\x0e\x61\x62sent_on_null\x18\x03 \x01(\x08R\x0e\x61\x62sent_on_null\"o\n\x07RawStmt\x12\"\n\x04stmt\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x04stmt\x12$\n\rstmt_location\x18\x02 \x01(\x05R\rstmt_location\x12\x1a\n\x08stmt_len\x18\x03 \x01(\x05R\x08stmt_len\"\xff\x02\n\nInsertStmt\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12\"\n\x04\x63ols\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x63ols\x12/\n\x0bselect_stmt\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\nselectStmt\x12H\n\x12on_conflict_clause\x18\x04 \x01(\x0b\x32\x1a.pg_query.OnConflictClauseR\x10onConflictClause\x12\x35\n\x0ereturning_list\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\rreturningList\x12\x35\n\x0bwith_clause\x18\x06 \x01(\x0b\x32\x14.pg_query.WithClauseR\nwithClause\x12\x34\n\x08override\x18\x07 \x01(\x0e\x32\x18.pg_query.OverridingKindR\x08override\"\x90\x02\n\nDeleteStmt\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12\x31\n\x0cusing_clause\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x0busingClause\x12\x31\n\x0cwhere_clause\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x0bwhereClause\x12\x35\n\x0ereturning_list\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\rreturningList\x12\x35\n\x0bwith_clause\x18\x05 \x01(\x0b\x32\x14.pg_query.WithClauseR\nwithClause\"\xbf\x02\n\nUpdateStmt\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12/\n\x0btarget_list\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\ntargetList\x12\x31\n\x0cwhere_clause\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x0bwhereClause\x12/\n\x0b\x66rom_clause\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\nfromClause\x12\x35\n\x0ereturning_list\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\rreturningList\x12\x35\n\x0bwith_clause\x18\x06 \x01(\x0b\x32\x14.pg_query.WithClauseR\nwithClause\"\xa0\x02\n\tMergeStmt\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12\x37\n\x0fsource_relation\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x0esourceRelation\x12\x35\n\x0ejoin_condition\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\rjoinCondition\x12<\n\x12merge_when_clauses\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x10mergeWhenClauses\x12\x35\n\x0bwith_clause\x18\x05 \x01(\x0b\x32\x14.pg_query.WithClauseR\nwithClause\"\xd3\x07\n\nSelectStmt\x12\x37\n\x0f\x64istinct_clause\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x0e\x64istinctClause\x12\x35\n\x0binto_clause\x18\x02 \x01(\x0b\x32\x14.pg_query.IntoClauseR\nintoClause\x12/\n\x0btarget_list\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\ntargetList\x12/\n\x0b\x66rom_clause\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\nfromClause\x12\x31\n\x0cwhere_clause\x18\x05 \x01(\x0b\x32\x0e.pg_query.NodeR\x0bwhereClause\x12\x31\n\x0cgroup_clause\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x0bgroupClause\x12%\n\x0egroup_distinct\x18\x07 \x01(\x08R\rgroupDistinct\x12\x33\n\rhaving_clause\x18\x08 \x01(\x0b\x32\x0e.pg_query.NodeR\x0chavingClause\x12\x33\n\rwindow_clause\x18\t \x03(\x0b\x32\x0e.pg_query.NodeR\x0cwindowClause\x12\x31\n\x0cvalues_lists\x18\n \x03(\x0b\x32\x0e.pg_query.NodeR\x0bvaluesLists\x12/\n\x0bsort_clause\x18\x0b \x03(\x0b\x32\x0e.pg_query.NodeR\nsortClause\x12\x31\n\x0climit_offset\x18\x0c \x01(\x0b\x32\x0e.pg_query.NodeR\x0blimitOffset\x12/\n\x0blimit_count\x18\r \x01(\x0b\x32\x0e.pg_query.NodeR\nlimitCount\x12\x38\n\x0climit_option\x18\x0e \x01(\x0e\x32\x15.pg_query.LimitOptionR\x0blimitOption\x12\x35\n\x0elocking_clause\x18\x0f \x03(\x0b\x32\x0e.pg_query.NodeR\rlockingClause\x12\x35\n\x0bwith_clause\x18\x10 \x01(\x0b\x32\x14.pg_query.WithClauseR\nwithClause\x12&\n\x02op\x18\x11 \x01(\x0e\x32\x16.pg_query.SetOperationR\x02op\x12\x10\n\x03\x61ll\x18\x12 \x01(\x08R\x03\x61ll\x12(\n\x04larg\x18\x13 \x01(\x0b\x32\x14.pg_query.SelectStmtR\x04larg\x12(\n\x04rarg\x18\x14 \x01(\x0b\x32\x14.pg_query.SelectStmtR\x04rarg\"\xde\x02\n\x10SetOperationStmt\x12&\n\x02op\x18\x01 \x01(\x0e\x32\x16.pg_query.SetOperationR\x02op\x12\x10\n\x03\x61ll\x18\x02 \x01(\x08R\x03\x61ll\x12\"\n\x04larg\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x04larg\x12\"\n\x04rarg\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x04rarg\x12+\n\tcol_types\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x63olTypes\x12/\n\x0b\x63ol_typmods\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\ncolTypmods\x12\x35\n\x0e\x63ol_collations\x18\x07 \x03(\x0b\x32\x0e.pg_query.NodeR\rcolCollations\x12\x33\n\rgroup_clauses\x18\x08 \x03(\x0b\x32\x0e.pg_query.NodeR\x0cgroupClauses\":\n\nReturnStmt\x12,\n\treturnval\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\treturnval\"\xb0\x01\n\x0cPLAssignStmt\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x30\n\x0bindirection\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x0bindirection\x12\x16\n\x06nnames\x18\x03 \x01(\x05R\x06nnames\x12&\n\x03val\x18\x04 \x01(\x0b\x32\x14.pg_query.SelectStmtR\x03val\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xb9\x01\n\x10\x43reateSchemaStmt\x12\x1e\n\nschemaname\x18\x01 \x01(\tR\nschemaname\x12.\n\x08\x61uthrole\x18\x02 \x01(\x0b\x32\x12.pg_query.RoleSpecR\x08\x61uthrole\x12/\n\x0bschema_elts\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\nschemaElts\x12$\n\rif_not_exists\x18\x04 \x01(\x08R\rif_not_exists\"\xb4\x01\n\x0e\x41lterTableStmt\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12\"\n\x04\x63mds\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x63mds\x12.\n\x07objtype\x18\x03 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\x07objtype\x12\x1e\n\nmissing_ok\x18\x04 \x01(\x08R\nmissing_ok\"O\n\x13ReplicaIdentityStmt\x12$\n\ridentity_type\x18\x01 \x01(\tR\ridentity_type\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\"\xa9\x02\n\rAlterTableCmd\x12\x32\n\x07subtype\x18\x01 \x01(\x0e\x32\x18.pg_query.AlterTableTypeR\x07subtype\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12\x10\n\x03num\x18\x03 \x01(\x05R\x03num\x12.\n\x08newowner\x18\x04 \x01(\x0b\x32\x12.pg_query.RoleSpecR\x08newowner\x12 \n\x03\x64\x65\x66\x18\x05 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x64\x65\x66\x12\x32\n\x08\x62\x65havior\x18\x06 \x01(\x0e\x32\x16.pg_query.DropBehaviorR\x08\x62\x65havior\x12\x1e\n\nmissing_ok\x18\x07 \x01(\x08R\nmissing_ok\x12\x18\n\x07recurse\x18\x08 \x01(\x08R\x07recurse\"@\n\x12\x41lterCollationStmt\x12*\n\x08\x63ollname\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x63ollname\"\xe2\x01\n\x0f\x41lterDomainStmt\x12\x18\n\x07subtype\x18\x01 \x01(\tR\x07subtype\x12+\n\ttype_name\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x08typeName\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\x12 \n\x03\x64\x65\x66\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x64\x65\x66\x12\x32\n\x08\x62\x65havior\x18\x05 \x01(\x0e\x32\x16.pg_query.DropBehaviorR\x08\x62\x65havior\x12\x1e\n\nmissing_ok\x18\x06 \x01(\x08R\nmissing_ok\"\x9a\x03\n\tGrantStmt\x12\x1a\n\x08is_grant\x18\x01 \x01(\x08R\x08is_grant\x12\x35\n\x08targtype\x18\x02 \x01(\x0e\x32\x19.pg_query.GrantTargetTypeR\x08targtype\x12.\n\x07objtype\x18\x03 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\x07objtype\x12(\n\x07objects\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x07objects\x12.\n\nprivileges\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\nprivileges\x12*\n\x08grantees\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x08grantees\x12\"\n\x0cgrant_option\x18\x07 \x01(\x08R\x0cgrant_option\x12,\n\x07grantor\x18\x08 \x01(\x0b\x32\x12.pg_query.RoleSpecR\x07grantor\x12\x32\n\x08\x62\x65havior\x18\t \x01(\x0e\x32\x16.pg_query.DropBehaviorR\x08\x62\x65havior\"\xc2\x01\n\x0eObjectWithArgs\x12(\n\x07objname\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x07objname\x12(\n\x07objargs\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07objargs\x12\x30\n\x0bobjfuncargs\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x0bobjfuncargs\x12*\n\x10\x61rgs_unspecified\x18\x04 \x01(\x08R\x10\x61rgs_unspecified\"N\n\nAccessPriv\x12\x1c\n\tpriv_name\x18\x01 \x01(\tR\tpriv_name\x12\"\n\x04\x63ols\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x63ols\"\x9b\x02\n\rGrantRoleStmt\x12\x34\n\rgranted_roles\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\rgranted_roles\x12\x34\n\rgrantee_roles\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\rgrantee_roles\x12\x1a\n\x08is_grant\x18\x03 \x01(\x08R\x08is_grant\x12 \n\x03opt\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x03opt\x12,\n\x07grantor\x18\x05 \x01(\x0b\x32\x12.pg_query.RoleSpecR\x07grantor\x12\x32\n\x08\x62\x65havior\x18\x06 \x01(\x0e\x32\x16.pg_query.DropBehaviorR\x08\x62\x65havior\"s\n\x1a\x41lterDefaultPrivilegesStmt\x12(\n\x07options\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12+\n\x06\x61\x63tion\x18\x02 \x01(\x0b\x32\x13.pg_query.GrantStmtR\x06\x61\x63tion\"\xbd\x02\n\x08\x43opyStmt\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12$\n\x05query\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x05query\x12(\n\x07\x61ttlist\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x07\x61ttlist\x12\x18\n\x07is_from\x18\x04 \x01(\x08R\x07is_from\x12\x1e\n\nis_program\x18\x05 \x01(\x08R\nis_program\x12\x1a\n\x08\x66ilename\x18\x06 \x01(\tR\x08\x66ilename\x12(\n\x07options\x18\x07 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12\x31\n\x0cwhere_clause\x18\x08 \x01(\x0b\x32\x0e.pg_query.NodeR\x0bwhereClause\"\x94\x01\n\x0fVariableSetStmt\x12-\n\x04kind\x18\x01 \x01(\x0e\x32\x19.pg_query.VariableSetKindR\x04kind\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12\"\n\x04\x61rgs\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\x1a\n\x08is_local\x18\x04 \x01(\x08R\x08is_local\"&\n\x10VariableShowStmt\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\"\xcb\x04\n\nCreateStmt\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12-\n\ntable_elts\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\ttableElts\x12\x33\n\rinh_relations\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x0cinhRelations\x12:\n\tpartbound\x18\x04 \x01(\x0b\x32\x1c.pg_query.PartitionBoundSpecR\tpartbound\x12\x33\n\x08partspec\x18\x05 \x01(\x0b\x32\x17.pg_query.PartitionSpecR\x08partspec\x12\x33\n\x0bof_typename\x18\x06 \x01(\x0b\x32\x12.pg_query.TypeNameR\nofTypename\x12\x30\n\x0b\x63onstraints\x18\x07 \x03(\x0b\x32\x0e.pg_query.NodeR\x0b\x63onstraints\x12(\n\x07options\x18\x08 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12\x34\n\x08oncommit\x18\t \x01(\x0e\x32\x18.pg_query.OnCommitActionR\x08oncommit\x12&\n\x0etablespacename\x18\n \x01(\tR\x0etablespacename\x12#\n\raccess_method\x18\x0b \x01(\tR\x0c\x61\x63\x63\x65ssMethod\x12$\n\rif_not_exists\x18\x0c \x01(\x08R\rif_not_exists\"\xde\t\n\nConstraint\x12.\n\x07\x63ontype\x18\x01 \x01(\x0e\x32\x14.pg_query.ConstrTypeR\x07\x63ontype\x12\x18\n\x07\x63onname\x18\x02 \x01(\tR\x07\x63onname\x12\x1e\n\ndeferrable\x18\x03 \x01(\x08R\ndeferrable\x12\"\n\x0cinitdeferred\x18\x04 \x01(\x08R\x0cinitdeferred\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\x12$\n\ris_no_inherit\x18\x06 \x01(\x08R\ris_no_inherit\x12*\n\x08raw_expr\x18\x07 \x01(\x0b\x32\x0e.pg_query.NodeR\x08raw_expr\x12 \n\x0b\x63ooked_expr\x18\x08 \x01(\tR\x0b\x63ooked_expr\x12&\n\x0egenerated_when\x18\t \x01(\tR\x0egenerated_when\x12.\n\x12nulls_not_distinct\x18\n \x01(\x08R\x12nulls_not_distinct\x12\"\n\x04keys\x18\x0b \x03(\x0b\x32\x0e.pg_query.NodeR\x04keys\x12,\n\tincluding\x18\x0c \x03(\x0b\x32\x0e.pg_query.NodeR\tincluding\x12.\n\nexclusions\x18\r \x03(\x0b\x32\x0e.pg_query.NodeR\nexclusions\x12(\n\x07options\x18\x0e \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12\x1c\n\tindexname\x18\x0f \x01(\tR\tindexname\x12\x1e\n\nindexspace\x18\x10 \x01(\tR\nindexspace\x12\x32\n\x14reset_default_tblspc\x18\x11 \x01(\x08R\x14reset_default_tblspc\x12$\n\raccess_method\x18\x12 \x01(\tR\raccess_method\x12\x32\n\x0cwhere_clause\x18\x13 \x01(\x0b\x32\x0e.pg_query.NodeR\x0cwhere_clause\x12,\n\x07pktable\x18\x14 \x01(\x0b\x32\x12.pg_query.RangeVarR\x07pktable\x12*\n\x08\x66k_attrs\x18\x15 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x66k_attrs\x12*\n\x08pk_attrs\x18\x16 \x03(\x0b\x32\x0e.pg_query.NodeR\x08pk_attrs\x12\"\n\x0c\x66k_matchtype\x18\x17 \x01(\tR\x0c\x66k_matchtype\x12$\n\rfk_upd_action\x18\x18 \x01(\tR\rfk_upd_action\x12$\n\rfk_del_action\x18\x19 \x01(\tR\rfk_del_action\x12\x38\n\x0f\x66k_del_set_cols\x18\x1a \x03(\x0b\x32\x0e.pg_query.NodeR\x0f\x66k_del_set_cols\x12\x34\n\rold_conpfeqop\x18\x1b \x03(\x0b\x32\x0e.pg_query.NodeR\rold_conpfeqop\x12(\n\x0fold_pktable_oid\x18\x1c \x01(\rR\x0fold_pktable_oid\x12(\n\x0fskip_validation\x18\x1d \x01(\x08R\x0fskip_validation\x12(\n\x0finitially_valid\x18\x1e \x01(\x08R\x0finitially_valid\"\xae\x01\n\x14\x43reateTableSpaceStmt\x12&\n\x0etablespacename\x18\x01 \x01(\tR\x0etablespacename\x12(\n\x05owner\x18\x02 \x01(\x0b\x32\x12.pg_query.RoleSpecR\x05owner\x12\x1a\n\x08location\x18\x03 \x01(\tR\x08location\x12(\n\x07options\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"\\\n\x12\x44ropTableSpaceStmt\x12&\n\x0etablespacename\x18\x01 \x01(\tR\x0etablespacename\x12\x1e\n\nmissing_ok\x18\x02 \x01(\x08R\nmissing_ok\"\x89\x01\n\x1a\x41lterTableSpaceOptionsStmt\x12&\n\x0etablespacename\x18\x01 \x01(\tR\x0etablespacename\x12(\n\x07options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12\x19\n\x08is_reset\x18\x03 \x01(\x08R\x07isReset\"\xe7\x01\n\x15\x41lterTableMoveAllStmt\x12\x30\n\x13orig_tablespacename\x18\x01 \x01(\tR\x13orig_tablespacename\x12.\n\x07objtype\x18\x02 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\x07objtype\x12$\n\x05roles\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x05roles\x12.\n\x12new_tablespacename\x18\x04 \x01(\tR\x12new_tablespacename\x12\x16\n\x06nowait\x18\x05 \x01(\x08R\x06nowait\"\x7f\n\x13\x43reateExtensionStmt\x12\x18\n\x07\x65xtname\x18\x01 \x01(\tR\x07\x65xtname\x12$\n\rif_not_exists\x18\x02 \x01(\x08R\rif_not_exists\x12(\n\x07options\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"X\n\x12\x41lterExtensionStmt\x12\x18\n\x07\x65xtname\x18\x01 \x01(\tR\x07\x65xtname\x12(\n\x07options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"\xa6\x01\n\x1a\x41lterExtensionContentsStmt\x12\x18\n\x07\x65xtname\x18\x01 \x01(\tR\x07\x65xtname\x12\x16\n\x06\x61\x63tion\x18\x02 \x01(\x05R\x06\x61\x63tion\x12.\n\x07objtype\x18\x03 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\x07objtype\x12&\n\x06object\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x06object\"\x87\x01\n\rCreateFdwStmt\x12\x18\n\x07\x66\x64wname\x18\x01 \x01(\tR\x07\x66\x64wname\x12\x32\n\x0c\x66unc_options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x0c\x66unc_options\x12(\n\x07options\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"\x86\x01\n\x0c\x41lterFdwStmt\x12\x18\n\x07\x66\x64wname\x18\x01 \x01(\tR\x07\x66\x64wname\x12\x32\n\x0c\x66unc_options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x0c\x66unc_options\x12(\n\x07options\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"\xdd\x01\n\x17\x43reateForeignServerStmt\x12\x1e\n\nservername\x18\x01 \x01(\tR\nservername\x12\x1e\n\nservertype\x18\x02 \x01(\tR\nservertype\x12\x18\n\x07version\x18\x03 \x01(\tR\x07version\x12\x18\n\x07\x66\x64wname\x18\x04 \x01(\tR\x07\x66\x64wname\x12$\n\rif_not_exists\x18\x05 \x01(\x08R\rif_not_exists\x12(\n\x07options\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"\x9e\x01\n\x16\x41lterForeignServerStmt\x12\x1e\n\nservername\x18\x01 \x01(\tR\nservername\x12\x18\n\x07version\x18\x02 \x01(\tR\x07version\x12(\n\x07options\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12 \n\x0bhas_version\x18\x04 \x01(\x08R\x0bhas_version\"\x91\x01\n\x16\x43reateForeignTableStmt\x12-\n\tbase_stmt\x18\x01 \x01(\x0b\x32\x14.pg_query.CreateStmtR\x04\x62\x61se\x12\x1e\n\nservername\x18\x02 \x01(\tR\nservername\x12(\n\x07options\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"\xaf\x01\n\x15\x43reateUserMappingStmt\x12&\n\x04user\x18\x01 \x01(\x0b\x32\x12.pg_query.RoleSpecR\x04user\x12\x1e\n\nservername\x18\x02 \x01(\tR\nservername\x12$\n\rif_not_exists\x18\x03 \x01(\x08R\rif_not_exists\x12(\n\x07options\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"\x88\x01\n\x14\x41lterUserMappingStmt\x12&\n\x04user\x18\x01 \x01(\x0b\x32\x12.pg_query.RoleSpecR\x04user\x12\x1e\n\nservername\x18\x02 \x01(\tR\nservername\x12(\n\x07options\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"}\n\x13\x44ropUserMappingStmt\x12&\n\x04user\x18\x01 \x01(\x0b\x32\x12.pg_query.RoleSpecR\x04user\x12\x1e\n\nservername\x18\x02 \x01(\tR\nservername\x12\x1e\n\nmissing_ok\x18\x03 \x01(\x08R\nmissing_ok\"\xa0\x02\n\x17ImportForeignSchemaStmt\x12 \n\x0bserver_name\x18\x01 \x01(\tR\x0bserver_name\x12$\n\rremote_schema\x18\x02 \x01(\tR\rremote_schema\x12\"\n\x0clocal_schema\x18\x03 \x01(\tR\x0clocal_schema\x12?\n\tlist_type\x18\x04 \x01(\x0e\x32!.pg_query.ImportForeignSchemaTypeR\tlist_type\x12.\n\ntable_list\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\ntable_list\x12(\n\x07options\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"\x94\x02\n\x10\x43reatePolicyStmt\x12 \n\x0bpolicy_name\x18\x01 \x01(\tR\x0bpolicy_name\x12(\n\x05table\x18\x02 \x01(\x0b\x32\x12.pg_query.RangeVarR\x05table\x12\x1a\n\x08\x63md_name\x18\x03 \x01(\tR\x08\x63md_name\x12\x1e\n\npermissive\x18\x04 \x01(\x08R\npermissive\x12$\n\x05roles\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x05roles\x12\"\n\x04qual\x18\x06 \x01(\x0b\x32\x0e.pg_query.NodeR\x04qual\x12.\n\nwith_check\x18\x07 \x01(\x0b\x32\x0e.pg_query.NodeR\nwith_check\"\xd7\x01\n\x0f\x41lterPolicyStmt\x12 \n\x0bpolicy_name\x18\x01 \x01(\tR\x0bpolicy_name\x12(\n\x05table\x18\x02 \x01(\x0b\x32\x12.pg_query.RangeVarR\x05table\x12$\n\x05roles\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x05roles\x12\"\n\x04qual\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x04qual\x12.\n\nwith_check\x18\x05 \x01(\x0b\x32\x0e.pg_query.NodeR\nwith_check\"r\n\x0c\x43reateAmStmt\x12\x16\n\x06\x61mname\x18\x01 \x01(\tR\x06\x61mname\x12\x32\n\x0chandler_name\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x0chandler_name\x12\x16\n\x06\x61mtype\x18\x03 \x01(\tR\x06\x61mtype\"\xb6\x04\n\x0e\x43reateTrigStmt\x12\x18\n\x07replace\x18\x01 \x01(\x08R\x07replace\x12\"\n\x0cisconstraint\x18\x02 \x01(\x08R\x0cisconstraint\x12\x1a\n\x08trigname\x18\x03 \x01(\tR\x08trigname\x12.\n\x08relation\x18\x04 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12*\n\x08\x66uncname\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x66uncname\x12\"\n\x04\x61rgs\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\x10\n\x03row\x18\x07 \x01(\x08R\x03row\x12\x16\n\x06timing\x18\x08 \x01(\x05R\x06timing\x12\x16\n\x06\x65vents\x18\t \x01(\x05R\x06\x65vents\x12(\n\x07\x63olumns\x18\n \x03(\x0b\x32\x0e.pg_query.NodeR\x07\x63olumns\x12/\n\x0bwhen_clause\x18\x0b \x01(\x0b\x32\x0e.pg_query.NodeR\nwhenClause\x12\x37\n\x0ftransition_rels\x18\x0c \x03(\x0b\x32\x0e.pg_query.NodeR\x0etransitionRels\x12\x1e\n\ndeferrable\x18\r \x01(\x08R\ndeferrable\x12\"\n\x0cinitdeferred\x18\x0e \x01(\x08R\x0cinitdeferred\x12\x30\n\tconstrrel\x18\x0f \x01(\x0b\x32\x12.pg_query.RangeVarR\tconstrrel\"\xab\x01\n\x13\x43reateEventTrigStmt\x12\x1a\n\x08trigname\x18\x01 \x01(\tR\x08trigname\x12\x1c\n\teventname\x18\x02 \x01(\tR\teventname\x12.\n\nwhenclause\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\nwhenclause\x12*\n\x08\x66uncname\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x66uncname\"N\n\x12\x41lterEventTrigStmt\x12\x1a\n\x08trigname\x18\x01 \x01(\tR\x08trigname\x12\x1c\n\ttgenabled\x18\x02 \x01(\tR\ttgenabled\"\xed\x01\n\x0f\x43reatePLangStmt\x12\x18\n\x07replace\x18\x01 \x01(\x08R\x07replace\x12\x16\n\x06plname\x18\x02 \x01(\tR\x06plname\x12,\n\tplhandler\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\tplhandler\x12*\n\x08plinline\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x08plinline\x12\x30\n\x0bplvalidator\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x0bplvalidator\x12\x1c\n\tpltrusted\x18\x06 \x01(\x08R\tpltrusted\"\x84\x01\n\x0e\x43reateRoleStmt\x12\x34\n\tstmt_type\x18\x01 \x01(\x0e\x32\x16.pg_query.RoleStmtTypeR\tstmt_type\x12\x12\n\x04role\x18\x02 \x01(\tR\x04role\x12(\n\x07options\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"y\n\rAlterRoleStmt\x12&\n\x04role\x18\x01 \x01(\x0b\x32\x12.pg_query.RoleSpecR\x04role\x12(\n\x07options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12\x16\n\x06\x61\x63tion\x18\x03 \x01(\x05R\x06\x61\x63tion\"\x8b\x01\n\x10\x41lterRoleSetStmt\x12&\n\x04role\x18\x01 \x01(\x0b\x32\x12.pg_query.RoleSpecR\x04role\x12\x1a\n\x08\x64\x61tabase\x18\x02 \x01(\tR\x08\x64\x61tabase\x12\x33\n\x07setstmt\x18\x03 \x01(\x0b\x32\x19.pg_query.VariableSetStmtR\x07setstmt\"T\n\x0c\x44ropRoleStmt\x12$\n\x05roles\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x05roles\x12\x1e\n\nmissing_ok\x18\x02 \x01(\x08R\nmissing_ok\"\xce\x01\n\rCreateSeqStmt\x12.\n\x08sequence\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08sequence\x12(\n\x07options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12\x19\n\x08owner_id\x18\x03 \x01(\rR\x07ownerId\x12\"\n\x0c\x66or_identity\x18\x04 \x01(\x08R\x0c\x66or_identity\x12$\n\rif_not_exists\x18\x05 \x01(\x08R\rif_not_exists\"\xac\x01\n\x0c\x41lterSeqStmt\x12.\n\x08sequence\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08sequence\x12(\n\x07options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12\"\n\x0c\x66or_identity\x18\x03 \x01(\x08R\x0c\x66or_identity\x12\x1e\n\nmissing_ok\x18\x04 \x01(\x08R\nmissing_ok\"\x92\x02\n\nDefineStmt\x12(\n\x04kind\x18\x01 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\x04kind\x12\x1a\n\x08oldstyle\x18\x02 \x01(\x08R\x08oldstyle\x12*\n\x08\x64\x65\x66names\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x64\x65\x66names\x12\"\n\x04\x61rgs\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12.\n\ndefinition\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\ndefinition\x12$\n\rif_not_exists\x18\x06 \x01(\x08R\rif_not_exists\x12\x18\n\x07replace\x18\x07 \x01(\x08R\x07replace\"\xdf\x01\n\x10\x43reateDomainStmt\x12.\n\ndomainname\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\ndomainname\x12/\n\ttype_name\x18\x02 \x01(\x0b\x32\x12.pg_query.TypeNameR\x08typeName\x12\x38\n\x0b\x63oll_clause\x18\x03 \x01(\x0b\x32\x17.pg_query.CollateClauseR\ncollClause\x12\x30\n\x0b\x63onstraints\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x0b\x63onstraints\"\x86\x02\n\x11\x43reateOpClassStmt\x12\x30\n\x0bopclassname\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x0bopclassname\x12\x32\n\x0copfamilyname\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x0copfamilyname\x12\x16\n\x06\x61mname\x18\x03 \x01(\tR\x06\x61mname\x12.\n\x08\x64\x61tatype\x18\x04 \x01(\x0b\x32\x12.pg_query.TypeNameR\x08\x64\x61tatype\x12$\n\x05items\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x05items\x12\x1d\n\nis_default\x18\x06 \x01(\x08R\tisDefault\"\x8d\x02\n\x11\x43reateOpClassItem\x12\x1a\n\x08itemtype\x18\x01 \x01(\x05R\x08itemtype\x12,\n\x04name\x18\x02 \x01(\x0b\x32\x18.pg_query.ObjectWithArgsR\x04name\x12\x16\n\x06number\x18\x03 \x01(\x05R\x06number\x12\x32\n\x0corder_family\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x0corder_family\x12.\n\nclass_args\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\nclass_args\x12\x32\n\nstoredtype\x18\x06 \x01(\x0b\x32\x12.pg_query.TypeNameR\nstoredtype\"`\n\x12\x43reateOpFamilyStmt\x12\x32\n\x0copfamilyname\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x0copfamilyname\x12\x16\n\x06\x61mname\x18\x02 \x01(\tR\x06\x61mname\"\x9e\x01\n\x11\x41lterOpFamilyStmt\x12\x32\n\x0copfamilyname\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x0copfamilyname\x12\x16\n\x06\x61mname\x18\x02 \x01(\tR\x06\x61mname\x12\x17\n\x07is_drop\x18\x03 \x01(\x08R\x06isDrop\x12$\n\x05items\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x05items\"\xdf\x01\n\x08\x44ropStmt\x12(\n\x07objects\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x07objects\x12\x35\n\x0bremove_type\x18\x02 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\nremoveType\x12\x32\n\x08\x62\x65havior\x18\x03 \x01(\x0e\x32\x16.pg_query.DropBehaviorR\x08\x62\x65havior\x12\x1e\n\nmissing_ok\x18\x04 \x01(\x08R\nmissing_ok\x12\x1e\n\nconcurrent\x18\x05 \x01(\x08R\nconcurrent\"\x94\x01\n\x0cTruncateStmt\x12,\n\trelations\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\trelations\x12\"\n\x0crestart_seqs\x18\x02 \x01(\x08R\x0crestart_seqs\x12\x32\n\x08\x62\x65havior\x18\x03 \x01(\x0e\x32\x16.pg_query.DropBehaviorR\x08\x62\x65havior\"\x7f\n\x0b\x43ommentStmt\x12.\n\x07objtype\x18\x01 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\x07objtype\x12&\n\x06object\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x06object\x12\x18\n\x07\x63omment\x18\x03 \x01(\tR\x07\x63omment\"\x98\x01\n\x0cSecLabelStmt\x12.\n\x07objtype\x18\x01 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\x07objtype\x12&\n\x06object\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x06object\x12\x1a\n\x08provider\x18\x03 \x01(\tR\x08provider\x12\x14\n\x05label\x18\x04 \x01(\tR\x05label\"s\n\x11\x44\x65\x63lareCursorStmt\x12\x1e\n\nportalname\x18\x01 \x01(\tR\nportalname\x12\x18\n\x07options\x18\x02 \x01(\x05R\x07options\x12$\n\x05query\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x05query\"1\n\x0f\x43losePortalStmt\x12\x1e\n\nportalname\x18\x01 \x01(\tR\nportalname\"\x96\x01\n\tFetchStmt\x12\x36\n\tdirection\x18\x01 \x01(\x0e\x32\x18.pg_query.FetchDirectionR\tdirection\x12\x19\n\x08how_many\x18\x02 \x01(\x03R\x07howMany\x12\x1e\n\nportalname\x18\x03 \x01(\tR\nportalname\x12\x16\n\x06ismove\x18\x04 \x01(\x08R\x06ismove\"\xdc\x07\n\tIndexStmt\x12\x18\n\x07idxname\x18\x01 \x01(\tR\x07idxname\x12.\n\x08relation\x18\x02 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12#\n\raccess_method\x18\x03 \x01(\tR\x0c\x61\x63\x63\x65ssMethod\x12\x1f\n\x0btable_space\x18\x04 \x01(\tR\ntableSpace\x12\x31\n\x0cindex_params\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x0bindexParams\x12\x44\n\x16index_including_params\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x14indexIncludingParams\x12(\n\x07options\x18\x07 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12\x31\n\x0cwhere_clause\x18\x08 \x01(\x0b\x32\x0e.pg_query.NodeR\x0bwhereClause\x12\x38\n\x10\x65xclude_op_names\x18\t \x03(\x0b\x32\x0e.pg_query.NodeR\x0e\x65xcludeOpNames\x12\x1e\n\nidxcomment\x18\n \x01(\tR\nidxcomment\x12\x1b\n\tindex_oid\x18\x0b \x01(\rR\x08indexOid\x12\x1d\n\nold_number\x18\x0c \x01(\rR\toldNumber\x12(\n\x10old_create_subid\x18\r \x01(\rR\x0eoldCreateSubid\x12\x43\n\x1eold_first_relfilelocator_subid\x18\x0e \x01(\rR\x1boldFirstRelfilelocatorSubid\x12\x16\n\x06unique\x18\x0f \x01(\x08R\x06unique\x12.\n\x12nulls_not_distinct\x18\x10 \x01(\x08R\x12nulls_not_distinct\x12\x18\n\x07primary\x18\x11 \x01(\x08R\x07primary\x12\"\n\x0cisconstraint\x18\x12 \x01(\x08R\x0cisconstraint\x12\x1e\n\ndeferrable\x18\x13 \x01(\x08R\ndeferrable\x12\"\n\x0cinitdeferred\x18\x14 \x01(\x08R\x0cinitdeferred\x12 \n\x0btransformed\x18\x15 \x01(\x08R\x0btransformed\x12\x1e\n\nconcurrent\x18\x16 \x01(\x08R\nconcurrent\x12$\n\rif_not_exists\x18\x17 \x01(\x08R\rif_not_exists\x12\x32\n\x14reset_default_tblspc\x18\x18 \x01(\x08R\x14reset_default_tblspc\"\xa9\x02\n\x0f\x43reateStatsStmt\x12*\n\x08\x64\x65\x66names\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x64\x65\x66names\x12.\n\nstat_types\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\nstat_types\x12$\n\x05\x65xprs\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x05\x65xprs\x12,\n\trelations\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\trelations\x12\x1e\n\nstxcomment\x18\x05 \x01(\tR\nstxcomment\x12 \n\x0btransformed\x18\x06 \x01(\x08R\x0btransformed\x12$\n\rif_not_exists\x18\x07 \x01(\x08R\rif_not_exists\"C\n\tStatsElem\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\"\n\x04\x65xpr\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x04\x65xpr\"\x82\x01\n\x0e\x41lterStatsStmt\x12*\n\x08\x64\x65\x66names\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x64\x65\x66names\x12$\n\rstxstattarget\x18\x02 \x01(\x05R\rstxstattarget\x12\x1e\n\nmissing_ok\x18\x03 \x01(\x08R\nmissing_ok\"\xb9\x02\n\x12\x43reateFunctionStmt\x12\"\n\x0cis_procedure\x18\x01 \x01(\x08R\x0cis_procedure\x12\x18\n\x07replace\x18\x02 \x01(\x08R\x07replace\x12*\n\x08\x66uncname\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x66uncname\x12.\n\nparameters\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\nparameters\x12\x33\n\x0breturn_type\x18\x05 \x01(\x0b\x32\x12.pg_query.TypeNameR\nreturnType\x12(\n\x07options\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12*\n\x08sql_body\x18\x07 \x01(\x0b\x32\x0e.pg_query.NodeR\x08sql_body\"\xb5\x01\n\x11\x46unctionParameter\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12-\n\x08\x61rg_type\x18\x02 \x01(\x0b\x32\x12.pg_query.TypeNameR\x07\x61rgType\x12\x33\n\x04mode\x18\x03 \x01(\x0e\x32\x1f.pg_query.FunctionParameterModeR\x04mode\x12(\n\x07\x64\x65\x66\x65xpr\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x07\x64\x65\x66\x65xpr\"\x9b\x01\n\x11\x41lterFunctionStmt\x12.\n\x07objtype\x18\x01 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\x07objtype\x12,\n\x04\x66unc\x18\x02 \x01(\x0b\x32\x18.pg_query.ObjectWithArgsR\x04\x66unc\x12(\n\x07\x61\x63tions\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x07\x61\x63tions\",\n\x06\x44oStmt\x12\"\n\x04\x61rgs\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\"\x8e\x01\n\x0fInlineCodeBlock\x12 \n\x0bsource_text\x18\x01 \x01(\tR\x0bsource_text\x12\x19\n\x08lang_oid\x18\x02 \x01(\rR\x07langOid\x12&\n\x0flang_is_trusted\x18\x03 \x01(\x08R\rlangIsTrusted\x12\x16\n\x06\x61tomic\x18\x04 \x01(\x08R\x06\x61tomic\"\x94\x01\n\x08\x43\x61llStmt\x12.\n\x08\x66unccall\x18\x01 \x01(\x0b\x32\x12.pg_query.FuncCallR\x08\x66unccall\x12.\n\x08\x66uncexpr\x18\x02 \x01(\x0b\x32\x12.pg_query.FuncExprR\x08\x66uncexpr\x12(\n\x07outargs\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x07outargs\"%\n\x0b\x43\x61llContext\x12\x16\n\x06\x61tomic\x18\x01 \x01(\x08R\x06\x61tomic\"\xde\x02\n\nRenameStmt\x12\x35\n\x0brename_type\x18\x01 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\nrenameType\x12\x39\n\rrelation_type\x18\x02 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\x0crelationType\x12.\n\x08relation\x18\x03 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12&\n\x06object\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x06object\x12\x18\n\x07subname\x18\x05 \x01(\tR\x07subname\x12\x18\n\x07newname\x18\x06 \x01(\tR\x07newname\x12\x32\n\x08\x62\x65havior\x18\x07 \x01(\x0e\x32\x16.pg_query.DropBehaviorR\x08\x62\x65havior\x12\x1e\n\nmissing_ok\x18\x08 \x01(\x08R\nmissing_ok\"\xeb\x01\n\x16\x41lterObjectDependsStmt\x12\x35\n\x0bobject_type\x18\x01 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\nobjectType\x12.\n\x08relation\x18\x02 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12&\n\x06object\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x06object\x12*\n\x07\x65xtname\x18\x04 \x01(\x0b\x32\x10.pg_query.StringR\x07\x65xtname\x12\x16\n\x06remove\x18\x05 \x01(\x08R\x06remove\"\xe4\x01\n\x15\x41lterObjectSchemaStmt\x12\x35\n\x0bobject_type\x18\x01 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\nobjectType\x12.\n\x08relation\x18\x02 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12&\n\x06object\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x06object\x12\x1c\n\tnewschema\x18\x04 \x01(\tR\tnewschema\x12\x1e\n\nmissing_ok\x18\x05 \x01(\x08R\nmissing_ok\"\xcf\x01\n\x0e\x41lterOwnerStmt\x12\x35\n\x0bobject_type\x18\x01 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\nobjectType\x12.\n\x08relation\x18\x02 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12&\n\x06object\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x06object\x12.\n\x08newowner\x18\x04 \x01(\x0b\x32\x12.pg_query.RoleSpecR\x08newowner\"s\n\x11\x41lterOperatorStmt\x12\x34\n\x08opername\x18\x01 \x01(\x0b\x32\x18.pg_query.ObjectWithArgsR\x08opername\x12(\n\x07options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"f\n\rAlterTypeStmt\x12+\n\ttype_name\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x08typeName\x12(\n\x07options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"\x90\x02\n\x08RuleStmt\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12\x1a\n\x08rulename\x18\x02 \x01(\tR\x08rulename\x12\x31\n\x0cwhere_clause\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x0bwhereClause\x12\'\n\x05\x65vent\x18\x04 \x01(\x0e\x32\x11.pg_query.CmdTypeR\x05\x65vent\x12\x18\n\x07instead\x18\x05 \x01(\x08R\x07instead\x12(\n\x07\x61\x63tions\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x07\x61\x63tions\x12\x18\n\x07replace\x18\x07 \x01(\x08R\x07replace\"L\n\nNotifyStmt\x12$\n\rconditionname\x18\x01 \x01(\tR\rconditionname\x12\x18\n\x07payload\x18\x02 \x01(\tR\x07payload\"2\n\nListenStmt\x12$\n\rconditionname\x18\x01 \x01(\tR\rconditionname\"4\n\x0cUnlistenStmt\x12$\n\rconditionname\x18\x01 \x01(\tR\rconditionname\"\xbe\x01\n\x0fTransactionStmt\x12\x31\n\x04kind\x18\x01 \x01(\x0e\x32\x1d.pg_query.TransactionStmtKindR\x04kind\x12(\n\x07options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12&\n\x0esavepoint_name\x18\x03 \x01(\tR\x0esavepoint_name\x12\x10\n\x03gid\x18\x04 \x01(\tR\x03gid\x12\x14\n\x05\x63hain\x18\x05 \x01(\x08R\x05\x63hain\"q\n\x11\x43ompositeTypeStmt\x12,\n\x07typevar\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x07typevar\x12.\n\ncoldeflist\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\ncoldeflist\"a\n\x0e\x43reateEnumStmt\x12+\n\ttype_name\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x08typeName\x12\"\n\x04vals\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x04vals\"f\n\x0f\x43reateRangeStmt\x12+\n\ttype_name\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x08typeName\x12&\n\x06params\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x06params\"\xf5\x01\n\rAlterEnumStmt\x12+\n\ttype_name\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x08typeName\x12\x17\n\x07old_val\x18\x02 \x01(\tR\x06oldVal\x12\x17\n\x07new_val\x18\x03 \x01(\tR\x06newVal\x12(\n\x10new_val_neighbor\x18\x04 \x01(\tR\x0enewValNeighbor\x12\'\n\x10new_val_is_after\x18\x05 \x01(\x08R\rnewValIsAfter\x12\x32\n\x16skip_if_new_val_exists\x18\x06 \x01(\x08R\x12skipIfNewValExists\"\x8d\x02\n\x08ViewStmt\x12&\n\x04view\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x04view\x12(\n\x07\x61liases\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07\x61liases\x12$\n\x05query\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x05query\x12\x18\n\x07replace\x18\x04 \x01(\x08R\x07replace\x12(\n\x07options\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12\x45\n\x11with_check_option\x18\x06 \x01(\x0e\x32\x19.pg_query.ViewCheckOptionR\x0fwithCheckOption\"&\n\x08LoadStmt\x12\x1a\n\x08\x66ilename\x18\x01 \x01(\tR\x08\x66ilename\"P\n\x0c\x43reatedbStmt\x12\x16\n\x06\x64\x62name\x18\x01 \x01(\tR\x06\x64\x62name\x12(\n\x07options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"U\n\x11\x41lterDatabaseStmt\x12\x16\n\x06\x64\x62name\x18\x01 \x01(\tR\x06\x64\x62name\x12(\n\x07options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"6\n\x1c\x41lterDatabaseRefreshCollStmt\x12\x16\n\x06\x64\x62name\x18\x01 \x01(\tR\x06\x64\x62name\"c\n\x14\x41lterDatabaseSetStmt\x12\x16\n\x06\x64\x62name\x18\x01 \x01(\tR\x06\x64\x62name\x12\x33\n\x07setstmt\x18\x02 \x01(\x0b\x32\x19.pg_query.VariableSetStmtR\x07setstmt\"n\n\nDropdbStmt\x12\x16\n\x06\x64\x62name\x18\x01 \x01(\tR\x06\x64\x62name\x12\x1e\n\nmissing_ok\x18\x02 \x01(\x08R\nmissing_ok\x12(\n\x07options\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"F\n\x0f\x41lterSystemStmt\x12\x33\n\x07setstmt\x18\x01 \x01(\x0b\x32\x19.pg_query.VariableSetStmtR\x07setstmt\"\x83\x01\n\x0b\x43lusterStmt\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12\x1c\n\tindexname\x18\x02 \x01(\tR\tindexname\x12&\n\x06params\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x06params\"~\n\nVacuumStmt\x12(\n\x07options\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12\"\n\x04rels\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x04rels\x12\"\n\x0cis_vacuumcmd\x18\x03 \x01(\x08R\x0cis_vacuumcmd\"|\n\x0eVacuumRelation\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12\x10\n\x03oid\x18\x02 \x01(\rR\x03oid\x12(\n\x07va_cols\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x07va_cols\"]\n\x0b\x45xplainStmt\x12$\n\x05query\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x05query\x12(\n\x07options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"\xe1\x01\n\x11\x43reateTableAsStmt\x12$\n\x05query\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x05query\x12(\n\x04into\x18\x02 \x01(\x0b\x32\x14.pg_query.IntoClauseR\x04into\x12.\n\x07objtype\x18\x03 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\x07objtype\x12&\n\x0eis_select_into\x18\x04 \x01(\x08R\x0eis_select_into\x12$\n\rif_not_exists\x18\x05 \x01(\x08R\rif_not_exists\"\x81\x01\n\x12RefreshMatViewStmt\x12\x1e\n\nconcurrent\x18\x01 \x01(\x08R\nconcurrent\x12\x1b\n\tskip_data\x18\x02 \x01(\x08R\x08skipData\x12.\n\x08relation\x18\x03 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\"\x10\n\x0e\x43heckPointStmt\"<\n\x0b\x44iscardStmt\x12-\n\x06target\x18\x01 \x01(\x0e\x32\x15.pg_query.DiscardModeR\x06target\"d\n\x08LockStmt\x12,\n\trelations\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\trelations\x12\x12\n\x04mode\x18\x02 \x01(\x05R\x04mode\x12\x16\n\x06nowait\x18\x03 \x01(\x08R\x06nowait\"b\n\x12\x43onstraintsSetStmt\x12\x30\n\x0b\x63onstraints\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x0b\x63onstraints\x12\x1a\n\x08\x64\x65\x66\x65rred\x18\x02 \x01(\x08R\x08\x64\x65\x66\x65rred\"\xaa\x01\n\x0bReindexStmt\x12/\n\x04kind\x18\x01 \x01(\x0e\x32\x1b.pg_query.ReindexObjectTypeR\x04kind\x12.\n\x08relation\x18\x02 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\x12&\n\x06params\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x06params\"\xea\x01\n\x14\x43reateConversionStmt\x12\x38\n\x0f\x63onversion_name\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x0f\x63onversion_name\x12,\n\x11\x66or_encoding_name\x18\x02 \x01(\tR\x11\x66or_encoding_name\x12*\n\x10to_encoding_name\x18\x03 \x01(\tR\x10to_encoding_name\x12,\n\tfunc_name\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\tfunc_name\x12\x10\n\x03\x64\x65\x66\x18\x05 \x01(\x08R\x03\x64\x65\x66\"\xf1\x01\n\x0e\x43reateCastStmt\x12\x32\n\nsourcetype\x18\x01 \x01(\x0b\x32\x12.pg_query.TypeNameR\nsourcetype\x12\x32\n\ntargettype\x18\x02 \x01(\x0b\x32\x12.pg_query.TypeNameR\ntargettype\x12,\n\x04\x66unc\x18\x03 \x01(\x0b\x32\x18.pg_query.ObjectWithArgsR\x04\x66unc\x12\x33\n\x07\x63ontext\x18\x04 \x01(\x0e\x32\x19.pg_query.CoercionContextR\x07\x63ontext\x12\x14\n\x05inout\x18\x05 \x01(\x08R\x05inout\"\xd9\x01\n\x13\x43reateTransformStmt\x12\x18\n\x07replace\x18\x01 \x01(\x08R\x07replace\x12\x30\n\ttype_name\x18\x02 \x01(\x0b\x32\x12.pg_query.TypeNameR\ttype_name\x12\x12\n\x04lang\x18\x03 \x01(\tR\x04lang\x12\x32\n\x07\x66romsql\x18\x04 \x01(\x0b\x32\x18.pg_query.ObjectWithArgsR\x07\x66romsql\x12.\n\x05tosql\x18\x05 \x01(\x0b\x32\x18.pg_query.ObjectWithArgsR\x05tosql\"s\n\x0bPrepareStmt\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12*\n\x08\x61rgtypes\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x61rgtypes\x12$\n\x05query\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x05query\"I\n\x0b\x45xecuteStmt\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12&\n\x06params\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x06params\"$\n\x0e\x44\x65\x61llocateStmt\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\"i\n\rDropOwnedStmt\x12$\n\x05roles\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x05roles\x12\x32\n\x08\x62\x65havior\x18\x02 \x01(\x0e\x32\x16.pg_query.DropBehaviorR\x08\x62\x65havior\"g\n\x11ReassignOwnedStmt\x12$\n\x05roles\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x05roles\x12,\n\x07newrole\x18\x02 \x01(\x0b\x32\x12.pg_query.RoleSpecR\x07newrole\"m\n\x15\x41lterTSDictionaryStmt\x12*\n\x08\x64ictname\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x64ictname\x12(\n\x07options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"\x9f\x02\n\x18\x41lterTSConfigurationStmt\x12/\n\x04kind\x18\x01 \x01(\x0e\x32\x1b.pg_query.AlterTSConfigTypeR\x04kind\x12(\n\x07\x63\x66gname\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07\x63\x66gname\x12,\n\ttokentype\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\ttokentype\x12$\n\x05\x64icts\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x05\x64icts\x12\x1a\n\x08override\x18\x05 \x01(\x08R\x08override\x12\x18\n\x07replace\x18\x06 \x01(\x08R\x07replace\x12\x1e\n\nmissing_ok\x18\x07 \x01(\x08R\nmissing_ok\"\x9f\x01\n\x10PublicationTable\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12\x31\n\x0cwhere_clause\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x0bwhereClause\x12(\n\x07\x63olumns\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x07\x63olumns\"\xbe\x01\n\x12PublicationObjSpec\x12@\n\npubobjtype\x18\x01 \x01(\x0e\x32 .pg_query.PublicationObjSpecTypeR\npubobjtype\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12\x36\n\x08pubtable\x18\x03 \x01(\x0b\x32\x1a.pg_query.PublicationTableR\x08pubtable\x12\x1a\n\x08location\x18\x04 \x01(\x05R\x08location\"\xb3\x01\n\x15\x43reatePublicationStmt\x12\x18\n\x07pubname\x18\x01 \x01(\tR\x07pubname\x12(\n\x07options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12.\n\npubobjects\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\npubobjects\x12&\n\x0e\x66or_all_tables\x18\x04 \x01(\x08R\x0e\x66or_all_tables\"\xec\x01\n\x14\x41lterPublicationStmt\x12\x18\n\x07pubname\x18\x01 \x01(\tR\x07pubname\x12(\n\x07options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12.\n\npubobjects\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\npubobjects\x12&\n\x0e\x66or_all_tables\x18\x04 \x01(\x08R\x0e\x66or_all_tables\x12\x38\n\x06\x61\x63tion\x18\x05 \x01(\x0e\x32 .pg_query.AlterPublicationActionR\x06\x61\x63tion\"\xaa\x01\n\x16\x43reateSubscriptionStmt\x12\x18\n\x07subname\x18\x01 \x01(\tR\x07subname\x12\x1a\n\x08\x63onninfo\x18\x02 \x01(\tR\x08\x63onninfo\x12\x30\n\x0bpublication\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x0bpublication\x12(\n\x07options\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"\xde\x01\n\x15\x41lterSubscriptionStmt\x12\x33\n\x04kind\x18\x01 \x01(\x0e\x32\x1f.pg_query.AlterSubscriptionTypeR\x04kind\x12\x18\n\x07subname\x18\x02 \x01(\tR\x07subname\x12\x1a\n\x08\x63onninfo\x18\x03 \x01(\tR\x08\x63onninfo\x12\x30\n\x0bpublication\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x0bpublication\x12(\n\x07options\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"\x84\x01\n\x14\x44ropSubscriptionStmt\x12\x18\n\x07subname\x18\x01 \x01(\tR\x07subname\x12\x1e\n\nmissing_ok\x18\x02 \x01(\x08R\nmissing_ok\x12\x32\n\x08\x62\x65havior\x18\x03 \x01(\x0e\x32\x16.pg_query.DropBehaviorR\x08\x62\x65havior\"t\n\tScanToken\x12\r\n\x05start\x18\x01 \x01(\x05\x12\x0b\n\x03\x65nd\x18\x02 \x01(\x05\x12\x1e\n\x05token\x18\x04 \x01(\x0e\x32\x0f.pg_query.Token\x12+\n\x0ckeyword_kind\x18\x05 \x01(\x0e\x32\x15.pg_query.KeywordKind*\x7f\n\x0eOverridingKind\x12\x1d\n\x19OVERRIDING_KIND_UNDEFINED\x10\x00\x12\x16\n\x12OVERRIDING_NOT_SET\x10\x01\x12\x19\n\x15OVERRIDING_USER_VALUE\x10\x02\x12\x1b\n\x17OVERRIDING_SYSTEM_VALUE\x10\x03*\x9b\x01\n\x0bQuerySource\x12\x1a\n\x16QUERY_SOURCE_UNDEFINED\x10\x00\x12\x11\n\rQSRC_ORIGINAL\x10\x01\x12\x0f\n\x0bQSRC_PARSER\x10\x02\x12\x15\n\x11QSRC_INSTEAD_RULE\x10\x03\x12\x1a\n\x16QSRC_QUAL_INSTEAD_RULE\x10\x04\x12\x19\n\x15QSRC_NON_INSTEAD_RULE\x10\x05*m\n\tSortByDir\x12\x19\n\x15SORT_BY_DIR_UNDEFINED\x10\x00\x12\x12\n\x0eSORTBY_DEFAULT\x10\x01\x12\x0e\n\nSORTBY_ASC\x10\x02\x12\x0f\n\x0bSORTBY_DESC\x10\x03\x12\x10\n\x0cSORTBY_USING\x10\x04*s\n\x0bSortByNulls\x12\x1b\n\x17SORT_BY_NULLS_UNDEFINED\x10\x00\x12\x18\n\x14SORTBY_NULLS_DEFAULT\x10\x01\x12\x16\n\x12SORTBY_NULLS_FIRST\x10\x02\x12\x15\n\x11SORTBY_NULLS_LAST\x10\x03*~\n\rSetQuantifier\x12\x1c\n\x18SET_QUANTIFIER_UNDEFINED\x10\x00\x12\x1a\n\x16SET_QUANTIFIER_DEFAULT\x10\x01\x12\x16\n\x12SET_QUANTIFIER_ALL\x10\x02\x12\x1b\n\x17SET_QUANTIFIER_DISTINCT\x10\x03*\xb6\x02\n\x0b\x41_Expr_Kind\x12\x19\n\x15\x41_EXPR_KIND_UNDEFINED\x10\x00\x12\x0c\n\x08\x41\x45XPR_OP\x10\x01\x12\x10\n\x0c\x41\x45XPR_OP_ANY\x10\x02\x12\x10\n\x0c\x41\x45XPR_OP_ALL\x10\x03\x12\x12\n\x0e\x41\x45XPR_DISTINCT\x10\x04\x12\x16\n\x12\x41\x45XPR_NOT_DISTINCT\x10\x05\x12\x10\n\x0c\x41\x45XPR_NULLIF\x10\x06\x12\x0c\n\x08\x41\x45XPR_IN\x10\x07\x12\x0e\n\nAEXPR_LIKE\x10\x08\x12\x0f\n\x0b\x41\x45XPR_ILIKE\x10\t\x12\x11\n\rAEXPR_SIMILAR\x10\n\x12\x11\n\rAEXPR_BETWEEN\x10\x0b\x12\x15\n\x11\x41\x45XPR_NOT_BETWEEN\x10\x0c\x12\x15\n\x11\x41\x45XPR_BETWEEN_SYM\x10\r\x12\x19\n\x15\x41\x45XPR_NOT_BETWEEN_SYM\x10\x0e*\xa8\x01\n\x0cRoleSpecType\x12\x1c\n\x18ROLE_SPEC_TYPE_UNDEFINED\x10\x00\x12\x14\n\x10ROLESPEC_CSTRING\x10\x01\x12\x19\n\x15ROLESPEC_CURRENT_ROLE\x10\x02\x12\x19\n\x15ROLESPEC_CURRENT_USER\x10\x03\x12\x19\n\x15ROLESPEC_SESSION_USER\x10\x04\x12\x13\n\x0fROLESPEC_PUBLIC\x10\x05*\xf4\x02\n\x0fTableLikeOption\x12\x1f\n\x1bTABLE_LIKE_OPTION_UNDEFINED\x10\x00\x12\x1e\n\x1a\x43REATE_TABLE_LIKE_COMMENTS\x10\x01\x12!\n\x1d\x43REATE_TABLE_LIKE_COMPRESSION\x10\x02\x12!\n\x1d\x43REATE_TABLE_LIKE_CONSTRAINTS\x10\x03\x12\x1e\n\x1a\x43REATE_TABLE_LIKE_DEFAULTS\x10\x04\x12\x1f\n\x1b\x43REATE_TABLE_LIKE_GENERATED\x10\x05\x12\x1e\n\x1a\x43REATE_TABLE_LIKE_IDENTITY\x10\x06\x12\x1d\n\x19\x43REATE_TABLE_LIKE_INDEXES\x10\x07\x12 \n\x1c\x43REATE_TABLE_LIKE_STATISTICS\x10\x08\x12\x1d\n\x19\x43REATE_TABLE_LIKE_STORAGE\x10\t\x12\x19\n\x15\x43REATE_TABLE_LIKE_ALL\x10\n*v\n\rDefElemAction\x12\x1d\n\x19\x44\x45\x46_ELEM_ACTION_UNDEFINED\x10\x00\x12\x12\n\x0e\x44\x45\x46\x45LEM_UNSPEC\x10\x01\x12\x0f\n\x0b\x44\x45\x46\x45LEM_SET\x10\x02\x12\x0f\n\x0b\x44\x45\x46\x45LEM_ADD\x10\x03\x12\x10\n\x0c\x44\x45\x46\x45LEM_DROP\x10\x04*\x8d\x01\n\x11PartitionStrategy\x12 \n\x1cPARTITION_STRATEGY_UNDEFINED\x10\x00\x12\x1b\n\x17PARTITION_STRATEGY_LIST\x10\x01\x12\x1c\n\x18PARTITION_STRATEGY_RANGE\x10\x02\x12\x1b\n\x17PARTITION_STRATEGY_HASH\x10\x03*\xac\x01\n\x17PartitionRangeDatumKind\x12(\n$PARTITION_RANGE_DATUM_KIND_UNDEFINED\x10\x00\x12\"\n\x1ePARTITION_RANGE_DATUM_MINVALUE\x10\x01\x12\x1f\n\x1bPARTITION_RANGE_DATUM_VALUE\x10\x02\x12\"\n\x1ePARTITION_RANGE_DATUM_MAXVALUE\x10\x03*\xbd\x01\n\x07RTEKind\x12\x15\n\x11RTEKIND_UNDEFINED\x10\x00\x12\x10\n\x0cRTE_RELATION\x10\x01\x12\x10\n\x0cRTE_SUBQUERY\x10\x02\x12\x0c\n\x08RTE_JOIN\x10\x03\x12\x10\n\x0cRTE_FUNCTION\x10\x04\x12\x11\n\rRTE_TABLEFUNC\x10\x05\x12\x0e\n\nRTE_VALUES\x10\x06\x12\x0b\n\x07RTE_CTE\x10\x07\x12\x17\n\x13RTE_NAMEDTUPLESTORE\x10\x08\x12\x0e\n\nRTE_RESULT\x10\t*\xc4\x01\n\x07WCOKind\x12\x15\n\x11WCOKIND_UNDEFINED\x10\x00\x12\x12\n\x0eWCO_VIEW_CHECK\x10\x01\x12\x18\n\x14WCO_RLS_INSERT_CHECK\x10\x02\x12\x18\n\x14WCO_RLS_UPDATE_CHECK\x10\x03\x12\x1a\n\x16WCO_RLS_CONFLICT_CHECK\x10\x04\x12\x1e\n\x1aWCO_RLS_MERGE_UPDATE_CHECK\x10\x05\x12\x1e\n\x1aWCO_RLS_MERGE_DELETE_CHECK\x10\x06*\xaa\x01\n\x0fGroupingSetKind\x12\x1f\n\x1bGROUPING_SET_KIND_UNDEFINED\x10\x00\x12\x16\n\x12GROUPING_SET_EMPTY\x10\x01\x12\x17\n\x13GROUPING_SET_SIMPLE\x10\x02\x12\x17\n\x13GROUPING_SET_ROLLUP\x10\x03\x12\x15\n\x11GROUPING_SET_CUBE\x10\x04\x12\x15\n\x11GROUPING_SET_SETS\x10\x05*|\n\x0e\x43TEMaterialize\x12\x1c\n\x18\x43TEMATERIALIZE_UNDEFINED\x10\x00\x12\x19\n\x15\x43TEMaterializeDefault\x10\x01\x12\x18\n\x14\x43TEMaterializeAlways\x10\x02\x12\x17\n\x13\x43TEMaterializeNever\x10\x03*s\n\x0cSetOperation\x12\x1b\n\x17SET_OPERATION_UNDEFINED\x10\x00\x12\x0e\n\nSETOP_NONE\x10\x01\x12\x0f\n\x0bSETOP_UNION\x10\x02\x12\x13\n\x0fSETOP_INTERSECT\x10\x03\x12\x10\n\x0cSETOP_EXCEPT\x10\x04*\x99\t\n\nObjectType\x12\x19\n\x15OBJECT_TYPE_UNDEFINED\x10\x00\x12\x18\n\x14OBJECT_ACCESS_METHOD\x10\x01\x12\x14\n\x10OBJECT_AGGREGATE\x10\x02\x12\x0f\n\x0bOBJECT_AMOP\x10\x03\x12\x11\n\rOBJECT_AMPROC\x10\x04\x12\x14\n\x10OBJECT_ATTRIBUTE\x10\x05\x12\x0f\n\x0bOBJECT_CAST\x10\x06\x12\x11\n\rOBJECT_COLUMN\x10\x07\x12\x14\n\x10OBJECT_COLLATION\x10\x08\x12\x15\n\x11OBJECT_CONVERSION\x10\t\x12\x13\n\x0fOBJECT_DATABASE\x10\n\x12\x12\n\x0eOBJECT_DEFAULT\x10\x0b\x12\x11\n\rOBJECT_DEFACL\x10\x0c\x12\x11\n\rOBJECT_DOMAIN\x10\r\x12\x18\n\x14OBJECT_DOMCONSTRAINT\x10\x0e\x12\x18\n\x14OBJECT_EVENT_TRIGGER\x10\x0f\x12\x14\n\x10OBJECT_EXTENSION\x10\x10\x12\x0e\n\nOBJECT_FDW\x10\x11\x12\x19\n\x15OBJECT_FOREIGN_SERVER\x10\x12\x12\x18\n\x14OBJECT_FOREIGN_TABLE\x10\x13\x12\x13\n\x0fOBJECT_FUNCTION\x10\x14\x12\x10\n\x0cOBJECT_INDEX\x10\x15\x12\x13\n\x0fOBJECT_LANGUAGE\x10\x16\x12\x16\n\x12OBJECT_LARGEOBJECT\x10\x17\x12\x12\n\x0eOBJECT_MATVIEW\x10\x18\x12\x12\n\x0eOBJECT_OPCLASS\x10\x19\x12\x13\n\x0fOBJECT_OPERATOR\x10\x1a\x12\x13\n\x0fOBJECT_OPFAMILY\x10\x1b\x12\x18\n\x14OBJECT_PARAMETER_ACL\x10\x1c\x12\x11\n\rOBJECT_POLICY\x10\x1d\x12\x14\n\x10OBJECT_PROCEDURE\x10\x1e\x12\x16\n\x12OBJECT_PUBLICATION\x10\x1f\x12 \n\x1cOBJECT_PUBLICATION_NAMESPACE\x10 \x12\x1a\n\x16OBJECT_PUBLICATION_REL\x10!\x12\x0f\n\x0bOBJECT_ROLE\x10\"\x12\x12\n\x0eOBJECT_ROUTINE\x10#\x12\x0f\n\x0bOBJECT_RULE\x10$\x12\x11\n\rOBJECT_SCHEMA\x10%\x12\x13\n\x0fOBJECT_SEQUENCE\x10&\x12\x17\n\x13OBJECT_SUBSCRIPTION\x10\'\x12\x18\n\x14OBJECT_STATISTIC_EXT\x10(\x12\x18\n\x14OBJECT_TABCONSTRAINT\x10)\x12\x10\n\x0cOBJECT_TABLE\x10*\x12\x15\n\x11OBJECT_TABLESPACE\x10+\x12\x14\n\x10OBJECT_TRANSFORM\x10,\x12\x12\n\x0eOBJECT_TRIGGER\x10-\x12\x1a\n\x16OBJECT_TSCONFIGURATION\x10.\x12\x17\n\x13OBJECT_TSDICTIONARY\x10/\x12\x13\n\x0fOBJECT_TSPARSER\x10\x30\x12\x15\n\x11OBJECT_TSTEMPLATE\x10\x31\x12\x0f\n\x0bOBJECT_TYPE\x10\x32\x12\x17\n\x13OBJECT_USER_MAPPING\x10\x33\x12\x0f\n\x0bOBJECT_VIEW\x10\x34*P\n\x0c\x44ropBehavior\x12\x1b\n\x17\x44ROP_BEHAVIOR_UNDEFINED\x10\x00\x12\x11\n\rDROP_RESTRICT\x10\x01\x12\x10\n\x0c\x44ROP_CASCADE\x10\x02*\xf6\x0b\n\x0e\x41lterTableType\x12\x1e\n\x1a\x41LTER_TABLE_TYPE_UNDEFINED\x10\x00\x12\x10\n\x0c\x41T_AddColumn\x10\x01\x12\x16\n\x12\x41T_AddColumnToView\x10\x02\x12\x14\n\x10\x41T_ColumnDefault\x10\x03\x12\x1a\n\x16\x41T_CookedColumnDefault\x10\x04\x12\x12\n\x0e\x41T_DropNotNull\x10\x05\x12\x11\n\rAT_SetNotNull\x10\x06\x12\x15\n\x11\x41T_DropExpression\x10\x07\x12\x13\n\x0f\x41T_CheckNotNull\x10\x08\x12\x14\n\x10\x41T_SetStatistics\x10\t\x12\x11\n\rAT_SetOptions\x10\n\x12\x13\n\x0f\x41T_ResetOptions\x10\x0b\x12\x11\n\rAT_SetStorage\x10\x0c\x12\x15\n\x11\x41T_SetCompression\x10\r\x12\x11\n\rAT_DropColumn\x10\x0e\x12\x0f\n\x0b\x41T_AddIndex\x10\x0f\x12\x11\n\rAT_ReAddIndex\x10\x10\x12\x14\n\x10\x41T_AddConstraint\x10\x11\x12\x16\n\x12\x41T_ReAddConstraint\x10\x12\x12\x1c\n\x18\x41T_ReAddDomainConstraint\x10\x13\x12\x16\n\x12\x41T_AlterConstraint\x10\x14\x12\x19\n\x15\x41T_ValidateConstraint\x10\x15\x12\x19\n\x15\x41T_AddIndexConstraint\x10\x16\x12\x15\n\x11\x41T_DropConstraint\x10\x17\x12\x13\n\x0f\x41T_ReAddComment\x10\x18\x12\x16\n\x12\x41T_AlterColumnType\x10\x19\x12 \n\x1c\x41T_AlterColumnGenericOptions\x10\x1a\x12\x12\n\x0e\x41T_ChangeOwner\x10\x1b\x12\x10\n\x0c\x41T_ClusterOn\x10\x1c\x12\x12\n\x0e\x41T_DropCluster\x10\x1d\x12\x10\n\x0c\x41T_SetLogged\x10\x1e\x12\x12\n\x0e\x41T_SetUnLogged\x10\x1f\x12\x0f\n\x0b\x41T_DropOids\x10 \x12\x16\n\x12\x41T_SetAccessMethod\x10!\x12\x14\n\x10\x41T_SetTableSpace\x10\"\x12\x14\n\x10\x41T_SetRelOptions\x10#\x12\x16\n\x12\x41T_ResetRelOptions\x10$\x12\x18\n\x14\x41T_ReplaceRelOptions\x10%\x12\x11\n\rAT_EnableTrig\x10&\x12\x17\n\x13\x41T_EnableAlwaysTrig\x10\'\x12\x18\n\x14\x41T_EnableReplicaTrig\x10(\x12\x12\n\x0e\x41T_DisableTrig\x10)\x12\x14\n\x10\x41T_EnableTrigAll\x10*\x12\x15\n\x11\x41T_DisableTrigAll\x10+\x12\x15\n\x11\x41T_EnableTrigUser\x10,\x12\x16\n\x12\x41T_DisableTrigUser\x10-\x12\x11\n\rAT_EnableRule\x10.\x12\x17\n\x13\x41T_EnableAlwaysRule\x10/\x12\x18\n\x14\x41T_EnableReplicaRule\x10\x30\x12\x12\n\x0e\x41T_DisableRule\x10\x31\x12\x11\n\rAT_AddInherit\x10\x32\x12\x12\n\x0e\x41T_DropInherit\x10\x33\x12\x0c\n\x08\x41T_AddOf\x10\x34\x12\r\n\tAT_DropOf\x10\x35\x12\x16\n\x12\x41T_ReplicaIdentity\x10\x36\x12\x18\n\x14\x41T_EnableRowSecurity\x10\x37\x12\x19\n\x15\x41T_DisableRowSecurity\x10\x38\x12\x17\n\x13\x41T_ForceRowSecurity\x10\x39\x12\x19\n\x15\x41T_NoForceRowSecurity\x10:\x12\x15\n\x11\x41T_GenericOptions\x10;\x12\x16\n\x12\x41T_AttachPartition\x10<\x12\x16\n\x12\x41T_DetachPartition\x10=\x12\x1e\n\x1a\x41T_DetachPartitionFinalize\x10>\x12\x12\n\x0e\x41T_AddIdentity\x10?\x12\x12\n\x0e\x41T_SetIdentity\x10@\x12\x13\n\x0f\x41T_DropIdentity\x10\x41\x12\x16\n\x12\x41T_ReAddStatistics\x10\x42*\x80\x01\n\x0fGrantTargetType\x12\x1f\n\x1bGRANT_TARGET_TYPE_UNDEFINED\x10\x00\x12\x15\n\x11\x41\x43L_TARGET_OBJECT\x10\x01\x12\x1c\n\x18\x41\x43L_TARGET_ALL_IN_SCHEMA\x10\x02\x12\x17\n\x13\x41\x43L_TARGET_DEFAULTS\x10\x03*\xa4\x01\n\x0fVariableSetKind\x12\x1f\n\x1bVARIABLE_SET_KIND_UNDEFINED\x10\x00\x12\x11\n\rVAR_SET_VALUE\x10\x01\x12\x13\n\x0fVAR_SET_DEFAULT\x10\x02\x12\x13\n\x0fVAR_SET_CURRENT\x10\x03\x12\x11\n\rVAR_SET_MULTI\x10\x04\x12\r\n\tVAR_RESET\x10\x05\x12\x11\n\rVAR_RESET_ALL\x10\x06*\xdf\x02\n\nConstrType\x12\x19\n\x15\x43ONSTR_TYPE_UNDEFINED\x10\x00\x12\x0f\n\x0b\x43ONSTR_NULL\x10\x01\x12\x12\n\x0e\x43ONSTR_NOTNULL\x10\x02\x12\x12\n\x0e\x43ONSTR_DEFAULT\x10\x03\x12\x13\n\x0f\x43ONSTR_IDENTITY\x10\x04\x12\x14\n\x10\x43ONSTR_GENERATED\x10\x05\x12\x10\n\x0c\x43ONSTR_CHECK\x10\x06\x12\x12\n\x0e\x43ONSTR_PRIMARY\x10\x07\x12\x11\n\rCONSTR_UNIQUE\x10\x08\x12\x14\n\x10\x43ONSTR_EXCLUSION\x10\t\x12\x12\n\x0e\x43ONSTR_FOREIGN\x10\n\x12\x1a\n\x16\x43ONSTR_ATTR_DEFERRABLE\x10\x0b\x12\x1e\n\x1a\x43ONSTR_ATTR_NOT_DEFERRABLE\x10\x0c\x12\x18\n\x14\x43ONSTR_ATTR_DEFERRED\x10\r\x12\x19\n\x15\x43ONSTR_ATTR_IMMEDIATE\x10\x0e*\x9c\x01\n\x17ImportForeignSchemaType\x12(\n$IMPORT_FOREIGN_SCHEMA_TYPE_UNDEFINED\x10\x00\x12\x19\n\x15\x46\x44W_IMPORT_SCHEMA_ALL\x10\x01\x12\x1e\n\x1a\x46\x44W_IMPORT_SCHEMA_LIMIT_TO\x10\x02\x12\x1c\n\x18\x46\x44W_IMPORT_SCHEMA_EXCEPT\x10\x03*f\n\x0cRoleStmtType\x12\x1c\n\x18ROLE_STMT_TYPE_UNDEFINED\x10\x00\x12\x11\n\rROLESTMT_ROLE\x10\x01\x12\x11\n\rROLESTMT_USER\x10\x02\x12\x12\n\x0eROLESTMT_GROUP\x10\x03*~\n\x0e\x46\x65tchDirection\x12\x1d\n\x19\x46\x45TCH_DIRECTION_UNDEFINED\x10\x00\x12\x11\n\rFETCH_FORWARD\x10\x01\x12\x12\n\x0e\x46\x45TCH_BACKWARD\x10\x02\x12\x12\n\x0e\x46\x45TCH_ABSOLUTE\x10\x03\x12\x12\n\x0e\x46\x45TCH_RELATIVE\x10\x04*\xc2\x01\n\x15\x46unctionParameterMode\x12%\n!FUNCTION_PARAMETER_MODE_UNDEFINED\x10\x00\x12\x11\n\rFUNC_PARAM_IN\x10\x01\x12\x12\n\x0e\x46UNC_PARAM_OUT\x10\x02\x12\x14\n\x10\x46UNC_PARAM_INOUT\x10\x03\x12\x17\n\x13\x46UNC_PARAM_VARIADIC\x10\x04\x12\x14\n\x10\x46UNC_PARAM_TABLE\x10\x05\x12\x16\n\x12\x46UNC_PARAM_DEFAULT\x10\x06*\xbe\x02\n\x13TransactionStmtKind\x12#\n\x1fTRANSACTION_STMT_KIND_UNDEFINED\x10\x00\x12\x14\n\x10TRANS_STMT_BEGIN\x10\x01\x12\x14\n\x10TRANS_STMT_START\x10\x02\x12\x15\n\x11TRANS_STMT_COMMIT\x10\x03\x12\x17\n\x13TRANS_STMT_ROLLBACK\x10\x04\x12\x18\n\x14TRANS_STMT_SAVEPOINT\x10\x05\x12\x16\n\x12TRANS_STMT_RELEASE\x10\x06\x12\x1a\n\x16TRANS_STMT_ROLLBACK_TO\x10\x07\x12\x16\n\x12TRANS_STMT_PREPARE\x10\x08\x12\x1e\n\x1aTRANS_STMT_COMMIT_PREPARED\x10\t\x12 \n\x1cTRANS_STMT_ROLLBACK_PREPARED\x10\n*z\n\x0fViewCheckOption\x12\x1f\n\x1bVIEW_CHECK_OPTION_UNDEFINED\x10\x00\x12\x13\n\x0fNO_CHECK_OPTION\x10\x01\x12\x16\n\x12LOCAL_CHECK_OPTION\x10\x02\x12\x19\n\x15\x43\x41SCADED_CHECK_OPTION\x10\x03*v\n\x0b\x44iscardMode\x12\x1a\n\x16\x44ISCARD_MODE_UNDEFINED\x10\x00\x12\x0f\n\x0b\x44ISCARD_ALL\x10\x01\x12\x11\n\rDISCARD_PLANS\x10\x02\x12\x15\n\x11\x44ISCARD_SEQUENCES\x10\x03\x12\x10\n\x0c\x44ISCARD_TEMP\x10\x04*\xbd\x01\n\x11ReindexObjectType\x12!\n\x1dREINDEX_OBJECT_TYPE_UNDEFINED\x10\x00\x12\x18\n\x14REINDEX_OBJECT_INDEX\x10\x01\x12\x18\n\x14REINDEX_OBJECT_TABLE\x10\x02\x12\x19\n\x15REINDEX_OBJECT_SCHEMA\x10\x03\x12\x19\n\x15REINDEX_OBJECT_SYSTEM\x10\x04\x12\x1b\n\x17REINDEX_OBJECT_DATABASE\x10\x05*\xef\x01\n\x11\x41lterTSConfigType\x12!\n\x1d\x41LTER_TSCONFIG_TYPE_UNDEFINED\x10\x00\x12\x1e\n\x1a\x41LTER_TSCONFIG_ADD_MAPPING\x10\x01\x12*\n&ALTER_TSCONFIG_ALTER_MAPPING_FOR_TOKEN\x10\x02\x12\x1f\n\x1b\x41LTER_TSCONFIG_REPLACE_DICT\x10\x03\x12)\n%ALTER_TSCONFIG_REPLACE_DICT_FOR_TOKEN\x10\x04\x12\x1f\n\x1b\x41LTER_TSCONFIG_DROP_MAPPING\x10\x05*\xca\x01\n\x16PublicationObjSpecType\x12\'\n#PUBLICATION_OBJ_SPEC_TYPE_UNDEFINED\x10\x00\x12\x18\n\x14PUBLICATIONOBJ_TABLE\x10\x01\x12#\n\x1fPUBLICATIONOBJ_TABLES_IN_SCHEMA\x10\x02\x12\'\n#PUBLICATIONOBJ_TABLES_IN_CUR_SCHEMA\x10\x03\x12\x1f\n\x1bPUBLICATIONOBJ_CONTINUATION\x10\x04*z\n\x16\x41lterPublicationAction\x12&\n\"ALTER_PUBLICATION_ACTION_UNDEFINED\x10\x00\x12\x11\n\rAP_AddObjects\x10\x01\x12\x12\n\x0e\x41P_DropObjects\x10\x02\x12\x11\n\rAP_SetObjects\x10\x03*\xd7\x02\n\x15\x41lterSubscriptionType\x12%\n!ALTER_SUBSCRIPTION_TYPE_UNDEFINED\x10\x00\x12\x1e\n\x1a\x41LTER_SUBSCRIPTION_OPTIONS\x10\x01\x12!\n\x1d\x41LTER_SUBSCRIPTION_CONNECTION\x10\x02\x12&\n\"ALTER_SUBSCRIPTION_SET_PUBLICATION\x10\x03\x12&\n\"ALTER_SUBSCRIPTION_ADD_PUBLICATION\x10\x04\x12\'\n#ALTER_SUBSCRIPTION_DROP_PUBLICATION\x10\x05\x12\x1e\n\x1a\x41LTER_SUBSCRIPTION_REFRESH\x10\x06\x12\x1e\n\x1a\x41LTER_SUBSCRIPTION_ENABLED\x10\x07\x12\x1b\n\x17\x41LTER_SUBSCRIPTION_SKIP\x10\x08*\x8c\x01\n\x0eOnCommitAction\x12\x1e\n\x1aON_COMMIT_ACTION_UNDEFINED\x10\x00\x12\x11\n\rONCOMMIT_NOOP\x10\x01\x12\x1a\n\x16ONCOMMIT_PRESERVE_ROWS\x10\x02\x12\x18\n\x14ONCOMMIT_DELETE_ROWS\x10\x03\x12\x11\n\rONCOMMIT_DROP\x10\x04*o\n\tParamKind\x12\x18\n\x14PARAM_KIND_UNDEFINED\x10\x00\x12\x10\n\x0cPARAM_EXTERN\x10\x01\x12\x0e\n\nPARAM_EXEC\x10\x02\x12\x11\n\rPARAM_SUBLINK\x10\x03\x12\x13\n\x0fPARAM_MULTIEXPR\x10\x04*\x8e\x01\n\x0f\x43oercionContext\x12\x1e\n\x1a\x43OERCION_CONTEXT_UNDEFINED\x10\x00\x12\x15\n\x11\x43OERCION_IMPLICIT\x10\x01\x12\x17\n\x13\x43OERCION_ASSIGNMENT\x10\x02\x12\x14\n\x10\x43OERCION_PLPGSQL\x10\x03\x12\x15\n\x11\x43OERCION_EXPLICIT\x10\x04*\x90\x01\n\x0c\x43oercionForm\x12\x1b\n\x17\x43OERCION_FORM_UNDEFINED\x10\x00\x12\x18\n\x14\x43OERCE_EXPLICIT_CALL\x10\x01\x12\x18\n\x14\x43OERCE_EXPLICIT_CAST\x10\x02\x12\x18\n\x14\x43OERCE_IMPLICIT_CAST\x10\x03\x12\x15\n\x11\x43OERCE_SQL_SYNTAX\x10\x04*U\n\x0c\x42oolExprType\x12\x1c\n\x18\x42OOL_EXPR_TYPE_UNDEFINED\x10\x00\x12\x0c\n\x08\x41ND_EXPR\x10\x01\x12\x0b\n\x07OR_EXPR\x10\x02\x12\x0c\n\x08NOT_EXPR\x10\x03*\xc5\x01\n\x0bSubLinkType\x12\x1b\n\x17SUB_LINK_TYPE_UNDEFINED\x10\x00\x12\x12\n\x0e\x45XISTS_SUBLINK\x10\x01\x12\x0f\n\x0b\x41LL_SUBLINK\x10\x02\x12\x0f\n\x0b\x41NY_SUBLINK\x10\x03\x12\x16\n\x12ROWCOMPARE_SUBLINK\x10\x04\x12\x10\n\x0c\x45XPR_SUBLINK\x10\x05\x12\x15\n\x11MULTIEXPR_SUBLINK\x10\x06\x12\x11\n\rARRAY_SUBLINK\x10\x07\x12\x0f\n\x0b\x43TE_SUBLINK\x10\x08*\xa2\x01\n\x0eRowCompareType\x12\x1e\n\x1aROW_COMPARE_TYPE_UNDEFINED\x10\x00\x12\x11\n\rROWCOMPARE_LT\x10\x01\x12\x11\n\rROWCOMPARE_LE\x10\x02\x12\x11\n\rROWCOMPARE_EQ\x10\x03\x12\x11\n\rROWCOMPARE_GE\x10\x04\x12\x11\n\rROWCOMPARE_GT\x10\x05\x12\x11\n\rROWCOMPARE_NE\x10\x06*C\n\x08MinMaxOp\x12\x18\n\x14MIN_MAX_OP_UNDEFINED\x10\x00\x12\x0f\n\x0bIS_GREATEST\x10\x01\x12\x0c\n\x08IS_LEAST\x10\x02*\xad\x03\n\x12SQLValueFunctionOp\x12\"\n\x1eSQLVALUE_FUNCTION_OP_UNDEFINED\x10\x00\x12\x16\n\x12SVFOP_CURRENT_DATE\x10\x01\x12\x16\n\x12SVFOP_CURRENT_TIME\x10\x02\x12\x18\n\x14SVFOP_CURRENT_TIME_N\x10\x03\x12\x1b\n\x17SVFOP_CURRENT_TIMESTAMP\x10\x04\x12\x1d\n\x19SVFOP_CURRENT_TIMESTAMP_N\x10\x05\x12\x13\n\x0fSVFOP_LOCALTIME\x10\x06\x12\x15\n\x11SVFOP_LOCALTIME_N\x10\x07\x12\x18\n\x14SVFOP_LOCALTIMESTAMP\x10\x08\x12\x1a\n\x16SVFOP_LOCALTIMESTAMP_N\x10\t\x12\x16\n\x12SVFOP_CURRENT_ROLE\x10\n\x12\x16\n\x12SVFOP_CURRENT_USER\x10\x0b\x12\x0e\n\nSVFOP_USER\x10\x0c\x12\x16\n\x12SVFOP_SESSION_USER\x10\r\x12\x19\n\x15SVFOP_CURRENT_CATALOG\x10\x0e\x12\x18\n\x14SVFOP_CURRENT_SCHEMA\x10\x0f*\xb2\x01\n\tXmlExprOp\x12\x19\n\x15XML_EXPR_OP_UNDEFINED\x10\x00\x12\x10\n\x0cIS_XMLCONCAT\x10\x01\x12\x11\n\rIS_XMLELEMENT\x10\x02\x12\x10\n\x0cIS_XMLFOREST\x10\x03\x12\x0f\n\x0bIS_XMLPARSE\x10\x04\x12\x0c\n\x08IS_XMLPI\x10\x05\x12\x0e\n\nIS_XMLROOT\x10\x06\x12\x13\n\x0fIS_XMLSERIALIZE\x10\x07\x12\x0f\n\x0bIS_DOCUMENT\x10\x08*]\n\rXmlOptionType\x12\x1d\n\x19XML_OPTION_TYPE_UNDEFINED\x10\x00\x12\x16\n\x12XMLOPTION_DOCUMENT\x10\x01\x12\x15\n\x11XMLOPTION_CONTENT\x10\x02*t\n\x0cJsonEncoding\x12\x1b\n\x17JSON_ENCODING_UNDEFINED\x10\x00\x12\x12\n\x0eJS_ENC_DEFAULT\x10\x01\x12\x0f\n\x0bJS_ENC_UTF8\x10\x02\x12\x10\n\x0cJS_ENC_UTF16\x10\x03\x12\x10\n\x0cJS_ENC_UTF32\x10\x04*p\n\x0eJsonFormatType\x12\x1e\n\x1aJSON_FORMAT_TYPE_UNDEFINED\x10\x00\x12\x15\n\x11JS_FORMAT_DEFAULT\x10\x01\x12\x12\n\x0eJS_FORMAT_JSON\x10\x02\x12\x13\n\x0fJS_FORMAT_JSONB\x10\x03*\x9e\x01\n\x13JsonConstructorType\x12#\n\x1fJSON_CONSTRUCTOR_TYPE_UNDEFINED\x10\x00\x12\x16\n\x12JSCTOR_JSON_OBJECT\x10\x01\x12\x15\n\x11JSCTOR_JSON_ARRAY\x10\x02\x12\x19\n\x15JSCTOR_JSON_OBJECTAGG\x10\x03\x12\x18\n\x14JSCTOR_JSON_ARRAYAGG\x10\x04*z\n\rJsonValueType\x12\x1d\n\x19JSON_VALUE_TYPE_UNDEFINED\x10\x00\x12\x0f\n\x0bJS_TYPE_ANY\x10\x01\x12\x12\n\x0eJS_TYPE_OBJECT\x10\x02\x12\x11\n\rJS_TYPE_ARRAY\x10\x03\x12\x12\n\x0eJS_TYPE_SCALAR\x10\x04*J\n\x0cNullTestType\x12\x1c\n\x18NULL_TEST_TYPE_UNDEFINED\x10\x00\x12\x0b\n\x07IS_NULL\x10\x01\x12\x0f\n\x0bIS_NOT_NULL\x10\x02*\x8e\x01\n\x0c\x42oolTestType\x12\x1c\n\x18\x42OOL_TEST_TYPE_UNDEFINED\x10\x00\x12\x0b\n\x07IS_TRUE\x10\x01\x12\x0f\n\x0bIS_NOT_TRUE\x10\x02\x12\x0c\n\x08IS_FALSE\x10\x03\x12\x10\n\x0cIS_NOT_FALSE\x10\x04\x12\x0e\n\nIS_UNKNOWN\x10\x05\x12\x12\n\x0eIS_NOT_UNKNOWN\x10\x06*\xa3\x01\n\x07\x43mdType\x12\x16\n\x12\x43MD_TYPE_UNDEFINED\x10\x00\x12\x0f\n\x0b\x43MD_UNKNOWN\x10\x01\x12\x0e\n\nCMD_SELECT\x10\x02\x12\x0e\n\nCMD_UPDATE\x10\x03\x12\x0e\n\nCMD_INSERT\x10\x04\x12\x0e\n\nCMD_DELETE\x10\x05\x12\r\n\tCMD_MERGE\x10\x06\x12\x0f\n\x0b\x43MD_UTILITY\x10\x07\x12\x0f\n\x0b\x43MD_NOTHING\x10\x08*\xc2\x01\n\x08JoinType\x12\x17\n\x13JOIN_TYPE_UNDEFINED\x10\x00\x12\x0e\n\nJOIN_INNER\x10\x01\x12\r\n\tJOIN_LEFT\x10\x02\x12\r\n\tJOIN_FULL\x10\x03\x12\x0e\n\nJOIN_RIGHT\x10\x04\x12\r\n\tJOIN_SEMI\x10\x05\x12\r\n\tJOIN_ANTI\x10\x06\x12\x13\n\x0fJOIN_RIGHT_ANTI\x10\x07\x12\x15\n\x11JOIN_UNIQUE_OUTER\x10\x08\x12\x15\n\x11JOIN_UNIQUE_INNER\x10\t*g\n\x0b\x41ggStrategy\x12\x1a\n\x16\x41GG_STRATEGY_UNDEFINED\x10\x00\x12\r\n\tAGG_PLAIN\x10\x01\x12\x0e\n\nAGG_SORTED\x10\x02\x12\x0e\n\nAGG_HASHED\x10\x03\x12\r\n\tAGG_MIXED\x10\x04*r\n\x08\x41ggSplit\x12\x17\n\x13\x41GG_SPLIT_UNDEFINED\x10\x00\x12\x13\n\x0f\x41GGSPLIT_SIMPLE\x10\x01\x12\x1b\n\x17\x41GGSPLIT_INITIAL_SERIAL\x10\x02\x12\x1b\n\x17\x41GGSPLIT_FINAL_DESERIAL\x10\x03*\x86\x01\n\x08SetOpCmd\x12\x18\n\x14SET_OP_CMD_UNDEFINED\x10\x00\x12\x16\n\x12SETOPCMD_INTERSECT\x10\x01\x12\x1a\n\x16SETOPCMD_INTERSECT_ALL\x10\x02\x12\x13\n\x0fSETOPCMD_EXCEPT\x10\x03\x12\x17\n\x13SETOPCMD_EXCEPT_ALL\x10\x04*R\n\rSetOpStrategy\x12\x1d\n\x19SET_OP_STRATEGY_UNDEFINED\x10\x00\x12\x10\n\x0cSETOP_SORTED\x10\x01\x12\x10\n\x0cSETOP_HASHED\x10\x02*x\n\x10OnConflictAction\x12 \n\x1cON_CONFLICT_ACTION_UNDEFINED\x10\x00\x12\x13\n\x0fONCONFLICT_NONE\x10\x01\x12\x16\n\x12ONCONFLICT_NOTHING\x10\x02\x12\x15\n\x11ONCONFLICT_UPDATE\x10\x03*w\n\x0bLimitOption\x12\x1a\n\x16LIMIT_OPTION_UNDEFINED\x10\x00\x12\x18\n\x14LIMIT_OPTION_DEFAULT\x10\x01\x12\x16\n\x12LIMIT_OPTION_COUNT\x10\x02\x12\x1a\n\x16LIMIT_OPTION_WITH_TIES\x10\x03*\x98\x01\n\x12LockClauseStrength\x12\"\n\x1eLOCK_CLAUSE_STRENGTH_UNDEFINED\x10\x00\x12\x0c\n\x08LCS_NONE\x10\x01\x12\x13\n\x0fLCS_FORKEYSHARE\x10\x02\x12\x10\n\x0cLCS_FORSHARE\x10\x03\x12\x16\n\x12LCS_FORNOKEYUPDATE\x10\x04\x12\x11\n\rLCS_FORUPDATE\x10\x05*h\n\x0eLockWaitPolicy\x12\x1e\n\x1aLOCK_WAIT_POLICY_UNDEFINED\x10\x00\x12\x11\n\rLockWaitBlock\x10\x01\x12\x10\n\x0cLockWaitSkip\x10\x02\x12\x11\n\rLockWaitError\x10\x03*\x8e\x01\n\rLockTupleMode\x12\x1d\n\x19LOCK_TUPLE_MODE_UNDEFINED\x10\x00\x12\x15\n\x11LockTupleKeyShare\x10\x01\x12\x12\n\x0eLockTupleShare\x10\x02\x12\x1b\n\x17LockTupleNoKeyExclusive\x10\x03\x12\x16\n\x12LockTupleExclusive\x10\x04*}\n\x0bKeywordKind\x12\x0e\n\nNO_KEYWORD\x10\x00\x12\x16\n\x12UNRESERVED_KEYWORD\x10\x01\x12\x14\n\x10\x43OL_NAME_KEYWORD\x10\x02\x12\x1a\n\x16TYPE_FUNC_NAME_KEYWORD\x10\x03\x12\x14\n\x10RESERVED_KEYWORD\x10\x04*\xb8\x39\n\x05Token\x12\x07\n\x03NUL\x10\x00\x12\x0c\n\x08\x41SCII_36\x10$\x12\x0c\n\x08\x41SCII_37\x10%\x12\x0c\n\x08\x41SCII_40\x10(\x12\x0c\n\x08\x41SCII_41\x10)\x12\x0c\n\x08\x41SCII_42\x10*\x12\x0c\n\x08\x41SCII_43\x10+\x12\x0c\n\x08\x41SCII_44\x10,\x12\x0c\n\x08\x41SCII_45\x10-\x12\x0c\n\x08\x41SCII_46\x10.\x12\x0c\n\x08\x41SCII_47\x10/\x12\x0c\n\x08\x41SCII_58\x10:\x12\x0c\n\x08\x41SCII_59\x10;\x12\x0c\n\x08\x41SCII_60\x10<\x12\x0c\n\x08\x41SCII_61\x10=\x12\x0c\n\x08\x41SCII_62\x10>\x12\x0c\n\x08\x41SCII_63\x10?\x12\x0c\n\x08\x41SCII_91\x10[\x12\x0c\n\x08\x41SCII_92\x10\\\x12\x0c\n\x08\x41SCII_93\x10]\x12\x0c\n\x08\x41SCII_94\x10^\x12\n\n\x05IDENT\x10\x82\x02\x12\x0b\n\x06UIDENT\x10\x83\x02\x12\x0b\n\x06\x46\x43ONST\x10\x84\x02\x12\x0b\n\x06SCONST\x10\x85\x02\x12\x0c\n\x07USCONST\x10\x86\x02\x12\x0b\n\x06\x42\x43ONST\x10\x87\x02\x12\x0b\n\x06XCONST\x10\x88\x02\x12\x07\n\x02Op\x10\x89\x02\x12\x0b\n\x06ICONST\x10\x8a\x02\x12\n\n\x05PARAM\x10\x8b\x02\x12\r\n\x08TYPECAST\x10\x8c\x02\x12\x0c\n\x07\x44OT_DOT\x10\x8d\x02\x12\x11\n\x0c\x43OLON_EQUALS\x10\x8e\x02\x12\x13\n\x0e\x45QUALS_GREATER\x10\x8f\x02\x12\x10\n\x0bLESS_EQUALS\x10\x90\x02\x12\x13\n\x0eGREATER_EQUALS\x10\x91\x02\x12\x0f\n\nNOT_EQUALS\x10\x92\x02\x12\x10\n\x0bSQL_COMMENT\x10\x93\x02\x12\x0e\n\tC_COMMENT\x10\x94\x02\x12\x0c\n\x07\x41\x42ORT_P\x10\x95\x02\x12\x0b\n\x06\x41\x42SENT\x10\x96\x02\x12\x0f\n\nABSOLUTE_P\x10\x97\x02\x12\x0b\n\x06\x41\x43\x43\x45SS\x10\x98\x02\x12\x0b\n\x06\x41\x43TION\x10\x99\x02\x12\n\n\x05\x41\x44\x44_P\x10\x9a\x02\x12\n\n\x05\x41\x44MIN\x10\x9b\x02\x12\n\n\x05\x41\x46TER\x10\x9c\x02\x12\x0e\n\tAGGREGATE\x10\x9d\x02\x12\x08\n\x03\x41LL\x10\x9e\x02\x12\t\n\x04\x41LSO\x10\x9f\x02\x12\n\n\x05\x41LTER\x10\xa0\x02\x12\x0b\n\x06\x41LWAYS\x10\xa1\x02\x12\x0c\n\x07\x41NALYSE\x10\xa2\x02\x12\x0c\n\x07\x41NALYZE\x10\xa3\x02\x12\x08\n\x03\x41ND\x10\xa4\x02\x12\x08\n\x03\x41NY\x10\xa5\x02\x12\n\n\x05\x41RRAY\x10\xa6\x02\x12\x07\n\x02\x41S\x10\xa7\x02\x12\x08\n\x03\x41SC\x10\xa8\x02\x12\x0f\n\nASENSITIVE\x10\xa9\x02\x12\x0e\n\tASSERTION\x10\xaa\x02\x12\x0f\n\nASSIGNMENT\x10\xab\x02\x12\x0f\n\nASYMMETRIC\x10\xac\x02\x12\x0b\n\x06\x41TOMIC\x10\xad\x02\x12\x07\n\x02\x41T\x10\xae\x02\x12\x0b\n\x06\x41TTACH\x10\xaf\x02\x12\x0e\n\tATTRIBUTE\x10\xb0\x02\x12\x12\n\rAUTHORIZATION\x10\xb1\x02\x12\r\n\x08\x42\x41\x43KWARD\x10\xb2\x02\x12\x0b\n\x06\x42\x45\x46ORE\x10\xb3\x02\x12\x0c\n\x07\x42\x45GIN_P\x10\xb4\x02\x12\x0c\n\x07\x42\x45TWEEN\x10\xb5\x02\x12\x0b\n\x06\x42IGINT\x10\xb6\x02\x12\x0b\n\x06\x42INARY\x10\xb7\x02\x12\x08\n\x03\x42IT\x10\xb8\x02\x12\x0e\n\tBOOLEAN_P\x10\xb9\x02\x12\t\n\x04\x42OTH\x10\xba\x02\x12\x0c\n\x07\x42READTH\x10\xbb\x02\x12\x07\n\x02\x42Y\x10\xbc\x02\x12\n\n\x05\x43\x41\x43HE\x10\xbd\x02\x12\t\n\x04\x43\x41LL\x10\xbe\x02\x12\x0b\n\x06\x43\x41LLED\x10\xbf\x02\x12\x0c\n\x07\x43\x41SCADE\x10\xc0\x02\x12\r\n\x08\x43\x41SCADED\x10\xc1\x02\x12\t\n\x04\x43\x41SE\x10\xc2\x02\x12\t\n\x04\x43\x41ST\x10\xc3\x02\x12\x0e\n\tCATALOG_P\x10\xc4\x02\x12\n\n\x05\x43HAIN\x10\xc5\x02\x12\x0b\n\x06\x43HAR_P\x10\xc6\x02\x12\x0e\n\tCHARACTER\x10\xc7\x02\x12\x14\n\x0f\x43HARACTERISTICS\x10\xc8\x02\x12\n\n\x05\x43HECK\x10\xc9\x02\x12\x0f\n\nCHECKPOINT\x10\xca\x02\x12\n\n\x05\x43LASS\x10\xcb\x02\x12\n\n\x05\x43LOSE\x10\xcc\x02\x12\x0c\n\x07\x43LUSTER\x10\xcd\x02\x12\r\n\x08\x43OALESCE\x10\xce\x02\x12\x0c\n\x07\x43OLLATE\x10\xcf\x02\x12\x0e\n\tCOLLATION\x10\xd0\x02\x12\x0b\n\x06\x43OLUMN\x10\xd1\x02\x12\x0c\n\x07\x43OLUMNS\x10\xd2\x02\x12\x0c\n\x07\x43OMMENT\x10\xd3\x02\x12\r\n\x08\x43OMMENTS\x10\xd4\x02\x12\x0b\n\x06\x43OMMIT\x10\xd5\x02\x12\x0e\n\tCOMMITTED\x10\xd6\x02\x12\x10\n\x0b\x43OMPRESSION\x10\xd7\x02\x12\x11\n\x0c\x43ONCURRENTLY\x10\xd8\x02\x12\x12\n\rCONFIGURATION\x10\xd9\x02\x12\r\n\x08\x43ONFLICT\x10\xda\x02\x12\x0f\n\nCONNECTION\x10\xdb\x02\x12\x0f\n\nCONSTRAINT\x10\xdc\x02\x12\x10\n\x0b\x43ONSTRAINTS\x10\xdd\x02\x12\x0e\n\tCONTENT_P\x10\xde\x02\x12\x0f\n\nCONTINUE_P\x10\xdf\x02\x12\x11\n\x0c\x43ONVERSION_P\x10\xe0\x02\x12\t\n\x04\x43OPY\x10\xe1\x02\x12\t\n\x04\x43OST\x10\xe2\x02\x12\x0b\n\x06\x43REATE\x10\xe3\x02\x12\n\n\x05\x43ROSS\x10\xe4\x02\x12\x08\n\x03\x43SV\x10\xe5\x02\x12\t\n\x04\x43UBE\x10\xe6\x02\x12\x0e\n\tCURRENT_P\x10\xe7\x02\x12\x14\n\x0f\x43URRENT_CATALOG\x10\xe8\x02\x12\x11\n\x0c\x43URRENT_DATE\x10\xe9\x02\x12\x11\n\x0c\x43URRENT_ROLE\x10\xea\x02\x12\x13\n\x0e\x43URRENT_SCHEMA\x10\xeb\x02\x12\x11\n\x0c\x43URRENT_TIME\x10\xec\x02\x12\x16\n\x11\x43URRENT_TIMESTAMP\x10\xed\x02\x12\x11\n\x0c\x43URRENT_USER\x10\xee\x02\x12\x0b\n\x06\x43URSOR\x10\xef\x02\x12\n\n\x05\x43YCLE\x10\xf0\x02\x12\x0b\n\x06\x44\x41TA_P\x10\xf1\x02\x12\r\n\x08\x44\x41TABASE\x10\xf2\x02\x12\n\n\x05\x44\x41Y_P\x10\xf3\x02\x12\x0f\n\nDEALLOCATE\x10\xf4\x02\x12\x08\n\x03\x44\x45\x43\x10\xf5\x02\x12\x0e\n\tDECIMAL_P\x10\xf6\x02\x12\x0c\n\x07\x44\x45\x43LARE\x10\xf7\x02\x12\x0c\n\x07\x44\x45\x46\x41ULT\x10\xf8\x02\x12\r\n\x08\x44\x45\x46\x41ULTS\x10\xf9\x02\x12\x0f\n\nDEFERRABLE\x10\xfa\x02\x12\r\n\x08\x44\x45\x46\x45RRED\x10\xfb\x02\x12\x0c\n\x07\x44\x45\x46INER\x10\xfc\x02\x12\r\n\x08\x44\x45LETE_P\x10\xfd\x02\x12\x0e\n\tDELIMITER\x10\xfe\x02\x12\x0f\n\nDELIMITERS\x10\xff\x02\x12\x0c\n\x07\x44\x45PENDS\x10\x80\x03\x12\n\n\x05\x44\x45PTH\x10\x81\x03\x12\t\n\x04\x44\x45SC\x10\x82\x03\x12\x0b\n\x06\x44\x45TACH\x10\x83\x03\x12\x0f\n\nDICTIONARY\x10\x84\x03\x12\x0e\n\tDISABLE_P\x10\x85\x03\x12\x0c\n\x07\x44ISCARD\x10\x86\x03\x12\r\n\x08\x44ISTINCT\x10\x87\x03\x12\x07\n\x02\x44O\x10\x88\x03\x12\x0f\n\nDOCUMENT_P\x10\x89\x03\x12\r\n\x08\x44OMAIN_P\x10\x8a\x03\x12\r\n\x08\x44OUBLE_P\x10\x8b\x03\x12\t\n\x04\x44ROP\x10\x8c\x03\x12\t\n\x04\x45\x41\x43H\x10\x8d\x03\x12\t\n\x04\x45LSE\x10\x8e\x03\x12\r\n\x08\x45NABLE_P\x10\x8f\x03\x12\r\n\x08\x45NCODING\x10\x90\x03\x12\x0e\n\tENCRYPTED\x10\x91\x03\x12\n\n\x05\x45ND_P\x10\x92\x03\x12\x0b\n\x06\x45NUM_P\x10\x93\x03\x12\x0b\n\x06\x45SCAPE\x10\x94\x03\x12\n\n\x05\x45VENT\x10\x95\x03\x12\x0b\n\x06\x45XCEPT\x10\x96\x03\x12\x0c\n\x07\x45XCLUDE\x10\x97\x03\x12\x0e\n\tEXCLUDING\x10\x98\x03\x12\x0e\n\tEXCLUSIVE\x10\x99\x03\x12\x0c\n\x07\x45XECUTE\x10\x9a\x03\x12\x0b\n\x06\x45XISTS\x10\x9b\x03\x12\x0c\n\x07\x45XPLAIN\x10\x9c\x03\x12\x0f\n\nEXPRESSION\x10\x9d\x03\x12\x0e\n\tEXTENSION\x10\x9e\x03\x12\r\n\x08\x45XTERNAL\x10\x9f\x03\x12\x0c\n\x07\x45XTRACT\x10\xa0\x03\x12\x0c\n\x07\x46\x41LSE_P\x10\xa1\x03\x12\x0b\n\x06\x46\x41MILY\x10\xa2\x03\x12\n\n\x05\x46\x45TCH\x10\xa3\x03\x12\x0b\n\x06\x46ILTER\x10\xa4\x03\x12\r\n\x08\x46INALIZE\x10\xa5\x03\x12\x0c\n\x07\x46IRST_P\x10\xa6\x03\x12\x0c\n\x07\x46LOAT_P\x10\xa7\x03\x12\x0e\n\tFOLLOWING\x10\xa8\x03\x12\x08\n\x03\x46OR\x10\xa9\x03\x12\n\n\x05\x46ORCE\x10\xaa\x03\x12\x0c\n\x07\x46OREIGN\x10\xab\x03\x12\x0b\n\x06\x46ORMAT\x10\xac\x03\x12\x0c\n\x07\x46ORWARD\x10\xad\x03\x12\x0b\n\x06\x46REEZE\x10\xae\x03\x12\t\n\x04\x46ROM\x10\xaf\x03\x12\t\n\x04\x46ULL\x10\xb0\x03\x12\r\n\x08\x46UNCTION\x10\xb1\x03\x12\x0e\n\tFUNCTIONS\x10\xb2\x03\x12\x0e\n\tGENERATED\x10\xb3\x03\x12\x0b\n\x06GLOBAL\x10\xb4\x03\x12\n\n\x05GRANT\x10\xb5\x03\x12\x0c\n\x07GRANTED\x10\xb6\x03\x12\r\n\x08GREATEST\x10\xb7\x03\x12\x0c\n\x07GROUP_P\x10\xb8\x03\x12\r\n\x08GROUPING\x10\xb9\x03\x12\x0b\n\x06GROUPS\x10\xba\x03\x12\x0c\n\x07HANDLER\x10\xbb\x03\x12\x0b\n\x06HAVING\x10\xbc\x03\x12\r\n\x08HEADER_P\x10\xbd\x03\x12\t\n\x04HOLD\x10\xbe\x03\x12\x0b\n\x06HOUR_P\x10\xbf\x03\x12\x0f\n\nIDENTITY_P\x10\xc0\x03\x12\t\n\x04IF_P\x10\xc1\x03\x12\n\n\x05ILIKE\x10\xc2\x03\x12\x0e\n\tIMMEDIATE\x10\xc3\x03\x12\x0e\n\tIMMUTABLE\x10\xc4\x03\x12\x0f\n\nIMPLICIT_P\x10\xc5\x03\x12\r\n\x08IMPORT_P\x10\xc6\x03\x12\t\n\x04IN_P\x10\xc7\x03\x12\x0c\n\x07INCLUDE\x10\xc8\x03\x12\x0e\n\tINCLUDING\x10\xc9\x03\x12\x0e\n\tINCREMENT\x10\xca\x03\x12\x0b\n\x06INDENT\x10\xcb\x03\x12\n\n\x05INDEX\x10\xcc\x03\x12\x0c\n\x07INDEXES\x10\xcd\x03\x12\x0c\n\x07INHERIT\x10\xce\x03\x12\r\n\x08INHERITS\x10\xcf\x03\x12\x0e\n\tINITIALLY\x10\xd0\x03\x12\r\n\x08INLINE_P\x10\xd1\x03\x12\x0c\n\x07INNER_P\x10\xd2\x03\x12\n\n\x05INOUT\x10\xd3\x03\x12\x0c\n\x07INPUT_P\x10\xd4\x03\x12\x10\n\x0bINSENSITIVE\x10\xd5\x03\x12\x0b\n\x06INSERT\x10\xd6\x03\x12\x0c\n\x07INSTEAD\x10\xd7\x03\x12\n\n\x05INT_P\x10\xd8\x03\x12\x0c\n\x07INTEGER\x10\xd9\x03\x12\x0e\n\tINTERSECT\x10\xda\x03\x12\r\n\x08INTERVAL\x10\xdb\x03\x12\t\n\x04INTO\x10\xdc\x03\x12\x0c\n\x07INVOKER\x10\xdd\x03\x12\x07\n\x02IS\x10\xde\x03\x12\x0b\n\x06ISNULL\x10\xdf\x03\x12\x0e\n\tISOLATION\x10\xe0\x03\x12\t\n\x04JOIN\x10\xe1\x03\x12\t\n\x04JSON\x10\xe2\x03\x12\x0f\n\nJSON_ARRAY\x10\xe3\x03\x12\x12\n\rJSON_ARRAYAGG\x10\xe4\x03\x12\x10\n\x0bJSON_OBJECT\x10\xe5\x03\x12\x13\n\x0eJSON_OBJECTAGG\x10\xe6\x03\x12\x08\n\x03KEY\x10\xe7\x03\x12\t\n\x04KEYS\x10\xe8\x03\x12\n\n\x05LABEL\x10\xe9\x03\x12\r\n\x08LANGUAGE\x10\xea\x03\x12\x0c\n\x07LARGE_P\x10\xeb\x03\x12\x0b\n\x06LAST_P\x10\xec\x03\x12\x0e\n\tLATERAL_P\x10\xed\x03\x12\x0c\n\x07LEADING\x10\xee\x03\x12\x0e\n\tLEAKPROOF\x10\xef\x03\x12\n\n\x05LEAST\x10\xf0\x03\x12\t\n\x04LEFT\x10\xf1\x03\x12\n\n\x05LEVEL\x10\xf2\x03\x12\t\n\x04LIKE\x10\xf3\x03\x12\n\n\x05LIMIT\x10\xf4\x03\x12\x0b\n\x06LISTEN\x10\xf5\x03\x12\t\n\x04LOAD\x10\xf6\x03\x12\n\n\x05LOCAL\x10\xf7\x03\x12\x0e\n\tLOCALTIME\x10\xf8\x03\x12\x13\n\x0eLOCALTIMESTAMP\x10\xf9\x03\x12\r\n\x08LOCATION\x10\xfa\x03\x12\x0b\n\x06LOCK_P\x10\xfb\x03\x12\x0b\n\x06LOCKED\x10\xfc\x03\x12\x0b\n\x06LOGGED\x10\xfd\x03\x12\x0c\n\x07MAPPING\x10\xfe\x03\x12\n\n\x05MATCH\x10\xff\x03\x12\x0c\n\x07MATCHED\x10\x80\x04\x12\x11\n\x0cMATERIALIZED\x10\x81\x04\x12\r\n\x08MAXVALUE\x10\x82\x04\x12\n\n\x05MERGE\x10\x83\x04\x12\x0b\n\x06METHOD\x10\x84\x04\x12\r\n\x08MINUTE_P\x10\x85\x04\x12\r\n\x08MINVALUE\x10\x86\x04\x12\t\n\x04MODE\x10\x87\x04\x12\x0c\n\x07MONTH_P\x10\x88\x04\x12\t\n\x04MOVE\x10\x89\x04\x12\x0b\n\x06NAME_P\x10\x8a\x04\x12\n\n\x05NAMES\x10\x8b\x04\x12\r\n\x08NATIONAL\x10\x8c\x04\x12\x0c\n\x07NATURAL\x10\x8d\x04\x12\n\n\x05NCHAR\x10\x8e\x04\x12\x08\n\x03NEW\x10\x8f\x04\x12\t\n\x04NEXT\x10\x90\x04\x12\x08\n\x03NFC\x10\x91\x04\x12\x08\n\x03NFD\x10\x92\x04\x12\t\n\x04NFKC\x10\x93\x04\x12\t\n\x04NFKD\x10\x94\x04\x12\x07\n\x02NO\x10\x95\x04\x12\t\n\x04NONE\x10\x96\x04\x12\x0e\n\tNORMALIZE\x10\x97\x04\x12\x0f\n\nNORMALIZED\x10\x98\x04\x12\x08\n\x03NOT\x10\x99\x04\x12\x0c\n\x07NOTHING\x10\x9a\x04\x12\x0b\n\x06NOTIFY\x10\x9b\x04\x12\x0c\n\x07NOTNULL\x10\x9c\x04\x12\x0b\n\x06NOWAIT\x10\x9d\x04\x12\x0b\n\x06NULL_P\x10\x9e\x04\x12\x0b\n\x06NULLIF\x10\x9f\x04\x12\x0c\n\x07NULLS_P\x10\xa0\x04\x12\x0c\n\x07NUMERIC\x10\xa1\x04\x12\r\n\x08OBJECT_P\x10\xa2\x04\x12\x07\n\x02OF\x10\xa3\x04\x12\x08\n\x03OFF\x10\xa4\x04\x12\x0b\n\x06OFFSET\x10\xa5\x04\x12\t\n\x04OIDS\x10\xa6\x04\x12\x08\n\x03OLD\x10\xa7\x04\x12\x07\n\x02ON\x10\xa8\x04\x12\t\n\x04ONLY\x10\xa9\x04\x12\r\n\x08OPERATOR\x10\xaa\x04\x12\x0b\n\x06OPTION\x10\xab\x04\x12\x0c\n\x07OPTIONS\x10\xac\x04\x12\x07\n\x02OR\x10\xad\x04\x12\n\n\x05ORDER\x10\xae\x04\x12\x0f\n\nORDINALITY\x10\xaf\x04\x12\x0b\n\x06OTHERS\x10\xb0\x04\x12\n\n\x05OUT_P\x10\xb1\x04\x12\x0c\n\x07OUTER_P\x10\xb2\x04\x12\t\n\x04OVER\x10\xb3\x04\x12\r\n\x08OVERLAPS\x10\xb4\x04\x12\x0c\n\x07OVERLAY\x10\xb5\x04\x12\x0f\n\nOVERRIDING\x10\xb6\x04\x12\n\n\x05OWNED\x10\xb7\x04\x12\n\n\x05OWNER\x10\xb8\x04\x12\r\n\x08PARALLEL\x10\xb9\x04\x12\x0e\n\tPARAMETER\x10\xba\x04\x12\x0b\n\x06PARSER\x10\xbb\x04\x12\x0c\n\x07PARTIAL\x10\xbc\x04\x12\x0e\n\tPARTITION\x10\xbd\x04\x12\x0c\n\x07PASSING\x10\xbe\x04\x12\r\n\x08PASSWORD\x10\xbf\x04\x12\x0c\n\x07PLACING\x10\xc0\x04\x12\n\n\x05PLANS\x10\xc1\x04\x12\x0b\n\x06POLICY\x10\xc2\x04\x12\r\n\x08POSITION\x10\xc3\x04\x12\x0e\n\tPRECEDING\x10\xc4\x04\x12\x0e\n\tPRECISION\x10\xc5\x04\x12\r\n\x08PRESERVE\x10\xc6\x04\x12\x0c\n\x07PREPARE\x10\xc7\x04\x12\r\n\x08PREPARED\x10\xc8\x04\x12\x0c\n\x07PRIMARY\x10\xc9\x04\x12\n\n\x05PRIOR\x10\xca\x04\x12\x0f\n\nPRIVILEGES\x10\xcb\x04\x12\x0f\n\nPROCEDURAL\x10\xcc\x04\x12\x0e\n\tPROCEDURE\x10\xcd\x04\x12\x0f\n\nPROCEDURES\x10\xce\x04\x12\x0c\n\x07PROGRAM\x10\xcf\x04\x12\x10\n\x0bPUBLICATION\x10\xd0\x04\x12\n\n\x05QUOTE\x10\xd1\x04\x12\n\n\x05RANGE\x10\xd2\x04\x12\t\n\x04READ\x10\xd3\x04\x12\t\n\x04REAL\x10\xd4\x04\x12\r\n\x08REASSIGN\x10\xd5\x04\x12\x0c\n\x07RECHECK\x10\xd6\x04\x12\x0e\n\tRECURSIVE\x10\xd7\x04\x12\n\n\x05REF_P\x10\xd8\x04\x12\x0f\n\nREFERENCES\x10\xd9\x04\x12\x10\n\x0bREFERENCING\x10\xda\x04\x12\x0c\n\x07REFRESH\x10\xdb\x04\x12\x0c\n\x07REINDEX\x10\xdc\x04\x12\x0f\n\nRELATIVE_P\x10\xdd\x04\x12\x0c\n\x07RELEASE\x10\xde\x04\x12\x0b\n\x06RENAME\x10\xdf\x04\x12\x0f\n\nREPEATABLE\x10\xe0\x04\x12\x0c\n\x07REPLACE\x10\xe1\x04\x12\x0c\n\x07REPLICA\x10\xe2\x04\x12\n\n\x05RESET\x10\xe3\x04\x12\x0c\n\x07RESTART\x10\xe4\x04\x12\r\n\x08RESTRICT\x10\xe5\x04\x12\x0b\n\x06RETURN\x10\xe6\x04\x12\x0e\n\tRETURNING\x10\xe7\x04\x12\x0c\n\x07RETURNS\x10\xe8\x04\x12\x0b\n\x06REVOKE\x10\xe9\x04\x12\n\n\x05RIGHT\x10\xea\x04\x12\t\n\x04ROLE\x10\xeb\x04\x12\r\n\x08ROLLBACK\x10\xec\x04\x12\x0b\n\x06ROLLUP\x10\xed\x04\x12\x0c\n\x07ROUTINE\x10\xee\x04\x12\r\n\x08ROUTINES\x10\xef\x04\x12\x08\n\x03ROW\x10\xf0\x04\x12\t\n\x04ROWS\x10\xf1\x04\x12\t\n\x04RULE\x10\xf2\x04\x12\x0e\n\tSAVEPOINT\x10\xf3\x04\x12\x0b\n\x06SCALAR\x10\xf4\x04\x12\x0b\n\x06SCHEMA\x10\xf5\x04\x12\x0c\n\x07SCHEMAS\x10\xf6\x04\x12\x0b\n\x06SCROLL\x10\xf7\x04\x12\x0b\n\x06SEARCH\x10\xf8\x04\x12\r\n\x08SECOND_P\x10\xf9\x04\x12\r\n\x08SECURITY\x10\xfa\x04\x12\x0b\n\x06SELECT\x10\xfb\x04\x12\r\n\x08SEQUENCE\x10\xfc\x04\x12\x0e\n\tSEQUENCES\x10\xfd\x04\x12\x11\n\x0cSERIALIZABLE\x10\xfe\x04\x12\x0b\n\x06SERVER\x10\xff\x04\x12\x0c\n\x07SESSION\x10\x80\x05\x12\x11\n\x0cSESSION_USER\x10\x81\x05\x12\x08\n\x03SET\x10\x82\x05\x12\t\n\x04SETS\x10\x83\x05\x12\n\n\x05SETOF\x10\x84\x05\x12\n\n\x05SHARE\x10\x85\x05\x12\t\n\x04SHOW\x10\x86\x05\x12\x0c\n\x07SIMILAR\x10\x87\x05\x12\x0b\n\x06SIMPLE\x10\x88\x05\x12\t\n\x04SKIP\x10\x89\x05\x12\r\n\x08SMALLINT\x10\x8a\x05\x12\r\n\x08SNAPSHOT\x10\x8b\x05\x12\t\n\x04SOME\x10\x8c\x05\x12\n\n\x05SQL_P\x10\x8d\x05\x12\x0b\n\x06STABLE\x10\x8e\x05\x12\x11\n\x0cSTANDALONE_P\x10\x8f\x05\x12\n\n\x05START\x10\x90\x05\x12\x0e\n\tSTATEMENT\x10\x91\x05\x12\x0f\n\nSTATISTICS\x10\x92\x05\x12\n\n\x05STDIN\x10\x93\x05\x12\x0b\n\x06STDOUT\x10\x94\x05\x12\x0c\n\x07STORAGE\x10\x95\x05\x12\x0b\n\x06STORED\x10\x96\x05\x12\r\n\x08STRICT_P\x10\x97\x05\x12\x0c\n\x07STRIP_P\x10\x98\x05\x12\x11\n\x0cSUBSCRIPTION\x10\x99\x05\x12\x0e\n\tSUBSTRING\x10\x9a\x05\x12\x0c\n\x07SUPPORT\x10\x9b\x05\x12\x0e\n\tSYMMETRIC\x10\x9c\x05\x12\n\n\x05SYSID\x10\x9d\x05\x12\r\n\x08SYSTEM_P\x10\x9e\x05\x12\x10\n\x0bSYSTEM_USER\x10\x9f\x05\x12\n\n\x05TABLE\x10\xa0\x05\x12\x0b\n\x06TABLES\x10\xa1\x05\x12\x10\n\x0bTABLESAMPLE\x10\xa2\x05\x12\x0f\n\nTABLESPACE\x10\xa3\x05\x12\t\n\x04TEMP\x10\xa4\x05\x12\r\n\x08TEMPLATE\x10\xa5\x05\x12\x0e\n\tTEMPORARY\x10\xa6\x05\x12\x0b\n\x06TEXT_P\x10\xa7\x05\x12\t\n\x04THEN\x10\xa8\x05\x12\t\n\x04TIES\x10\xa9\x05\x12\t\n\x04TIME\x10\xaa\x05\x12\x0e\n\tTIMESTAMP\x10\xab\x05\x12\x07\n\x02TO\x10\xac\x05\x12\r\n\x08TRAILING\x10\xad\x05\x12\x10\n\x0bTRANSACTION\x10\xae\x05\x12\x0e\n\tTRANSFORM\x10\xaf\x05\x12\n\n\x05TREAT\x10\xb0\x05\x12\x0c\n\x07TRIGGER\x10\xb1\x05\x12\t\n\x04TRIM\x10\xb2\x05\x12\x0b\n\x06TRUE_P\x10\xb3\x05\x12\r\n\x08TRUNCATE\x10\xb4\x05\x12\x0c\n\x07TRUSTED\x10\xb5\x05\x12\x0b\n\x06TYPE_P\x10\xb6\x05\x12\x0c\n\x07TYPES_P\x10\xb7\x05\x12\x0c\n\x07UESCAPE\x10\xb8\x05\x12\x0e\n\tUNBOUNDED\x10\xb9\x05\x12\x10\n\x0bUNCOMMITTED\x10\xba\x05\x12\x10\n\x0bUNENCRYPTED\x10\xbb\x05\x12\n\n\x05UNION\x10\xbc\x05\x12\x0b\n\x06UNIQUE\x10\xbd\x05\x12\x0c\n\x07UNKNOWN\x10\xbe\x05\x12\r\n\x08UNLISTEN\x10\xbf\x05\x12\r\n\x08UNLOGGED\x10\xc0\x05\x12\n\n\x05UNTIL\x10\xc1\x05\x12\x0b\n\x06UPDATE\x10\xc2\x05\x12\t\n\x04USER\x10\xc3\x05\x12\n\n\x05USING\x10\xc4\x05\x12\x0b\n\x06VACUUM\x10\xc5\x05\x12\n\n\x05VALID\x10\xc6\x05\x12\r\n\x08VALIDATE\x10\xc7\x05\x12\x0e\n\tVALIDATOR\x10\xc8\x05\x12\x0c\n\x07VALUE_P\x10\xc9\x05\x12\x0b\n\x06VALUES\x10\xca\x05\x12\x0c\n\x07VARCHAR\x10\xcb\x05\x12\r\n\x08VARIADIC\x10\xcc\x05\x12\x0c\n\x07VARYING\x10\xcd\x05\x12\x0c\n\x07VERBOSE\x10\xce\x05\x12\x0e\n\tVERSION_P\x10\xcf\x05\x12\t\n\x04VIEW\x10\xd0\x05\x12\n\n\x05VIEWS\x10\xd1\x05\x12\r\n\x08VOLATILE\x10\xd2\x05\x12\t\n\x04WHEN\x10\xd3\x05\x12\n\n\x05WHERE\x10\xd4\x05\x12\x11\n\x0cWHITESPACE_P\x10\xd5\x05\x12\x0b\n\x06WINDOW\x10\xd6\x05\x12\t\n\x04WITH\x10\xd7\x05\x12\x0b\n\x06WITHIN\x10\xd8\x05\x12\x0c\n\x07WITHOUT\x10\xd9\x05\x12\t\n\x04WORK\x10\xda\x05\x12\x0c\n\x07WRAPPER\x10\xdb\x05\x12\n\n\x05WRITE\x10\xdc\x05\x12\n\n\x05XML_P\x10\xdd\x05\x12\x12\n\rXMLATTRIBUTES\x10\xde\x05\x12\x0e\n\tXMLCONCAT\x10\xdf\x05\x12\x0f\n\nXMLELEMENT\x10\xe0\x05\x12\x0e\n\tXMLEXISTS\x10\xe1\x05\x12\x0e\n\tXMLFOREST\x10\xe2\x05\x12\x12\n\rXMLNAMESPACES\x10\xe3\x05\x12\r\n\x08XMLPARSE\x10\xe4\x05\x12\n\n\x05XMLPI\x10\xe5\x05\x12\x0c\n\x07XMLROOT\x10\xe6\x05\x12\x11\n\x0cXMLSERIALIZE\x10\xe7\x05\x12\r\n\x08XMLTABLE\x10\xe8\x05\x12\x0b\n\x06YEAR_P\x10\xe9\x05\x12\n\n\x05YES_P\x10\xea\x05\x12\t\n\x04ZONE\x10\xeb\x05\x12\x0e\n\tFORMAT_LA\x10\xec\x05\x12\x0b\n\x06NOT_LA\x10\xed\x05\x12\r\n\x08NULLS_LA\x10\xee\x05\x12\x0c\n\x07WITH_LA\x10\xef\x05\x12\x0f\n\nWITHOUT_LA\x10\xf0\x05\x12\x13\n\x0eMODE_TYPE_NAME\x10\xf1\x05\x12\x16\n\x11MODE_PLPGSQL_EXPR\x10\xf2\x05\x12\x19\n\x14MODE_PLPGSQL_ASSIGN1\x10\xf3\x05\x12\x19\n\x14MODE_PLPGSQL_ASSIGN2\x10\xf4\x05\x12\x19\n\x14MODE_PLPGSQL_ASSIGN3\x10\xf5\x05\x12\x0b\n\x06UMINUS\x10\xf6\x05\x62\x06proto3"
8
+ descriptor_data = "\n\x0epg_query.proto\x12\x08pg_query\"@\n\x0bParseResult\x12\x0f\n\x07version\x18\x01 \x01(\x05\x12 \n\x05stmts\x18\x02 \x03(\x0b\x32\x11.pg_query.RawStmt\"B\n\nScanResult\x12\x0f\n\x07version\x18\x01 \x01(\x05\x12#\n\x06tokens\x18\x02 \x03(\x0b\x32\x13.pg_query.ScanToken\"\xc1\x85\x01\n\x04Node\x12\'\n\x05\x61lias\x18\x01 \x01(\x0b\x32\x0f.pg_query.AliasH\x00R\x05\x41lias\x12\x31\n\trange_var\x18\x02 \x01(\x0b\x32\x12.pg_query.RangeVarH\x00R\x08RangeVar\x12\x34\n\ntable_func\x18\x03 \x01(\x0b\x32\x13.pg_query.TableFuncH\x00R\tTableFunc\x12\x37\n\x0binto_clause\x18\x04 \x01(\x0b\x32\x14.pg_query.IntoClauseH\x00R\nIntoClause\x12!\n\x03var\x18\x05 \x01(\x0b\x32\r.pg_query.VarH\x00R\x03Var\x12\'\n\x05param\x18\x06 \x01(\x0b\x32\x0f.pg_query.ParamH\x00R\x05Param\x12*\n\x06\x61ggref\x18\x07 \x01(\x0b\x32\x10.pg_query.AggrefH\x00R\x06\x41ggref\x12=\n\rgrouping_func\x18\x08 \x01(\x0b\x32\x16.pg_query.GroupingFuncH\x00R\x0cGroupingFunc\x12\x37\n\x0bwindow_func\x18\t \x01(\x0b\x32\x14.pg_query.WindowFuncH\x00R\nWindowFunc\x12\x46\n\x10subscripting_ref\x18\n \x01(\x0b\x32\x19.pg_query.SubscriptingRefH\x00R\x0fSubscriptingRef\x12\x31\n\tfunc_expr\x18\x0b \x01(\x0b\x32\x12.pg_query.FuncExprH\x00R\x08\x46uncExpr\x12>\n\x0enamed_arg_expr\x18\x0c \x01(\x0b\x32\x16.pg_query.NamedArgExprH\x00R\x0cNamedArgExpr\x12+\n\x07op_expr\x18\r \x01(\x0b\x32\x10.pg_query.OpExprH\x00R\x06OpExpr\x12=\n\rdistinct_expr\x18\x0e \x01(\x0b\x32\x16.pg_query.DistinctExprH\x00R\x0c\x44istinctExpr\x12\x38\n\x0cnull_if_expr\x18\x0f \x01(\x0b\x32\x14.pg_query.NullIfExprH\x00R\nNullIfExpr\x12N\n\x14scalar_array_op_expr\x18\x10 \x01(\x0b\x32\x1b.pg_query.ScalarArrayOpExprH\x00R\x11ScalarArrayOpExpr\x12\x31\n\tbool_expr\x18\x11 \x01(\x0b\x32\x12.pg_query.BoolExprH\x00R\x08\x42oolExpr\x12.\n\x08sub_link\x18\x12 \x01(\x0b\x32\x11.pg_query.SubLinkH\x00R\x07SubLink\x12.\n\x08sub_plan\x18\x13 \x01(\x0b\x32\x11.pg_query.SubPlanH\x00R\x07SubPlan\x12P\n\x14\x61lternative_sub_plan\x18\x14 \x01(\x0b\x32\x1c.pg_query.AlternativeSubPlanH\x00R\x12\x41lternativeSubPlan\x12:\n\x0c\x66ield_select\x18\x15 \x01(\x0b\x32\x15.pg_query.FieldSelectH\x00R\x0b\x46ieldSelect\x12\x37\n\x0b\x66ield_store\x18\x16 \x01(\x0b\x32\x14.pg_query.FieldStoreH\x00R\nFieldStore\x12:\n\x0crelabel_type\x18\x17 \x01(\x0b\x32\x15.pg_query.RelabelTypeH\x00R\x0bRelabelType\x12;\n\rcoerce_via_io\x18\x18 \x01(\x0b\x32\x15.pg_query.CoerceViaIOH\x00R\x0b\x43oerceViaIO\x12G\n\x11\x61rray_coerce_expr\x18\x19 \x01(\x0b\x32\x19.pg_query.ArrayCoerceExprH\x00R\x0f\x41rrayCoerceExpr\x12P\n\x14\x63onvert_rowtype_expr\x18\x1a \x01(\x0b\x32\x1c.pg_query.ConvertRowtypeExprH\x00R\x12\x43onvertRowtypeExpr\x12:\n\x0c\x63ollate_expr\x18\x1b \x01(\x0b\x32\x15.pg_query.CollateExprH\x00R\x0b\x43ollateExpr\x12\x31\n\tcase_expr\x18\x1c \x01(\x0b\x32\x12.pg_query.CaseExprH\x00R\x08\x43\x61seExpr\x12\x31\n\tcase_when\x18\x1d \x01(\x0b\x32\x12.pg_query.CaseWhenH\x00R\x08\x43\x61seWhen\x12>\n\x0e\x63\x61se_test_expr\x18\x1e \x01(\x0b\x32\x16.pg_query.CaseTestExprH\x00R\x0c\x43\x61seTestExpr\x12\x34\n\narray_expr\x18\x1f \x01(\x0b\x32\x13.pg_query.ArrayExprH\x00R\tArrayExpr\x12.\n\x08row_expr\x18 \x01(\x0b\x32\x11.pg_query.RowExprH\x00R\x07RowExpr\x12\x44\n\x10row_compare_expr\x18! \x01(\x0b\x32\x18.pg_query.RowCompareExprH\x00R\x0eRowCompareExpr\x12=\n\rcoalesce_expr\x18\" \x01(\x0b\x32\x16.pg_query.CoalesceExprH\x00R\x0c\x43oalesceExpr\x12\x38\n\x0cmin_max_expr\x18# \x01(\x0b\x32\x14.pg_query.MinMaxExprH\x00R\nMinMaxExpr\x12I\n\x11sqlvalue_function\x18$ \x01(\x0b\x32\x1a.pg_query.SQLValueFunctionH\x00R\x10SQLValueFunction\x12.\n\x08xml_expr\x18% \x01(\x0b\x32\x11.pg_query.XmlExprH\x00R\x07XmlExpr\x12\x37\n\x0bjson_format\x18& \x01(\x0b\x32\x14.pg_query.JsonFormatH\x00R\nJsonFormat\x12@\n\x0ejson_returning\x18\' \x01(\x0b\x32\x17.pg_query.JsonReturningH\x00R\rJsonReturning\x12\x41\n\x0fjson_value_expr\x18( \x01(\x0b\x32\x17.pg_query.JsonValueExprH\x00R\rJsonValueExpr\x12S\n\x15json_constructor_expr\x18) \x01(\x0b\x32\x1d.pg_query.JsonConstructorExprH\x00R\x13JsonConstructorExpr\x12G\n\x11json_is_predicate\x18* \x01(\x0b\x32\x19.pg_query.JsonIsPredicateH\x00R\x0fJsonIsPredicate\x12\x31\n\tnull_test\x18+ \x01(\x0b\x32\x12.pg_query.NullTestH\x00R\x08NullTest\x12:\n\x0c\x62oolean_test\x18, \x01(\x0b\x32\x15.pg_query.BooleanTestH\x00R\x0b\x42ooleanTest\x12\x44\n\x10\x63oerce_to_domain\x18- \x01(\x0b\x32\x18.pg_query.CoerceToDomainH\x00R\x0e\x43oerceToDomain\x12T\n\x16\x63oerce_to_domain_value\x18. \x01(\x0b\x32\x1d.pg_query.CoerceToDomainValueH\x00R\x13\x43oerceToDomainValue\x12>\n\x0eset_to_default\x18/ \x01(\x0b\x32\x16.pg_query.SetToDefaultH\x00R\x0cSetToDefault\x12\x41\n\x0f\x63urrent_of_expr\x18\x30 \x01(\x0b\x32\x17.pg_query.CurrentOfExprH\x00R\rCurrentOfExpr\x12\x41\n\x0fnext_value_expr\x18\x31 \x01(\x0b\x32\x17.pg_query.NextValueExprH\x00R\rNextValueExpr\x12@\n\x0einference_elem\x18\x32 \x01(\x0b\x32\x17.pg_query.InferenceElemH\x00R\rInferenceElem\x12:\n\x0ctarget_entry\x18\x33 \x01(\x0b\x32\x15.pg_query.TargetEntryH\x00R\x0bTargetEntry\x12;\n\rrange_tbl_ref\x18\x34 \x01(\x0b\x32\x15.pg_query.RangeTblRefH\x00R\x0bRangeTblRef\x12\x31\n\tjoin_expr\x18\x35 \x01(\x0b\x32\x12.pg_query.JoinExprH\x00R\x08JoinExpr\x12\x31\n\tfrom_expr\x18\x36 \x01(\x0b\x32\x12.pg_query.FromExprH\x00R\x08\x46romExpr\x12\x44\n\x10on_conflict_expr\x18\x37 \x01(\x0b\x32\x18.pg_query.OnConflictExprH\x00R\x0eOnConflictExpr\x12\'\n\x05query\x18\x38 \x01(\x0b\x32\x0f.pg_query.QueryH\x00R\x05Query\x12\x31\n\ttype_name\x18\x39 \x01(\x0b\x32\x12.pg_query.TypeNameH\x00R\x08TypeName\x12\x34\n\ncolumn_ref\x18: \x01(\x0b\x32\x13.pg_query.ColumnRefH\x00R\tColumnRef\x12\x31\n\tparam_ref\x18; \x01(\x0b\x32\x12.pg_query.ParamRefH\x00R\x08ParamRef\x12*\n\x06\x61_expr\x18< \x01(\x0b\x32\x10.pg_query.A_ExprH\x00R\x06\x41_Expr\x12\x31\n\ttype_cast\x18= \x01(\x0b\x32\x12.pg_query.TypeCastH\x00R\x08TypeCast\x12@\n\x0e\x63ollate_clause\x18> \x01(\x0b\x32\x17.pg_query.CollateClauseH\x00R\rCollateClause\x12\x31\n\trole_spec\x18? \x01(\x0b\x32\x12.pg_query.RoleSpecH\x00R\x08RoleSpec\x12\x31\n\tfunc_call\x18@ \x01(\x0b\x32\x12.pg_query.FuncCallH\x00R\x08\x46uncCall\x12*\n\x06\x61_star\x18\x41 \x01(\x0b\x32\x10.pg_query.A_StarH\x00R\x06\x41_Star\x12\x33\n\ta_indices\x18\x42 \x01(\x0b\x32\x13.pg_query.A_IndicesH\x00R\tA_Indices\x12?\n\ra_indirection\x18\x43 \x01(\x0b\x32\x17.pg_query.A_IndirectionH\x00R\rA_Indirection\x12:\n\x0c\x61_array_expr\x18\x44 \x01(\x0b\x32\x15.pg_query.A_ArrayExprH\x00R\x0b\x41_ArrayExpr\x12\x34\n\nres_target\x18\x45 \x01(\x0b\x32\x13.pg_query.ResTargetH\x00R\tResTarget\x12\x44\n\x10multi_assign_ref\x18\x46 \x01(\x0b\x32\x18.pg_query.MultiAssignRefH\x00R\x0eMultiAssignRef\x12+\n\x07sort_by\x18G \x01(\x0b\x32\x10.pg_query.SortByH\x00R\x06SortBy\x12\x34\n\nwindow_def\x18H \x01(\x0b\x32\x13.pg_query.WindowDefH\x00R\tWindowDef\x12\x43\n\x0frange_subselect\x18I \x01(\x0b\x32\x18.pg_query.RangeSubselectH\x00R\x0eRangeSubselect\x12@\n\x0erange_function\x18J \x01(\x0b\x32\x17.pg_query.RangeFunctionH\x00R\rRangeFunction\x12\x44\n\x10range_table_func\x18K \x01(\x0b\x32\x18.pg_query.RangeTableFuncH\x00R\x0eRangeTableFunc\x12N\n\x14range_table_func_col\x18L \x01(\x0b\x32\x1b.pg_query.RangeTableFuncColH\x00R\x11RangeTableFuncCol\x12J\n\x12range_table_sample\x18M \x01(\x0b\x32\x1a.pg_query.RangeTableSampleH\x00R\x10RangeTableSample\x12\x34\n\ncolumn_def\x18N \x01(\x0b\x32\x13.pg_query.ColumnDefH\x00R\tColumnDef\x12G\n\x11table_like_clause\x18O \x01(\x0b\x32\x19.pg_query.TableLikeClauseH\x00R\x0fTableLikeClause\x12\x34\n\nindex_elem\x18P \x01(\x0b\x32\x13.pg_query.IndexElemH\x00R\tIndexElem\x12.\n\x08\x64\x65\x66_elem\x18Q \x01(\x0b\x32\x11.pg_query.DefElemH\x00R\x07\x44\x65\x66\x45lem\x12@\n\x0elocking_clause\x18R \x01(\x0b\x32\x17.pg_query.LockingClauseH\x00R\rLockingClause\x12=\n\rxml_serialize\x18S \x01(\x0b\x32\x16.pg_query.XmlSerializeH\x00R\x0cXmlSerialize\x12@\n\x0epartition_elem\x18T \x01(\x0b\x32\x17.pg_query.PartitionElemH\x00R\rPartitionElem\x12@\n\x0epartition_spec\x18U \x01(\x0b\x32\x17.pg_query.PartitionSpecH\x00R\rPartitionSpec\x12P\n\x14partition_bound_spec\x18V \x01(\x0b\x32\x1c.pg_query.PartitionBoundSpecH\x00R\x12PartitionBoundSpec\x12S\n\x15partition_range_datum\x18W \x01(\x0b\x32\x1d.pg_query.PartitionRangeDatumH\x00R\x13PartitionRangeDatum\x12=\n\rpartition_cmd\x18X \x01(\x0b\x32\x16.pg_query.PartitionCmdH\x00R\x0cPartitionCmd\x12\x41\n\x0frange_tbl_entry\x18Y \x01(\x0b\x32\x17.pg_query.RangeTblEntryH\x00R\rRangeTblEntry\x12L\n\x12rtepermission_info\x18Z \x01(\x0b\x32\x1b.pg_query.RTEPermissionInfoH\x00R\x11RTEPermissionInfo\x12J\n\x12range_tbl_function\x18[ \x01(\x0b\x32\x1a.pg_query.RangeTblFunctionH\x00R\x10RangeTblFunction\x12M\n\x13table_sample_clause\x18\\ \x01(\x0b\x32\x1b.pg_query.TableSampleClauseH\x00R\x11TableSampleClause\x12G\n\x11with_check_option\x18] \x01(\x0b\x32\x19.pg_query.WithCheckOptionH\x00R\x0fWithCheckOption\x12G\n\x11sort_group_clause\x18^ \x01(\x0b\x32\x19.pg_query.SortGroupClauseH\x00R\x0fSortGroupClause\x12:\n\x0cgrouping_set\x18_ \x01(\x0b\x32\x15.pg_query.GroupingSetH\x00R\x0bGroupingSet\x12=\n\rwindow_clause\x18` \x01(\x0b\x32\x16.pg_query.WindowClauseH\x00R\x0cWindowClause\x12\x41\n\x0frow_mark_clause\x18\x61 \x01(\x0b\x32\x17.pg_query.RowMarkClauseH\x00R\rRowMarkClause\x12\x37\n\x0bwith_clause\x18\x62 \x01(\x0b\x32\x14.pg_query.WithClauseH\x00R\nWithClause\x12:\n\x0cinfer_clause\x18\x63 \x01(\x0b\x32\x15.pg_query.InferClauseH\x00R\x0bInferClause\x12J\n\x12on_conflict_clause\x18\x64 \x01(\x0b\x32\x1a.pg_query.OnConflictClauseH\x00R\x10OnConflictClause\x12\x46\n\x10\x63tesearch_clause\x18\x65 \x01(\x0b\x32\x19.pg_query.CTESearchClauseH\x00R\x0f\x43TESearchClause\x12\x43\n\x0f\x63tecycle_clause\x18\x66 \x01(\x0b\x32\x18.pg_query.CTECycleClauseH\x00R\x0e\x43TECycleClause\x12G\n\x11\x63ommon_table_expr\x18g \x01(\x0b\x32\x19.pg_query.CommonTableExprH\x00R\x0f\x43ommonTableExpr\x12G\n\x11merge_when_clause\x18h \x01(\x0b\x32\x19.pg_query.MergeWhenClauseH\x00R\x0fMergeWhenClause\x12:\n\x0cmerge_action\x18i \x01(\x0b\x32\x15.pg_query.MergeActionH\x00R\x0bMergeAction\x12L\n\x12trigger_transition\x18j \x01(\x0b\x32\x1b.pg_query.TriggerTransitionH\x00R\x11TriggerTransition\x12\x37\n\x0bjson_output\x18k \x01(\x0b\x32\x14.pg_query.JsonOutputH\x00R\nJsonOutput\x12>\n\x0ejson_key_value\x18l \x01(\x0b\x32\x16.pg_query.JsonKeyValueH\x00R\x0cJsonKeyValue\x12Y\n\x17json_object_constructor\x18m \x01(\x0b\x32\x1f.pg_query.JsonObjectConstructorH\x00R\x15JsonObjectConstructor\x12V\n\x16json_array_constructor\x18n \x01(\x0b\x32\x1e.pg_query.JsonArrayConstructorH\x00R\x14JsonArrayConstructor\x12\x66\n\x1cjson_array_query_constructor\x18o \x01(\x0b\x32#.pg_query.JsonArrayQueryConstructorH\x00R\x19JsonArrayQueryConstructor\x12P\n\x14json_agg_constructor\x18p \x01(\x0b\x32\x1c.pg_query.JsonAggConstructorH\x00R\x12JsonAggConstructor\x12\x41\n\x0fjson_object_agg\x18q \x01(\x0b\x32\x17.pg_query.JsonObjectAggH\x00R\rJsonObjectAgg\x12>\n\x0ejson_array_agg\x18r \x01(\x0b\x32\x16.pg_query.JsonArrayAggH\x00R\x0cJsonArrayAgg\x12.\n\x08raw_stmt\x18s \x01(\x0b\x32\x11.pg_query.RawStmtH\x00R\x07RawStmt\x12\x37\n\x0binsert_stmt\x18t \x01(\x0b\x32\x14.pg_query.InsertStmtH\x00R\nInsertStmt\x12\x37\n\x0b\x64\x65lete_stmt\x18u \x01(\x0b\x32\x14.pg_query.DeleteStmtH\x00R\nDeleteStmt\x12\x37\n\x0bupdate_stmt\x18v \x01(\x0b\x32\x14.pg_query.UpdateStmtH\x00R\nUpdateStmt\x12\x34\n\nmerge_stmt\x18w \x01(\x0b\x32\x13.pg_query.MergeStmtH\x00R\tMergeStmt\x12\x37\n\x0bselect_stmt\x18x \x01(\x0b\x32\x14.pg_query.SelectStmtH\x00R\nSelectStmt\x12J\n\x12set_operation_stmt\x18y \x01(\x0b\x32\x1a.pg_query.SetOperationStmtH\x00R\x10SetOperationStmt\x12\x37\n\x0breturn_stmt\x18z \x01(\x0b\x32\x14.pg_query.ReturnStmtH\x00R\nReturnStmt\x12=\n\rplassign_stmt\x18{ \x01(\x0b\x32\x16.pg_query.PLAssignStmtH\x00R\x0cPLAssignStmt\x12J\n\x12\x63reate_schema_stmt\x18| \x01(\x0b\x32\x1a.pg_query.CreateSchemaStmtH\x00R\x10\x43reateSchemaStmt\x12\x44\n\x10\x61lter_table_stmt\x18} \x01(\x0b\x32\x18.pg_query.AlterTableStmtH\x00R\x0e\x41lterTableStmt\x12S\n\x15replica_identity_stmt\x18~ \x01(\x0b\x32\x1d.pg_query.ReplicaIdentityStmtH\x00R\x13ReplicaIdentityStmt\x12\x41\n\x0f\x61lter_table_cmd\x18\x7f \x01(\x0b\x32\x17.pg_query.AlterTableCmdH\x00R\rAlterTableCmd\x12Q\n\x14\x61lter_collation_stmt\x18\x80\x01 \x01(\x0b\x32\x1c.pg_query.AlterCollationStmtH\x00R\x12\x41lterCollationStmt\x12H\n\x11\x61lter_domain_stmt\x18\x81\x01 \x01(\x0b\x32\x19.pg_query.AlterDomainStmtH\x00R\x0f\x41lterDomainStmt\x12\x35\n\ngrant_stmt\x18\x82\x01 \x01(\x0b\x32\x13.pg_query.GrantStmtH\x00R\tGrantStmt\x12\x45\n\x10object_with_args\x18\x83\x01 \x01(\x0b\x32\x18.pg_query.ObjectWithArgsH\x00R\x0eObjectWithArgs\x12\x38\n\x0b\x61\x63\x63\x65ss_priv\x18\x84\x01 \x01(\x0b\x32\x14.pg_query.AccessPrivH\x00R\nAccessPriv\x12\x42\n\x0fgrant_role_stmt\x18\x85\x01 \x01(\x0b\x32\x17.pg_query.GrantRoleStmtH\x00R\rGrantRoleStmt\x12j\n\x1d\x61lter_default_privileges_stmt\x18\x86\x01 \x01(\x0b\x32$.pg_query.AlterDefaultPrivilegesStmtH\x00R\x1a\x41lterDefaultPrivilegesStmt\x12\x32\n\tcopy_stmt\x18\x87\x01 \x01(\x0b\x32\x12.pg_query.CopyStmtH\x00R\x08\x43opyStmt\x12H\n\x11variable_set_stmt\x18\x88\x01 \x01(\x0b\x32\x19.pg_query.VariableSetStmtH\x00R\x0fVariableSetStmt\x12K\n\x12variable_show_stmt\x18\x89\x01 \x01(\x0b\x32\x1a.pg_query.VariableShowStmtH\x00R\x10VariableShowStmt\x12\x38\n\x0b\x63reate_stmt\x18\x8a\x01 \x01(\x0b\x32\x14.pg_query.CreateStmtH\x00R\nCreateStmt\x12\x37\n\nconstraint\x18\x8b\x01 \x01(\x0b\x32\x14.pg_query.ConstraintH\x00R\nConstraint\x12X\n\x17\x63reate_table_space_stmt\x18\x8c\x01 \x01(\x0b\x32\x1e.pg_query.CreateTableSpaceStmtH\x00R\x14\x43reateTableSpaceStmt\x12R\n\x15\x64rop_table_space_stmt\x18\x8d\x01 \x01(\x0b\x32\x1c.pg_query.DropTableSpaceStmtH\x00R\x12\x44ropTableSpaceStmt\x12k\n\x1e\x61lter_table_space_options_stmt\x18\x8e\x01 \x01(\x0b\x32$.pg_query.AlterTableSpaceOptionsStmtH\x00R\x1a\x41lterTableSpaceOptionsStmt\x12\\\n\x19\x61lter_table_move_all_stmt\x18\x8f\x01 \x01(\x0b\x32\x1f.pg_query.AlterTableMoveAllStmtH\x00R\x15\x41lterTableMoveAllStmt\x12T\n\x15\x63reate_extension_stmt\x18\x90\x01 \x01(\x0b\x32\x1d.pg_query.CreateExtensionStmtH\x00R\x13\x43reateExtensionStmt\x12Q\n\x14\x61lter_extension_stmt\x18\x91\x01 \x01(\x0b\x32\x1c.pg_query.AlterExtensionStmtH\x00R\x12\x41lterExtensionStmt\x12j\n\x1d\x61lter_extension_contents_stmt\x18\x92\x01 \x01(\x0b\x32$.pg_query.AlterExtensionContentsStmtH\x00R\x1a\x41lterExtensionContentsStmt\x12\x42\n\x0f\x63reate_fdw_stmt\x18\x93\x01 \x01(\x0b\x32\x17.pg_query.CreateFdwStmtH\x00R\rCreateFdwStmt\x12?\n\x0e\x61lter_fdw_stmt\x18\x94\x01 \x01(\x0b\x32\x16.pg_query.AlterFdwStmtH\x00R\x0c\x41lterFdwStmt\x12\x61\n\x1a\x63reate_foreign_server_stmt\x18\x95\x01 \x01(\x0b\x32!.pg_query.CreateForeignServerStmtH\x00R\x17\x43reateForeignServerStmt\x12^\n\x19\x61lter_foreign_server_stmt\x18\x96\x01 \x01(\x0b\x32 .pg_query.AlterForeignServerStmtH\x00R\x16\x41lterForeignServerStmt\x12^\n\x19\x63reate_foreign_table_stmt\x18\x97\x01 \x01(\x0b\x32 .pg_query.CreateForeignTableStmtH\x00R\x16\x43reateForeignTableStmt\x12[\n\x18\x63reate_user_mapping_stmt\x18\x98\x01 \x01(\x0b\x32\x1f.pg_query.CreateUserMappingStmtH\x00R\x15\x43reateUserMappingStmt\x12X\n\x17\x61lter_user_mapping_stmt\x18\x99\x01 \x01(\x0b\x32\x1e.pg_query.AlterUserMappingStmtH\x00R\x14\x41lterUserMappingStmt\x12U\n\x16\x64rop_user_mapping_stmt\x18\x9a\x01 \x01(\x0b\x32\x1d.pg_query.DropUserMappingStmtH\x00R\x13\x44ropUserMappingStmt\x12\x61\n\x1aimport_foreign_schema_stmt\x18\x9b\x01 \x01(\x0b\x32!.pg_query.ImportForeignSchemaStmtH\x00R\x17ImportForeignSchemaStmt\x12K\n\x12\x63reate_policy_stmt\x18\x9c\x01 \x01(\x0b\x32\x1a.pg_query.CreatePolicyStmtH\x00R\x10\x43reatePolicyStmt\x12H\n\x11\x61lter_policy_stmt\x18\x9d\x01 \x01(\x0b\x32\x19.pg_query.AlterPolicyStmtH\x00R\x0f\x41lterPolicyStmt\x12?\n\x0e\x63reate_am_stmt\x18\x9e\x01 \x01(\x0b\x32\x16.pg_query.CreateAmStmtH\x00R\x0c\x43reateAmStmt\x12\x45\n\x10\x63reate_trig_stmt\x18\x9f\x01 \x01(\x0b\x32\x18.pg_query.CreateTrigStmtH\x00R\x0e\x43reateTrigStmt\x12U\n\x16\x63reate_event_trig_stmt\x18\xa0\x01 \x01(\x0b\x32\x1d.pg_query.CreateEventTrigStmtH\x00R\x13\x43reateEventTrigStmt\x12R\n\x15\x61lter_event_trig_stmt\x18\xa1\x01 \x01(\x0b\x32\x1c.pg_query.AlterEventTrigStmtH\x00R\x12\x41lterEventTrigStmt\x12H\n\x11\x63reate_plang_stmt\x18\xa2\x01 \x01(\x0b\x32\x19.pg_query.CreatePLangStmtH\x00R\x0f\x43reatePLangStmt\x12\x45\n\x10\x63reate_role_stmt\x18\xa3\x01 \x01(\x0b\x32\x18.pg_query.CreateRoleStmtH\x00R\x0e\x43reateRoleStmt\x12\x42\n\x0f\x61lter_role_stmt\x18\xa4\x01 \x01(\x0b\x32\x17.pg_query.AlterRoleStmtH\x00R\rAlterRoleStmt\x12L\n\x13\x61lter_role_set_stmt\x18\xa5\x01 \x01(\x0b\x32\x1a.pg_query.AlterRoleSetStmtH\x00R\x10\x41lterRoleSetStmt\x12?\n\x0e\x64rop_role_stmt\x18\xa6\x01 \x01(\x0b\x32\x16.pg_query.DropRoleStmtH\x00R\x0c\x44ropRoleStmt\x12\x42\n\x0f\x63reate_seq_stmt\x18\xa7\x01 \x01(\x0b\x32\x17.pg_query.CreateSeqStmtH\x00R\rCreateSeqStmt\x12?\n\x0e\x61lter_seq_stmt\x18\xa8\x01 \x01(\x0b\x32\x16.pg_query.AlterSeqStmtH\x00R\x0c\x41lterSeqStmt\x12\x38\n\x0b\x64\x65\x66ine_stmt\x18\xa9\x01 \x01(\x0b\x32\x14.pg_query.DefineStmtH\x00R\nDefineStmt\x12K\n\x12\x63reate_domain_stmt\x18\xaa\x01 \x01(\x0b\x32\x1a.pg_query.CreateDomainStmtH\x00R\x10\x43reateDomainStmt\x12O\n\x14\x63reate_op_class_stmt\x18\xab\x01 \x01(\x0b\x32\x1b.pg_query.CreateOpClassStmtH\x00R\x11\x43reateOpClassStmt\x12O\n\x14\x63reate_op_class_item\x18\xac\x01 \x01(\x0b\x32\x1b.pg_query.CreateOpClassItemH\x00R\x11\x43reateOpClassItem\x12R\n\x15\x63reate_op_family_stmt\x18\xad\x01 \x01(\x0b\x32\x1c.pg_query.CreateOpFamilyStmtH\x00R\x12\x43reateOpFamilyStmt\x12O\n\x14\x61lter_op_family_stmt\x18\xae\x01 \x01(\x0b\x32\x1b.pg_query.AlterOpFamilyStmtH\x00R\x11\x41lterOpFamilyStmt\x12\x32\n\tdrop_stmt\x18\xaf\x01 \x01(\x0b\x32\x12.pg_query.DropStmtH\x00R\x08\x44ropStmt\x12>\n\rtruncate_stmt\x18\xb0\x01 \x01(\x0b\x32\x16.pg_query.TruncateStmtH\x00R\x0cTruncateStmt\x12;\n\x0c\x63omment_stmt\x18\xb1\x01 \x01(\x0b\x32\x15.pg_query.CommentStmtH\x00R\x0b\x43ommentStmt\x12?\n\x0esec_label_stmt\x18\xb2\x01 \x01(\x0b\x32\x16.pg_query.SecLabelStmtH\x00R\x0cSecLabelStmt\x12N\n\x13\x64\x65\x63lare_cursor_stmt\x18\xb3\x01 \x01(\x0b\x32\x1b.pg_query.DeclareCursorStmtH\x00R\x11\x44\x65\x63lareCursorStmt\x12H\n\x11\x63lose_portal_stmt\x18\xb4\x01 \x01(\x0b\x32\x19.pg_query.ClosePortalStmtH\x00R\x0f\x43losePortalStmt\x12\x35\n\nfetch_stmt\x18\xb5\x01 \x01(\x0b\x32\x13.pg_query.FetchStmtH\x00R\tFetchStmt\x12\x35\n\nindex_stmt\x18\xb6\x01 \x01(\x0b\x32\x13.pg_query.IndexStmtH\x00R\tIndexStmt\x12H\n\x11\x63reate_stats_stmt\x18\xb7\x01 \x01(\x0b\x32\x19.pg_query.CreateStatsStmtH\x00R\x0f\x43reateStatsStmt\x12\x35\n\nstats_elem\x18\xb8\x01 \x01(\x0b\x32\x13.pg_query.StatsElemH\x00R\tStatsElem\x12\x45\n\x10\x61lter_stats_stmt\x18\xb9\x01 \x01(\x0b\x32\x18.pg_query.AlterStatsStmtH\x00R\x0e\x41lterStatsStmt\x12Q\n\x14\x63reate_function_stmt\x18\xba\x01 \x01(\x0b\x32\x1c.pg_query.CreateFunctionStmtH\x00R\x12\x43reateFunctionStmt\x12M\n\x12\x66unction_parameter\x18\xbb\x01 \x01(\x0b\x32\x1b.pg_query.FunctionParameterH\x00R\x11\x46unctionParameter\x12N\n\x13\x61lter_function_stmt\x18\xbc\x01 \x01(\x0b\x32\x1b.pg_query.AlterFunctionStmtH\x00R\x11\x41lterFunctionStmt\x12,\n\x07\x64o_stmt\x18\xbd\x01 \x01(\x0b\x32\x10.pg_query.DoStmtH\x00R\x06\x44oStmt\x12H\n\x11inline_code_block\x18\xbe\x01 \x01(\x0b\x32\x19.pg_query.InlineCodeBlockH\x00R\x0fInlineCodeBlock\x12\x32\n\tcall_stmt\x18\xbf\x01 \x01(\x0b\x32\x12.pg_query.CallStmtH\x00R\x08\x43\x61llStmt\x12;\n\x0c\x63\x61ll_context\x18\xc0\x01 \x01(\x0b\x32\x15.pg_query.CallContextH\x00R\x0b\x43\x61llContext\x12\x38\n\x0brename_stmt\x18\xc1\x01 \x01(\x0b\x32\x14.pg_query.RenameStmtH\x00R\nRenameStmt\x12^\n\x19\x61lter_object_depends_stmt\x18\xc2\x01 \x01(\x0b\x32 .pg_query.AlterObjectDependsStmtH\x00R\x16\x41lterObjectDependsStmt\x12[\n\x18\x61lter_object_schema_stmt\x18\xc3\x01 \x01(\x0b\x32\x1f.pg_query.AlterObjectSchemaStmtH\x00R\x15\x41lterObjectSchemaStmt\x12\x45\n\x10\x61lter_owner_stmt\x18\xc4\x01 \x01(\x0b\x32\x18.pg_query.AlterOwnerStmtH\x00R\x0e\x41lterOwnerStmt\x12N\n\x13\x61lter_operator_stmt\x18\xc5\x01 \x01(\x0b\x32\x1b.pg_query.AlterOperatorStmtH\x00R\x11\x41lterOperatorStmt\x12\x42\n\x0f\x61lter_type_stmt\x18\xc6\x01 \x01(\x0b\x32\x17.pg_query.AlterTypeStmtH\x00R\rAlterTypeStmt\x12\x32\n\trule_stmt\x18\xc7\x01 \x01(\x0b\x32\x12.pg_query.RuleStmtH\x00R\x08RuleStmt\x12\x38\n\x0bnotify_stmt\x18\xc8\x01 \x01(\x0b\x32\x14.pg_query.NotifyStmtH\x00R\nNotifyStmt\x12\x38\n\x0blisten_stmt\x18\xc9\x01 \x01(\x0b\x32\x14.pg_query.ListenStmtH\x00R\nListenStmt\x12>\n\runlisten_stmt\x18\xca\x01 \x01(\x0b\x32\x16.pg_query.UnlistenStmtH\x00R\x0cUnlistenStmt\x12G\n\x10transaction_stmt\x18\xcb\x01 \x01(\x0b\x32\x19.pg_query.TransactionStmtH\x00R\x0fTransactionStmt\x12N\n\x13\x63omposite_type_stmt\x18\xcc\x01 \x01(\x0b\x32\x1b.pg_query.CompositeTypeStmtH\x00R\x11\x43ompositeTypeStmt\x12\x45\n\x10\x63reate_enum_stmt\x18\xcd\x01 \x01(\x0b\x32\x18.pg_query.CreateEnumStmtH\x00R\x0e\x43reateEnumStmt\x12H\n\x11\x63reate_range_stmt\x18\xce\x01 \x01(\x0b\x32\x19.pg_query.CreateRangeStmtH\x00R\x0f\x43reateRangeStmt\x12\x42\n\x0f\x61lter_enum_stmt\x18\xcf\x01 \x01(\x0b\x32\x17.pg_query.AlterEnumStmtH\x00R\rAlterEnumStmt\x12\x32\n\tview_stmt\x18\xd0\x01 \x01(\x0b\x32\x12.pg_query.ViewStmtH\x00R\x08ViewStmt\x12\x32\n\tload_stmt\x18\xd1\x01 \x01(\x0b\x32\x12.pg_query.LoadStmtH\x00R\x08LoadStmt\x12>\n\rcreatedb_stmt\x18\xd2\x01 \x01(\x0b\x32\x16.pg_query.CreatedbStmtH\x00R\x0c\x43reatedbStmt\x12N\n\x13\x61lter_database_stmt\x18\xd3\x01 \x01(\x0b\x32\x1b.pg_query.AlterDatabaseStmtH\x00R\x11\x41lterDatabaseStmt\x12q\n alter_database_refresh_coll_stmt\x18\xd4\x01 \x01(\x0b\x32&.pg_query.AlterDatabaseRefreshCollStmtH\x00R\x1c\x41lterDatabaseRefreshCollStmt\x12X\n\x17\x61lter_database_set_stmt\x18\xd5\x01 \x01(\x0b\x32\x1e.pg_query.AlterDatabaseSetStmtH\x00R\x14\x41lterDatabaseSetStmt\x12\x38\n\x0b\x64ropdb_stmt\x18\xd6\x01 \x01(\x0b\x32\x14.pg_query.DropdbStmtH\x00R\nDropdbStmt\x12H\n\x11\x61lter_system_stmt\x18\xd7\x01 \x01(\x0b\x32\x19.pg_query.AlterSystemStmtH\x00R\x0f\x41lterSystemStmt\x12;\n\x0c\x63luster_stmt\x18\xd8\x01 \x01(\x0b\x32\x15.pg_query.ClusterStmtH\x00R\x0b\x43lusterStmt\x12\x38\n\x0bvacuum_stmt\x18\xd9\x01 \x01(\x0b\x32\x14.pg_query.VacuumStmtH\x00R\nVacuumStmt\x12\x44\n\x0fvacuum_relation\x18\xda\x01 \x01(\x0b\x32\x18.pg_query.VacuumRelationH\x00R\x0eVacuumRelation\x12;\n\x0c\x65xplain_stmt\x18\xdb\x01 \x01(\x0b\x32\x15.pg_query.ExplainStmtH\x00R\x0b\x45xplainStmt\x12O\n\x14\x63reate_table_as_stmt\x18\xdc\x01 \x01(\x0b\x32\x1b.pg_query.CreateTableAsStmtH\x00R\x11\x43reateTableAsStmt\x12R\n\x15refresh_mat_view_stmt\x18\xdd\x01 \x01(\x0b\x32\x1c.pg_query.RefreshMatViewStmtH\x00R\x12RefreshMatViewStmt\x12\x45\n\x10\x63heck_point_stmt\x18\xde\x01 \x01(\x0b\x32\x18.pg_query.CheckPointStmtH\x00R\x0e\x43heckPointStmt\x12;\n\x0c\x64iscard_stmt\x18\xdf\x01 \x01(\x0b\x32\x15.pg_query.DiscardStmtH\x00R\x0b\x44iscardStmt\x12\x32\n\tlock_stmt\x18\xe0\x01 \x01(\x0b\x32\x12.pg_query.LockStmtH\x00R\x08LockStmt\x12Q\n\x14\x63onstraints_set_stmt\x18\xe1\x01 \x01(\x0b\x32\x1c.pg_query.ConstraintsSetStmtH\x00R\x12\x43onstraintsSetStmt\x12;\n\x0creindex_stmt\x18\xe2\x01 \x01(\x0b\x32\x15.pg_query.ReindexStmtH\x00R\x0bReindexStmt\x12W\n\x16\x63reate_conversion_stmt\x18\xe3\x01 \x01(\x0b\x32\x1e.pg_query.CreateConversionStmtH\x00R\x14\x43reateConversionStmt\x12\x45\n\x10\x63reate_cast_stmt\x18\xe4\x01 \x01(\x0b\x32\x18.pg_query.CreateCastStmtH\x00R\x0e\x43reateCastStmt\x12T\n\x15\x63reate_transform_stmt\x18\xe5\x01 \x01(\x0b\x32\x1d.pg_query.CreateTransformStmtH\x00R\x13\x43reateTransformStmt\x12;\n\x0cprepare_stmt\x18\xe6\x01 \x01(\x0b\x32\x15.pg_query.PrepareStmtH\x00R\x0bPrepareStmt\x12;\n\x0c\x65xecute_stmt\x18\xe7\x01 \x01(\x0b\x32\x15.pg_query.ExecuteStmtH\x00R\x0b\x45xecuteStmt\x12\x44\n\x0f\x64\x65\x61llocate_stmt\x18\xe8\x01 \x01(\x0b\x32\x18.pg_query.DeallocateStmtH\x00R\x0e\x44\x65\x61llocateStmt\x12\x42\n\x0f\x64rop_owned_stmt\x18\xe9\x01 \x01(\x0b\x32\x17.pg_query.DropOwnedStmtH\x00R\rDropOwnedStmt\x12N\n\x13reassign_owned_stmt\x18\xea\x01 \x01(\x0b\x32\x1b.pg_query.ReassignOwnedStmtH\x00R\x11ReassignOwnedStmt\x12Z\n\x17\x61lter_tsdictionary_stmt\x18\xeb\x01 \x01(\x0b\x32\x1f.pg_query.AlterTSDictionaryStmtH\x00R\x15\x41lterTSDictionaryStmt\x12\x63\n\x1a\x61lter_tsconfiguration_stmt\x18\xec\x01 \x01(\x0b\x32\".pg_query.AlterTSConfigurationStmtH\x00R\x18\x41lterTSConfigurationStmt\x12J\n\x11publication_table\x18\xed\x01 \x01(\x0b\x32\x1a.pg_query.PublicationTableH\x00R\x10PublicationTable\x12Q\n\x14publication_obj_spec\x18\xee\x01 \x01(\x0b\x32\x1c.pg_query.PublicationObjSpecH\x00R\x12PublicationObjSpec\x12Z\n\x17\x63reate_publication_stmt\x18\xef\x01 \x01(\x0b\x32\x1f.pg_query.CreatePublicationStmtH\x00R\x15\x43reatePublicationStmt\x12W\n\x16\x61lter_publication_stmt\x18\xf0\x01 \x01(\x0b\x32\x1e.pg_query.AlterPublicationStmtH\x00R\x14\x41lterPublicationStmt\x12]\n\x18\x63reate_subscription_stmt\x18\xf1\x01 \x01(\x0b\x32 .pg_query.CreateSubscriptionStmtH\x00R\x16\x43reateSubscriptionStmt\x12Z\n\x17\x61lter_subscription_stmt\x18\xf2\x01 \x01(\x0b\x32\x1f.pg_query.AlterSubscriptionStmtH\x00R\x15\x41lterSubscriptionStmt\x12W\n\x16\x64rop_subscription_stmt\x18\xf3\x01 \x01(\x0b\x32\x1e.pg_query.DropSubscriptionStmtH\x00R\x14\x44ropSubscriptionStmt\x12.\n\x07integer\x18\xf4\x01 \x01(\x0b\x32\x11.pg_query.IntegerH\x00R\x07Integer\x12(\n\x05\x66loat\x18\xf5\x01 \x01(\x0b\x32\x0f.pg_query.FloatH\x00R\x05\x46loat\x12.\n\x07\x62oolean\x18\xf6\x01 \x01(\x0b\x32\x11.pg_query.BooleanH\x00R\x07\x42oolean\x12+\n\x06string\x18\xf7\x01 \x01(\x0b\x32\x10.pg_query.StringH\x00R\x06String\x12\x35\n\nbit_string\x18\xf8\x01 \x01(\x0b\x32\x13.pg_query.BitStringH\x00R\tBitString\x12%\n\x04list\x18\xf9\x01 \x01(\x0b\x32\x0e.pg_query.ListH\x00R\x04List\x12/\n\x08int_list\x18\xfa\x01 \x01(\x0b\x32\x11.pg_query.IntListH\x00R\x07IntList\x12/\n\x08oid_list\x18\xfb\x01 \x01(\x0b\x32\x11.pg_query.OidListH\x00R\x07OidList\x12.\n\x07\x61_const\x18\xfc\x01 \x01(\x0b\x32\x11.pg_query.A_ConstH\x00R\x07\x41_ConstB\x06\n\x04node\"\x17\n\x07Integer\x12\x0c\n\x04ival\x18\x01 \x01(\x05\"\x15\n\x05\x46loat\x12\x0c\n\x04\x66val\x18\x01 \x01(\t\"\x1a\n\x07\x42oolean\x12\x0f\n\x07\x62oolval\x18\x01 \x01(\x08\"\x16\n\x06String\x12\x0c\n\x04sval\x18\x01 \x01(\t\"\x1a\n\tBitString\x12\r\n\x05\x62sval\x18\x01 \x01(\t\"%\n\x04List\x12\x1d\n\x05items\x18\x01 \x03(\x0b\x32\x0e.pg_query.Node\"(\n\x07OidList\x12\x1d\n\x05items\x18\x01 \x03(\x0b\x32\x0e.pg_query.Node\"(\n\x07IntList\x12\x1d\n\x05items\x18\x01 \x03(\x0b\x32\x0e.pg_query.Node\"\xe4\x01\n\x07\x41_Const\x12!\n\x04ival\x18\x01 \x01(\x0b\x32\x11.pg_query.IntegerH\x00\x12\x1f\n\x04\x66val\x18\x02 \x01(\x0b\x32\x0f.pg_query.FloatH\x00\x12$\n\x07\x62oolval\x18\x03 \x01(\x0b\x32\x11.pg_query.BooleanH\x00\x12 \n\x04sval\x18\x04 \x01(\x0b\x32\x10.pg_query.StringH\x00\x12$\n\x05\x62sval\x18\x05 \x01(\x0b\x32\x13.pg_query.BitStringH\x00\x12\x0e\n\x06isnull\x18\n \x01(\x08\x12\x10\n\x08location\x18\x0b \x01(\x05\x42\x05\n\x03val\"Q\n\x05\x41lias\x12\x1c\n\taliasname\x18\x01 \x01(\tR\taliasname\x12*\n\x08\x63olnames\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x63olnames\"\xe3\x01\n\x08RangeVar\x12 \n\x0b\x63\x61talogname\x18\x01 \x01(\tR\x0b\x63\x61talogname\x12\x1e\n\nschemaname\x18\x02 \x01(\tR\nschemaname\x12\x18\n\x07relname\x18\x03 \x01(\tR\x07relname\x12\x10\n\x03inh\x18\x04 \x01(\x08R\x03inh\x12&\n\x0erelpersistence\x18\x05 \x01(\tR\x0erelpersistence\x12%\n\x05\x61lias\x18\x06 \x01(\x0b\x32\x0f.pg_query.AliasR\x05\x61lias\x12\x1a\n\x08location\x18\x07 \x01(\x05R\x08location\"\xaf\x04\n\tTableFunc\x12(\n\x07ns_uris\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x07ns_uris\x12*\n\x08ns_names\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x08ns_names\x12(\n\x07\x64ocexpr\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x07\x64ocexpr\x12(\n\x07rowexpr\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x07rowexpr\x12*\n\x08\x63olnames\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x63olnames\x12*\n\x08\x63oltypes\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x63oltypes\x12.\n\ncoltypmods\x18\x07 \x03(\x0b\x32\x0e.pg_query.NodeR\ncoltypmods\x12\x34\n\rcolcollations\x18\x08 \x03(\x0b\x32\x0e.pg_query.NodeR\rcolcollations\x12*\n\x08\x63olexprs\x18\t \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x63olexprs\x12\x30\n\x0b\x63oldefexprs\x18\n \x03(\x0b\x32\x0e.pg_query.NodeR\x0b\x63oldefexprs\x12\x1a\n\x08notnulls\x18\x0b \x03(\x04R\x08notnulls\x12$\n\rordinalitycol\x18\x0c \x01(\x05R\rordinalitycol\x12\x1a\n\x08location\x18\r \x01(\x05R\x08location\"\xdb\x02\n\nIntoClause\x12$\n\x03rel\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x03rel\x12+\n\tcol_names\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x63olNames\x12#\n\raccess_method\x18\x03 \x01(\tR\x0c\x61\x63\x63\x65ssMethod\x12(\n\x07options\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12\x35\n\ton_commit\x18\x05 \x01(\x0e\x32\x18.pg_query.OnCommitActionR\x08onCommit\x12(\n\x10table_space_name\x18\x06 \x01(\tR\x0etableSpaceName\x12-\n\nview_query\x18\x07 \x01(\x0b\x32\x0e.pg_query.NodeR\tviewQuery\x12\x1b\n\tskip_data\x18\x08 \x01(\x08R\x08skipData\"\x95\x02\n\x03Var\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x14\n\x05varno\x18\x02 \x01(\x05R\x05varno\x12\x1a\n\x08varattno\x18\x03 \x01(\x05R\x08varattno\x12\x18\n\x07vartype\x18\x04 \x01(\rR\x07vartype\x12\x1c\n\tvartypmod\x18\x05 \x01(\x05R\tvartypmod\x12\x1c\n\tvarcollid\x18\x06 \x01(\rR\tvarcollid\x12&\n\x0evarnullingrels\x18\x07 \x03(\x04R\x0evarnullingrels\x12 \n\x0bvarlevelsup\x18\x08 \x01(\rR\x0bvarlevelsup\x12\x1a\n\x08location\x18\t \x01(\x05R\x08location\"\xf4\x01\n\x05Param\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x31\n\tparamkind\x18\x02 \x01(\x0e\x32\x13.pg_query.ParamKindR\tparamkind\x12\x18\n\x07paramid\x18\x03 \x01(\x05R\x07paramid\x12\x1c\n\tparamtype\x18\x04 \x01(\rR\tparamtype\x12 \n\x0bparamtypmod\x18\x05 \x01(\x05R\x0bparamtypmod\x12 \n\x0bparamcollid\x18\x06 \x01(\rR\x0bparamcollid\x12\x1a\n\x08location\x18\x07 \x01(\x05R\x08location\"\xb2\x05\n\x06\x41ggref\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x1a\n\x08\x61ggfnoid\x18\x02 \x01(\rR\x08\x61ggfnoid\x12\x18\n\x07\x61ggtype\x18\x03 \x01(\rR\x07\x61ggtype\x12\x1c\n\taggcollid\x18\x04 \x01(\rR\taggcollid\x12 \n\x0binputcollid\x18\x05 \x01(\rR\x0binputcollid\x12\x30\n\x0b\x61ggargtypes\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x0b\x61ggargtypes\x12\x34\n\raggdirectargs\x18\x07 \x03(\x0b\x32\x0e.pg_query.NodeR\raggdirectargs\x12\"\n\x04\x61rgs\x18\x08 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12*\n\x08\x61ggorder\x18\t \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x61ggorder\x12\x30\n\x0b\x61ggdistinct\x18\n \x03(\x0b\x32\x0e.pg_query.NodeR\x0b\x61ggdistinct\x12,\n\taggfilter\x18\x0b \x01(\x0b\x32\x0e.pg_query.NodeR\taggfilter\x12\x18\n\x07\x61ggstar\x18\x0c \x01(\x08R\x07\x61ggstar\x12 \n\x0b\x61ggvariadic\x18\r \x01(\x08R\x0b\x61ggvariadic\x12\x18\n\x07\x61ggkind\x18\x0e \x01(\tR\x07\x61ggkind\x12 \n\x0b\x61gglevelsup\x18\x0f \x01(\rR\x0b\x61gglevelsup\x12.\n\x08\x61ggsplit\x18\x10 \x01(\x0e\x32\x12.pg_query.AggSplitR\x08\x61ggsplit\x12\x14\n\x05\x61ggno\x18\x11 \x01(\x05R\x05\x61ggno\x12\x1e\n\naggtransno\x18\x12 \x01(\x05R\naggtransno\x12\x1a\n\x08location\x18\x13 \x01(\x05R\x08location\"\xb6\x01\n\x0cGroupingFunc\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\"\n\x04\x61rgs\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\"\n\x04refs\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x04refs\x12 \n\x0b\x61gglevelsup\x18\x04 \x01(\rR\x0b\x61gglevelsup\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xdc\x02\n\nWindowFunc\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x1a\n\x08winfnoid\x18\x02 \x01(\rR\x08winfnoid\x12\x18\n\x07wintype\x18\x03 \x01(\rR\x07wintype\x12\x1c\n\twincollid\x18\x04 \x01(\rR\twincollid\x12 \n\x0binputcollid\x18\x05 \x01(\rR\x0binputcollid\x12\"\n\x04\x61rgs\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12,\n\taggfilter\x18\x07 \x01(\x0b\x32\x0e.pg_query.NodeR\taggfilter\x12\x16\n\x06winref\x18\x08 \x01(\rR\x06winref\x12\x18\n\x07winstar\x18\t \x01(\x08R\x07winstar\x12\x16\n\x06winagg\x18\n \x01(\x08R\x06winagg\x12\x1a\n\x08location\x18\x0b \x01(\x05R\x08location\"\xaf\x03\n\x0fSubscriptingRef\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12*\n\x10refcontainertype\x18\x02 \x01(\rR\x10refcontainertype\x12 \n\x0brefelemtype\x18\x03 \x01(\rR\x0brefelemtype\x12\x1e\n\nrefrestype\x18\x04 \x01(\rR\nrefrestype\x12\x1c\n\treftypmod\x18\x05 \x01(\x05R\treftypmod\x12\x1c\n\trefcollid\x18\x06 \x01(\rR\trefcollid\x12\x38\n\x0frefupperindexpr\x18\x07 \x03(\x0b\x32\x0e.pg_query.NodeR\x0frefupperindexpr\x12\x38\n\x0freflowerindexpr\x18\x08 \x03(\x0b\x32\x0e.pg_query.NodeR\x0freflowerindexpr\x12(\n\x07refexpr\x18\t \x01(\x0b\x32\x0e.pg_query.NodeR\x07refexpr\x12\x32\n\x0crefassgnexpr\x18\n \x01(\x0b\x32\x0e.pg_query.NodeR\x0crefassgnexpr\"\xea\x02\n\x08\x46uncExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x16\n\x06\x66uncid\x18\x02 \x01(\rR\x06\x66uncid\x12&\n\x0e\x66uncresulttype\x18\x03 \x01(\rR\x0e\x66uncresulttype\x12\x1e\n\nfuncretset\x18\x04 \x01(\x08R\nfuncretset\x12\"\n\x0c\x66uncvariadic\x18\x05 \x01(\x08R\x0c\x66uncvariadic\x12\x36\n\nfuncformat\x18\x06 \x01(\x0e\x32\x16.pg_query.CoercionFormR\nfuncformat\x12\x1e\n\nfunccollid\x18\x07 \x01(\rR\nfunccollid\x12 \n\x0binputcollid\x18\x08 \x01(\rR\x0binputcollid\x12\"\n\x04\x61rgs\x18\t \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\x1a\n\x08location\x18\n \x01(\x05R\x08location\"\xa0\x01\n\x0cNamedArgExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12 \n\x03\x61rg\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\x12\x1c\n\targnumber\x18\x04 \x01(\x05R\targnumber\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xfc\x01\n\x06OpExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x12\n\x04opno\x18\x02 \x01(\rR\x04opno\x12\"\n\x0copresulttype\x18\x03 \x01(\rR\x0copresulttype\x12\x1a\n\x08opretset\x18\x04 \x01(\x08R\x08opretset\x12\x1a\n\x08opcollid\x18\x05 \x01(\rR\x08opcollid\x12 \n\x0binputcollid\x18\x06 \x01(\rR\x0binputcollid\x12\"\n\x04\x61rgs\x18\x07 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\x1a\n\x08location\x18\x08 \x01(\x05R\x08location\"\x82\x02\n\x0c\x44istinctExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x12\n\x04opno\x18\x02 \x01(\rR\x04opno\x12\"\n\x0copresulttype\x18\x03 \x01(\rR\x0copresulttype\x12\x1a\n\x08opretset\x18\x04 \x01(\x08R\x08opretset\x12\x1a\n\x08opcollid\x18\x05 \x01(\rR\x08opcollid\x12 \n\x0binputcollid\x18\x06 \x01(\rR\x0binputcollid\x12\"\n\x04\x61rgs\x18\x07 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\x1a\n\x08location\x18\x08 \x01(\x05R\x08location\"\x80\x02\n\nNullIfExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x12\n\x04opno\x18\x02 \x01(\rR\x04opno\x12\"\n\x0copresulttype\x18\x03 \x01(\rR\x0copresulttype\x12\x1a\n\x08opretset\x18\x04 \x01(\x08R\x08opretset\x12\x1a\n\x08opcollid\x18\x05 \x01(\rR\x08opcollid\x12 \n\x0binputcollid\x18\x06 \x01(\rR\x0binputcollid\x12\"\n\x04\x61rgs\x18\x07 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\x1a\n\x08location\x18\x08 \x01(\x05R\x08location\"\xc2\x01\n\x11ScalarArrayOpExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x12\n\x04opno\x18\x02 \x01(\rR\x04opno\x12\x15\n\x06use_or\x18\x03 \x01(\x08R\x05useOr\x12 \n\x0binputcollid\x18\x04 \x01(\rR\x0binputcollid\x12\"\n\x04\x61rgs\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\x1a\n\x08location\x18\x06 \x01(\x05R\x08location\"\x9c\x01\n\x08\x42oolExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12.\n\x06\x62oolop\x18\x02 \x01(\x0e\x32\x16.pg_query.BoolExprTypeR\x06\x62oolop\x12\"\n\x04\x61rgs\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\x1a\n\x08location\x18\x04 \x01(\x05R\x08location\"\xa9\x02\n\x07SubLink\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x39\n\rsub_link_type\x18\x02 \x01(\x0e\x32\x15.pg_query.SubLinkTypeR\x0bsubLinkType\x12\x1e\n\x0bsub_link_id\x18\x03 \x01(\x05R\tsubLinkId\x12*\n\x08testexpr\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x08testexpr\x12+\n\toper_name\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x08operName\x12,\n\tsubselect\x18\x06 \x01(\x0b\x32\x0e.pg_query.NodeR\tsubselect\x12\x1a\n\x08location\x18\x07 \x01(\x05R\x08location\"\xb5\x05\n\x07SubPlan\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x39\n\rsub_link_type\x18\x02 \x01(\x0e\x32\x15.pg_query.SubLinkTypeR\x0bsubLinkType\x12*\n\x08testexpr\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x08testexpr\x12+\n\tparam_ids\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x08paramIds\x12\x18\n\x07plan_id\x18\x05 \x01(\x05R\x07plan_id\x12\x1c\n\tplan_name\x18\x06 \x01(\tR\tplan_name\x12$\n\x0e\x66irst_col_type\x18\x07 \x01(\rR\x0c\x66irstColType\x12(\n\x10\x66irst_col_typmod\x18\x08 \x01(\x05R\x0e\x66irstColTypmod\x12.\n\x13\x66irst_col_collation\x18\t \x01(\rR\x11\x66irstColCollation\x12$\n\x0euse_hash_table\x18\n \x01(\x08R\x0cuseHashTable\x12(\n\x10unknown_eq_false\x18\x0b \x01(\x08R\x0eunknownEqFalse\x12$\n\rparallel_safe\x18\x0c \x01(\x08R\rparallel_safe\x12+\n\tset_param\x18\r \x03(\x0b\x32\x0e.pg_query.NodeR\x08setParam\x12+\n\tpar_param\x18\x0e \x03(\x0b\x32\x0e.pg_query.NodeR\x08parParam\x12\"\n\x04\x61rgs\x18\x0f \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\"\n\x0cstartup_cost\x18\x10 \x01(\x01R\x0cstartup_cost\x12$\n\rper_call_cost\x18\x11 \x01(\x01R\rper_call_cost\"b\n\x12\x41lternativeSubPlan\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12*\n\x08subplans\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x08subplans\"\xd5\x01\n\x0b\x46ieldSelect\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12 \n\x03\x61rg\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12\x1a\n\x08\x66ieldnum\x18\x03 \x01(\x05R\x08\x66ieldnum\x12\x1e\n\nresulttype\x18\x04 \x01(\rR\nresulttype\x12\"\n\x0cresulttypmod\x18\x05 \x01(\x05R\x0cresulttypmod\x12\"\n\x0cresultcollid\x18\x06 \x01(\rR\x0cresultcollid\"\xc8\x01\n\nFieldStore\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12 \n\x03\x61rg\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12(\n\x07newvals\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x07newvals\x12,\n\tfieldnums\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\tfieldnums\x12\x1e\n\nresulttype\x18\x05 \x01(\rR\nresulttype\"\x93\x02\n\x0bRelabelType\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12 \n\x03\x61rg\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12\x1e\n\nresulttype\x18\x03 \x01(\rR\nresulttype\x12\"\n\x0cresulttypmod\x18\x04 \x01(\x05R\x0cresulttypmod\x12\"\n\x0cresultcollid\x18\x05 \x01(\rR\x0cresultcollid\x12<\n\rrelabelformat\x18\x06 \x01(\x0e\x32\x16.pg_query.CoercionFormR\rrelabelformat\x12\x1a\n\x08location\x18\x07 \x01(\x05R\x08location\"\xed\x01\n\x0b\x43oerceViaIO\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12 \n\x03\x61rg\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12\x1e\n\nresulttype\x18\x03 \x01(\rR\nresulttype\x12\"\n\x0cresultcollid\x18\x04 \x01(\rR\x0cresultcollid\x12:\n\x0c\x63oerceformat\x18\x05 \x01(\x0e\x32\x16.pg_query.CoercionFormR\x0c\x63oerceformat\x12\x1a\n\x08location\x18\x06 \x01(\x05R\x08location\"\xc1\x02\n\x0f\x41rrayCoerceExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12 \n\x03\x61rg\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12*\n\x08\x65lemexpr\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x08\x65lemexpr\x12\x1e\n\nresulttype\x18\x04 \x01(\rR\nresulttype\x12\"\n\x0cresulttypmod\x18\x05 \x01(\x05R\x0cresulttypmod\x12\"\n\x0cresultcollid\x18\x06 \x01(\rR\x0cresultcollid\x12:\n\x0c\x63oerceformat\x18\x07 \x01(\x0e\x32\x16.pg_query.CoercionFormR\x0c\x63oerceformat\x12\x1a\n\x08location\x18\x08 \x01(\x05R\x08location\"\xd2\x01\n\x12\x43onvertRowtypeExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12 \n\x03\x61rg\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12\x1e\n\nresulttype\x18\x03 \x01(\rR\nresulttype\x12<\n\rconvertformat\x18\x04 \x01(\x0e\x32\x16.pg_query.CoercionFormR\rconvertformat\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\x88\x01\n\x0b\x43ollateExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12 \n\x03\x61rg\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12\x19\n\x08\x63oll_oid\x18\x03 \x01(\rR\x07\x63ollOid\x12\x1a\n\x08location\x18\x04 \x01(\x05R\x08location\"\xf8\x01\n\x08\x43\x61seExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x1a\n\x08\x63\x61setype\x18\x02 \x01(\rR\x08\x63\x61setype\x12\x1e\n\ncasecollid\x18\x03 \x01(\rR\ncasecollid\x12 \n\x03\x61rg\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12\"\n\x04\x61rgs\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12,\n\tdefresult\x18\x06 \x01(\x0b\x32\x0e.pg_query.NodeR\tdefresult\x12\x1a\n\x08location\x18\x07 \x01(\x05R\x08location\"\x94\x01\n\x08\x43\x61seWhen\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\"\n\x04\x65xpr\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x04\x65xpr\x12&\n\x06result\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x06result\x12\x1a\n\x08location\x18\x04 \x01(\x05R\x08location\"\x82\x01\n\x0c\x43\x61seTestExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x17\n\x07type_id\x18\x02 \x01(\rR\x06typeId\x12\x19\n\x08type_mod\x18\x03 \x01(\x05R\x07typeMod\x12\x1c\n\tcollation\x18\x04 \x01(\rR\tcollation\"\x83\x02\n\tArrayExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\"\n\x0c\x61rray_typeid\x18\x02 \x01(\rR\x0c\x61rray_typeid\x12\"\n\x0c\x61rray_collid\x18\x03 \x01(\rR\x0c\x61rray_collid\x12&\n\x0e\x65lement_typeid\x18\x04 \x01(\rR\x0e\x65lement_typeid\x12*\n\x08\x65lements\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x65lements\x12\x1c\n\tmultidims\x18\x06 \x01(\x08R\tmultidims\x12\x1a\n\x08location\x18\x07 \x01(\x05R\x08location\"\xef\x01\n\x07RowExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\"\n\x04\x61rgs\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\x1e\n\nrow_typeid\x18\x03 \x01(\rR\nrow_typeid\x12\x36\n\nrow_format\x18\x04 \x01(\x0e\x32\x16.pg_query.CoercionFormR\nrow_format\x12*\n\x08\x63olnames\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x63olnames\x12\x1a\n\x08location\x18\x06 \x01(\x05R\x08location\"\xba\x02\n\x0eRowCompareExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x30\n\x06rctype\x18\x02 \x01(\x0e\x32\x18.pg_query.RowCompareTypeR\x06rctype\x12$\n\x05opnos\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x05opnos\x12.\n\nopfamilies\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\nopfamilies\x12\x32\n\x0cinputcollids\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x0cinputcollids\x12$\n\x05largs\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x05largs\x12$\n\x05rargs\x18\x07 \x03(\x0b\x32\x0e.pg_query.NodeR\x05rargs\"\xbc\x01\n\x0c\x43oalesceExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\"\n\x0c\x63oalescetype\x18\x02 \x01(\rR\x0c\x63oalescetype\x12&\n\x0e\x63oalescecollid\x18\x03 \x01(\rR\x0e\x63oalescecollid\x12\"\n\x04\x61rgs\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xf8\x01\n\nMinMaxExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x1e\n\nminmaxtype\x18\x02 \x01(\rR\nminmaxtype\x12\"\n\x0cminmaxcollid\x18\x03 \x01(\rR\x0cminmaxcollid\x12 \n\x0binputcollid\x18\x04 \x01(\rR\x0binputcollid\x12\"\n\x02op\x18\x05 \x01(\x0e\x32\x12.pg_query.MinMaxOpR\x02op\x12\"\n\x04\x61rgs\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\x1a\n\x08location\x18\x07 \x01(\x05R\x08location\"\xaa\x01\n\x10SQLValueFunction\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12,\n\x02op\x18\x02 \x01(\x0e\x32\x1c.pg_query.SQLValueFunctionOpR\x02op\x12\x12\n\x04type\x18\x03 \x01(\rR\x04type\x12\x16\n\x06typmod\x18\x04 \x01(\x05R\x06typmod\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xfd\x02\n\x07XmlExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12#\n\x02op\x18\x02 \x01(\x0e\x32\x13.pg_query.XmlExprOpR\x02op\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\x12.\n\nnamed_args\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\nnamed_args\x12,\n\targ_names\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\targ_names\x12\"\n\x04\x61rgs\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\x35\n\txmloption\x18\x07 \x01(\x0e\x32\x17.pg_query.XmlOptionTypeR\txmloption\x12\x16\n\x06indent\x18\x08 \x01(\x08R\x06indent\x12\x12\n\x04type\x18\t \x01(\rR\x04type\x12\x16\n\x06typmod\x18\n \x01(\x05R\x06typmod\x12\x1a\n\x08location\x18\x0b \x01(\x05R\x08location\"\x98\x01\n\nJsonFormat\x12:\n\x0b\x66ormat_type\x18\x01 \x01(\x0e\x32\x18.pg_query.JsonFormatTypeR\x0b\x66ormat_type\x12\x32\n\x08\x65ncoding\x18\x02 \x01(\x0e\x32\x16.pg_query.JsonEncodingR\x08\x65ncoding\x12\x1a\n\x08location\x18\x03 \x01(\x05R\x08location\"k\n\rJsonReturning\x12,\n\x06\x66ormat\x18\x01 \x01(\x0b\x32\x14.pg_query.JsonFormatR\x06\x66ormat\x12\x14\n\x05typid\x18\x02 \x01(\rR\x05typid\x12\x16\n\x06typmod\x18\x03 \x01(\x05R\x06typmod\"\xa1\x01\n\rJsonValueExpr\x12*\n\x08raw_expr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x08raw_expr\x12\x36\n\x0e\x66ormatted_expr\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x0e\x66ormatted_expr\x12,\n\x06\x66ormat\x18\x03 \x01(\x0b\x32\x14.pg_query.JsonFormatR\x06\x66ormat\"\xf1\x02\n\x13JsonConstructorExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x31\n\x04type\x18\x02 \x01(\x0e\x32\x1d.pg_query.JsonConstructorTypeR\x04type\x12\"\n\x04\x61rgs\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\"\n\x04\x66unc\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x04\x66unc\x12*\n\x08\x63oercion\x18\x05 \x01(\x0b\x32\x0e.pg_query.NodeR\x08\x63oercion\x12\x35\n\treturning\x18\x06 \x01(\x0b\x32\x17.pg_query.JsonReturningR\treturning\x12&\n\x0e\x61\x62sent_on_null\x18\x07 \x01(\x08R\x0e\x61\x62sent_on_null\x12\x16\n\x06unique\x18\x08 \x01(\x08R\x06unique\x12\x1a\n\x08location\x18\t \x01(\x05R\x08location\"\xd8\x01\n\x0fJsonIsPredicate\x12\"\n\x04\x65xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x04\x65xpr\x12,\n\x06\x66ormat\x18\x02 \x01(\x0b\x32\x14.pg_query.JsonFormatR\x06\x66ormat\x12\x35\n\titem_type\x18\x03 \x01(\x0e\x32\x17.pg_query.JsonValueTypeR\titem_type\x12 \n\x0bunique_keys\x18\x04 \x01(\x08R\x0bunique_keys\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xc2\x01\n\x08NullTest\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12 \n\x03\x61rg\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12:\n\x0cnulltesttype\x18\x03 \x01(\x0e\x32\x16.pg_query.NullTestTypeR\x0cnulltesttype\x12\x1a\n\x08\x61rgisrow\x18\x04 \x01(\x08R\x08\x61rgisrow\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xa9\x01\n\x0b\x42ooleanTest\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12 \n\x03\x61rg\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12:\n\x0c\x62ooltesttype\x18\x03 \x01(\x0e\x32\x16.pg_query.BoolTestTypeR\x0c\x62ooltesttype\x12\x1a\n\x08location\x18\x04 \x01(\x05R\x08location\"\x98\x02\n\x0e\x43oerceToDomain\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12 \n\x03\x61rg\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12\x1e\n\nresulttype\x18\x03 \x01(\rR\nresulttype\x12\"\n\x0cresulttypmod\x18\x04 \x01(\x05R\x0cresulttypmod\x12\"\n\x0cresultcollid\x18\x05 \x01(\rR\x0cresultcollid\x12>\n\x0e\x63oercionformat\x18\x06 \x01(\x0e\x32\x16.pg_query.CoercionFormR\x0e\x63oercionformat\x12\x1a\n\x08location\x18\x07 \x01(\x05R\x08location\"\xa5\x01\n\x13\x43oerceToDomainValue\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x17\n\x07type_id\x18\x02 \x01(\rR\x06typeId\x12\x19\n\x08type_mod\x18\x03 \x01(\x05R\x07typeMod\x12\x1c\n\tcollation\x18\x04 \x01(\rR\tcollation\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\x9e\x01\n\x0cSetToDefault\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x17\n\x07type_id\x18\x02 \x01(\rR\x06typeId\x12\x19\n\x08type_mod\x18\x03 \x01(\x05R\x07typeMod\x12\x1c\n\tcollation\x18\x04 \x01(\rR\tcollation\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\x8f\x01\n\rCurrentOfExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x16\n\x06\x63varno\x18\x02 \x01(\rR\x06\x63varno\x12 \n\x0b\x63ursor_name\x18\x03 \x01(\tR\x0b\x63ursor_name\x12\"\n\x0c\x63ursor_param\x18\x04 \x01(\x05R\x0c\x63ursor_param\"`\n\rNextValueExpr\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\x14\n\x05seqid\x18\x02 \x01(\rR\x05seqid\x12\x17\n\x07type_id\x18\x03 \x01(\rR\x06typeId\"\x9b\x01\n\rInferenceElem\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\"\n\x04\x65xpr\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x04\x65xpr\x12 \n\x0binfercollid\x18\x03 \x01(\rR\x0binfercollid\x12\"\n\x0cinferopclass\x18\x04 \x01(\rR\x0cinferopclass\"\x87\x02\n\x0bTargetEntry\x12 \n\x03xpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03xpr\x12\"\n\x04\x65xpr\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x04\x65xpr\x12\x14\n\x05resno\x18\x03 \x01(\x05R\x05resno\x12\x18\n\x07resname\x18\x04 \x01(\tR\x07resname\x12(\n\x0fressortgroupref\x18\x05 \x01(\rR\x0fressortgroupref\x12\x1e\n\nresorigtbl\x18\x06 \x01(\rR\nresorigtbl\x12\x1e\n\nresorigcol\x18\x07 \x01(\x05R\nresorigcol\x12\x18\n\x07resjunk\x18\x08 \x01(\x08R\x07resjunk\"\'\n\x0bRangeTblRef\x12\x18\n\x07rtindex\x18\x01 \x01(\x05R\x07rtindex\"\xf8\x02\n\x08JoinExpr\x12.\n\x08jointype\x18\x01 \x01(\x0e\x32\x12.pg_query.JoinTypeR\x08jointype\x12\x1d\n\nis_natural\x18\x02 \x01(\x08R\tisNatural\x12\"\n\x04larg\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x04larg\x12\"\n\x04rarg\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x04rarg\x12\x31\n\x0cusing_clause\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x0busingClause\x12;\n\x10join_using_alias\x18\x06 \x01(\x0b\x32\x0f.pg_query.AliasR\x10join_using_alias\x12$\n\x05quals\x18\x07 \x01(\x0b\x32\x0e.pg_query.NodeR\x05quals\x12%\n\x05\x61lias\x18\x08 \x01(\x0b\x32\x0f.pg_query.AliasR\x05\x61lias\x12\x18\n\x07rtindex\x18\t \x01(\x05R\x07rtindex\"\\\n\x08\x46romExpr\x12*\n\x08\x66romlist\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x66romlist\x12$\n\x05quals\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x05quals\"\x9e\x03\n\x0eOnConflictExpr\x12\x32\n\x06\x61\x63tion\x18\x01 \x01(\x0e\x32\x1a.pg_query.OnConflictActionR\x06\x61\x63tion\x12\x33\n\rarbiter_elems\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x0c\x61rbiterElems\x12\x33\n\rarbiter_where\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x0c\x61rbiterWhere\x12\x1e\n\nconstraint\x18\x04 \x01(\rR\nconstraint\x12\x36\n\x0fon_conflict_set\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\ronConflictSet\x12:\n\x11on_conflict_where\x18\x06 \x01(\x0b\x32\x0e.pg_query.NodeR\x0fonConflictWhere\x12$\n\x0e\x65xcl_rel_index\x18\x07 \x01(\x05R\x0c\x65xclRelIndex\x12\x34\n\x0e\x65xcl_rel_tlist\x18\x08 \x03(\x0b\x32\x0e.pg_query.NodeR\x0c\x65xclRelTlist\"\x81\x0f\n\x05Query\x12\x34\n\x0c\x63ommand_type\x18\x01 \x01(\x0e\x32\x11.pg_query.CmdTypeR\x0b\x63ommandType\x12\x38\n\x0cquery_source\x18\x02 \x01(\x0e\x32\x15.pg_query.QuerySourceR\x0bquerySource\x12\x1e\n\x0b\x63\x61n_set_tag\x18\x03 \x01(\x08R\tcanSetTag\x12\x31\n\x0cutility_stmt\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x0butilityStmt\x12\'\n\x0fresult_relation\x18\x05 \x01(\x05R\x0eresultRelation\x12\x19\n\x08has_aggs\x18\x06 \x01(\x08R\x07hasAggs\x12(\n\x10has_window_funcs\x18\x07 \x01(\x08R\x0ehasWindowFuncs\x12&\n\x0fhas_target_srfs\x18\x08 \x01(\x08R\rhasTargetSRFs\x12\"\n\rhas_sub_links\x18\t \x01(\x08R\x0bhasSubLinks\x12&\n\x0fhas_distinct_on\x18\n \x01(\x08R\rhasDistinctOn\x12#\n\rhas_recursive\x18\x0b \x01(\x08R\x0chasRecursive\x12*\n\x11has_modifying_cte\x18\x0c \x01(\x08R\x0fhasModifyingCTE\x12$\n\x0ehas_for_update\x18\r \x01(\x08R\x0chasForUpdate\x12(\n\x10has_row_security\x18\x0e \x01(\x08R\x0ehasRowSecurity\x12\x1b\n\tis_return\x18\x0f \x01(\x08R\x08isReturn\x12)\n\x08\x63te_list\x18\x10 \x03(\x0b\x32\x0e.pg_query.NodeR\x07\x63teList\x12&\n\x06rtable\x18\x11 \x03(\x0b\x32\x0e.pg_query.NodeR\x06rtable\x12\x32\n\x0crteperminfos\x18\x12 \x03(\x0b\x32\x0e.pg_query.NodeR\x0crteperminfos\x12.\n\x08jointree\x18\x13 \x01(\x0b\x32\x12.pg_query.FromExprR\x08jointree\x12:\n\x11merge_action_list\x18\x14 \x03(\x0b\x32\x0e.pg_query.NodeR\x0fmergeActionList\x12/\n\x14merge_use_outer_join\x18\x15 \x01(\x08R\x11mergeUseOuterJoin\x12/\n\x0btarget_list\x18\x16 \x03(\x0b\x32\x0e.pg_query.NodeR\ntargetList\x12\x34\n\x08override\x18\x17 \x01(\x0e\x32\x18.pg_query.OverridingKindR\x08override\x12\x39\n\x0bon_conflict\x18\x18 \x01(\x0b\x32\x18.pg_query.OnConflictExprR\nonConflict\x12\x35\n\x0ereturning_list\x18\x19 \x03(\x0b\x32\x0e.pg_query.NodeR\rreturningList\x12\x31\n\x0cgroup_clause\x18\x1a \x03(\x0b\x32\x0e.pg_query.NodeR\x0bgroupClause\x12%\n\x0egroup_distinct\x18\x1b \x01(\x08R\rgroupDistinct\x12\x33\n\rgrouping_sets\x18\x1c \x03(\x0b\x32\x0e.pg_query.NodeR\x0cgroupingSets\x12/\n\x0bhaving_qual\x18\x1d \x01(\x0b\x32\x0e.pg_query.NodeR\nhavingQual\x12\x33\n\rwindow_clause\x18\x1e \x03(\x0b\x32\x0e.pg_query.NodeR\x0cwindowClause\x12\x37\n\x0f\x64istinct_clause\x18\x1f \x03(\x0b\x32\x0e.pg_query.NodeR\x0e\x64istinctClause\x12/\n\x0bsort_clause\x18 \x03(\x0b\x32\x0e.pg_query.NodeR\nsortClause\x12\x31\n\x0climit_offset\x18! \x01(\x0b\x32\x0e.pg_query.NodeR\x0blimitOffset\x12/\n\x0blimit_count\x18\" \x01(\x0b\x32\x0e.pg_query.NodeR\nlimitCount\x12\x38\n\x0climit_option\x18# \x01(\x0e\x32\x15.pg_query.LimitOptionR\x0blimitOption\x12+\n\trow_marks\x18$ \x03(\x0b\x32\x0e.pg_query.NodeR\x08rowMarks\x12\x35\n\x0eset_operations\x18% \x01(\x0b\x32\x0e.pg_query.NodeR\rsetOperations\x12\x37\n\x0f\x63onstraint_deps\x18& \x03(\x0b\x32\x0e.pg_query.NodeR\x0e\x63onstraintDeps\x12<\n\x12with_check_options\x18\' \x03(\x0b\x32\x0e.pg_query.NodeR\x10withCheckOptions\x12$\n\rstmt_location\x18( \x01(\x05R\rstmt_location\x12\x1a\n\x08stmt_len\x18) \x01(\x05R\x08stmt_len\"\x90\x02\n\x08TypeName\x12$\n\x05names\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x05names\x12\x19\n\x08type_oid\x18\x02 \x01(\rR\x07typeOid\x12\x14\n\x05setof\x18\x03 \x01(\x08R\x05setof\x12\x1a\n\x08pct_type\x18\x04 \x01(\x08R\x08pct_type\x12(\n\x07typmods\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x07typmods\x12\x18\n\x07typemod\x18\x06 \x01(\x05R\x07typemod\x12\x31\n\x0c\x61rray_bounds\x18\x07 \x03(\x0b\x32\x0e.pg_query.NodeR\x0b\x61rrayBounds\x12\x1a\n\x08location\x18\x08 \x01(\x05R\x08location\"O\n\tColumnRef\x12&\n\x06\x66ields\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x06\x66ields\x12\x1a\n\x08location\x18\x02 \x01(\x05R\x08location\">\n\x08ParamRef\x12\x16\n\x06number\x18\x01 \x01(\x05R\x06number\x12\x1a\n\x08location\x18\x02 \x01(\x05R\x08location\"\xbf\x01\n\x06\x41_Expr\x12)\n\x04kind\x18\x01 \x01(\x0e\x32\x15.pg_query.A_Expr_KindR\x04kind\x12\"\n\x04name\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x04name\x12$\n\x05lexpr\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x05lexpr\x12$\n\x05rexpr\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x05rexpr\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"y\n\x08TypeCast\x12 \n\x03\x61rg\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12/\n\ttype_name\x18\x02 \x01(\x0b\x32\x12.pg_query.TypeNameR\x08typeName\x12\x1a\n\x08location\x18\x03 \x01(\x05R\x08location\"y\n\rCollateClause\x12 \n\x03\x61rg\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12*\n\x08\x63ollname\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x63ollname\x12\x1a\n\x08location\x18\x03 \x01(\x05R\x08location\"v\n\x08RoleSpec\x12\x32\n\x08roletype\x18\x01 \x01(\x0e\x32\x16.pg_query.RoleSpecTypeR\x08roletype\x12\x1a\n\x08rolename\x18\x02 \x01(\tR\x08rolename\x12\x1a\n\x08location\x18\x03 \x01(\x05R\x08location\"\xc7\x03\n\x08\x46uncCall\x12*\n\x08\x66uncname\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x66uncname\x12\"\n\x04\x61rgs\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12,\n\tagg_order\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\tagg_order\x12.\n\nagg_filter\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\nagg_filter\x12\'\n\x04over\x18\x05 \x01(\x0b\x32\x13.pg_query.WindowDefR\x04over\x12*\n\x10\x61gg_within_group\x18\x06 \x01(\x08R\x10\x61gg_within_group\x12\x1a\n\x08\x61gg_star\x18\x07 \x01(\x08R\x08\x61gg_star\x12\"\n\x0c\x61gg_distinct\x18\x08 \x01(\x08R\x0c\x61gg_distinct\x12$\n\rfunc_variadic\x18\t \x01(\x08R\rfunc_variadic\x12\x36\n\nfuncformat\x18\n \x01(\x0e\x32\x16.pg_query.CoercionFormR\nfuncformat\x12\x1a\n\x08location\x18\x0b \x01(\x05R\x08location\"\x08\n\x06\x41_Star\"o\n\tA_Indices\x12\x1a\n\x08is_slice\x18\x01 \x01(\x08R\x08is_slice\x12\"\n\x04lidx\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x04lidx\x12\"\n\x04uidx\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x04uidx\"c\n\rA_Indirection\x12 \n\x03\x61rg\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12\x30\n\x0bindirection\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x0bindirection\"U\n\x0b\x41_ArrayExpr\x12*\n\x08\x65lements\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x65lements\x12\x1a\n\x08location\x18\x02 \x01(\x05R\x08location\"\x8f\x01\n\tResTarget\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x30\n\x0bindirection\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x0bindirection\x12 \n\x03val\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x03val\x12\x1a\n\x08location\x18\x04 \x01(\x05R\x08location\"j\n\x0eMultiAssignRef\x12&\n\x06source\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x06source\x12\x14\n\x05\x63olno\x18\x02 \x01(\x05R\x05\x63olno\x12\x1a\n\x08ncolumns\x18\x03 \x01(\x05R\x08ncolumns\"\xdf\x01\n\x06SortBy\x12\"\n\x04node\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x04node\x12\x33\n\nsortby_dir\x18\x02 \x01(\x0e\x32\x13.pg_query.SortByDirR\nsortby_dir\x12\x39\n\x0csortby_nulls\x18\x03 \x01(\x0e\x32\x15.pg_query.SortByNullsR\x0csortby_nulls\x12%\n\x06use_op\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x05useOp\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xca\x02\n\tWindowDef\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x18\n\x07refname\x18\x02 \x01(\tR\x07refname\x12\x39\n\x10partition_clause\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x0fpartitionClause\x12\x31\n\x0corder_clause\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x0borderClause\x12#\n\rframe_options\x18\x05 \x01(\x05R\x0c\x66rameOptions\x12\x31\n\x0cstart_offset\x18\x06 \x01(\x0b\x32\x0e.pg_query.NodeR\x0bstartOffset\x12-\n\nend_offset\x18\x07 \x01(\x0b\x32\x0e.pg_query.NodeR\tendOffset\x12\x1a\n\x08location\x18\x08 \x01(\x05R\x08location\"}\n\x0eRangeSubselect\x12\x18\n\x07lateral\x18\x01 \x01(\x08R\x07lateral\x12*\n\x08subquery\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x08subquery\x12%\n\x05\x61lias\x18\x03 \x01(\x0b\x32\x0f.pg_query.AliasR\x05\x61lias\"\xf0\x01\n\rRangeFunction\x12\x18\n\x07lateral\x18\x01 \x01(\x08R\x07lateral\x12\x1e\n\nordinality\x18\x02 \x01(\x08R\nordinality\x12 \n\x0bis_rowsfrom\x18\x03 \x01(\x08R\x0bis_rowsfrom\x12,\n\tfunctions\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\tfunctions\x12%\n\x05\x61lias\x18\x05 \x01(\x0b\x32\x0f.pg_query.AliasR\x05\x61lias\x12.\n\ncoldeflist\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\ncoldeflist\"\x9b\x02\n\x0eRangeTableFunc\x12\x18\n\x07lateral\x18\x01 \x01(\x08R\x07lateral\x12(\n\x07\x64ocexpr\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x07\x64ocexpr\x12(\n\x07rowexpr\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x07rowexpr\x12.\n\nnamespaces\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\nnamespaces\x12(\n\x07\x63olumns\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x07\x63olumns\x12%\n\x05\x61lias\x18\x06 \x01(\x0b\x32\x0f.pg_query.AliasR\x05\x61lias\x12\x1a\n\x08location\x18\x07 \x01(\x05R\x08location\"\x9e\x02\n\x11RangeTableFuncCol\x12\x18\n\x07\x63olname\x18\x01 \x01(\tR\x07\x63olname\x12/\n\ttype_name\x18\x02 \x01(\x0b\x32\x12.pg_query.TypeNameR\x08typeName\x12&\n\x0e\x66or_ordinality\x18\x03 \x01(\x08R\x0e\x66or_ordinality\x12 \n\x0bis_not_null\x18\x04 \x01(\x08R\x0bis_not_null\x12(\n\x07\x63olexpr\x18\x05 \x01(\x0b\x32\x0e.pg_query.NodeR\x07\x63olexpr\x12.\n\ncoldefexpr\x18\x06 \x01(\x0b\x32\x0e.pg_query.NodeR\ncoldefexpr\x12\x1a\n\x08location\x18\x07 \x01(\x05R\x08location\"\xd6\x01\n\x10RangeTableSample\x12*\n\x08relation\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x08relation\x12&\n\x06method\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x06method\x12\"\n\x04\x61rgs\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12.\n\nrepeatable\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\nrepeatable\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xec\x05\n\tColumnDef\x12\x18\n\x07\x63olname\x18\x01 \x01(\tR\x07\x63olname\x12/\n\ttype_name\x18\x02 \x01(\x0b\x32\x12.pg_query.TypeNameR\x08typeName\x12 \n\x0b\x63ompression\x18\x03 \x01(\tR\x0b\x63ompression\x12\x1a\n\x08inhcount\x18\x04 \x01(\x05R\x08inhcount\x12\x1a\n\x08is_local\x18\x05 \x01(\x08R\x08is_local\x12 \n\x0bis_not_null\x18\x06 \x01(\x08R\x0bis_not_null\x12\"\n\x0cis_from_type\x18\x07 \x01(\x08R\x0cis_from_type\x12\x18\n\x07storage\x18\x08 \x01(\tR\x07storage\x12\"\n\x0cstorage_name\x18\t \x01(\tR\x0cstorage_name\x12\x30\n\x0braw_default\x18\n \x01(\x0b\x32\x0e.pg_query.NodeR\x0braw_default\x12\x36\n\x0e\x63ooked_default\x18\x0b \x01(\x0b\x32\x0e.pg_query.NodeR\x0e\x63ooked_default\x12\x1a\n\x08identity\x18\x0c \x01(\tR\x08identity\x12?\n\x11identity_sequence\x18\r \x01(\x0b\x32\x12.pg_query.RangeVarR\x10identitySequence\x12\x1c\n\tgenerated\x18\x0e \x01(\tR\tgenerated\x12\x38\n\x0b\x63oll_clause\x18\x0f \x01(\x0b\x32\x17.pg_query.CollateClauseR\ncollClause\x12\x19\n\x08\x63oll_oid\x18\x10 \x01(\rR\x07\x63ollOid\x12\x30\n\x0b\x63onstraints\x18\x11 \x03(\x0b\x32\x0e.pg_query.NodeR\x0b\x63onstraints\x12.\n\nfdwoptions\x18\x12 \x03(\x0b\x32\x0e.pg_query.NodeR\nfdwoptions\x12\x1a\n\x08location\x18\x13 \x01(\x05R\x08location\"~\n\x0fTableLikeClause\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12\x18\n\x07options\x18\x02 \x01(\rR\x07options\x12!\n\x0crelation_oid\x18\x03 \x01(\rR\x0brelationOid\"\xe1\x02\n\tIndexElem\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\"\n\x04\x65xpr\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x04\x65xpr\x12\"\n\x0cindexcolname\x18\x03 \x01(\tR\x0cindexcolname\x12,\n\tcollation\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\tcollation\x12(\n\x07opclass\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x07opclass\x12\x30\n\x0bopclassopts\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x0bopclassopts\x12/\n\x08ordering\x18\x07 \x01(\x0e\x32\x13.pg_query.SortByDirR\x08ordering\x12=\n\x0enulls_ordering\x18\x08 \x01(\x0e\x32\x15.pg_query.SortByNullsR\x0enulls_ordering\"\xbc\x01\n\x07\x44\x65\x66\x45lem\x12\"\n\x0c\x64\x65\x66namespace\x18\x01 \x01(\tR\x0c\x64\x65\x66namespace\x12\x18\n\x07\x64\x65\x66name\x18\x02 \x01(\tR\x07\x64\x65\x66name\x12 \n\x03\x61rg\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x61rg\x12\x35\n\tdefaction\x18\x04 \x01(\x0e\x32\x17.pg_query.DefElemActionR\tdefaction\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xb5\x01\n\rLockingClause\x12/\n\x0blocked_rels\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\nlockedRels\x12\x38\n\x08strength\x18\x02 \x01(\x0e\x32\x1c.pg_query.LockClauseStrengthR\x08strength\x12\x39\n\x0bwait_policy\x18\x03 \x01(\x0e\x32\x18.pg_query.LockWaitPolicyR\nwaitPolicy\"\xce\x01\n\x0cXmlSerialize\x12\x35\n\txmloption\x18\x01 \x01(\x0e\x32\x17.pg_query.XmlOptionTypeR\txmloption\x12\"\n\x04\x65xpr\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x04\x65xpr\x12/\n\ttype_name\x18\x03 \x01(\x0b\x32\x12.pg_query.TypeNameR\x08typeName\x12\x16\n\x06indent\x18\x04 \x01(\x08R\x06indent\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xbb\x01\n\rPartitionElem\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\"\n\x04\x65xpr\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x04\x65xpr\x12,\n\tcollation\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\tcollation\x12(\n\x07opclass\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x07opclass\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\x95\x01\n\rPartitionSpec\x12\x37\n\x08strategy\x18\x01 \x01(\x0e\x32\x1b.pg_query.PartitionStrategyR\x08strategy\x12/\n\x0bpart_params\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\npartParams\x12\x1a\n\x08location\x18\x03 \x01(\x05R\x08location\"\xb8\x02\n\x12PartitionBoundSpec\x12\x1a\n\x08strategy\x18\x01 \x01(\tR\x08strategy\x12\x1e\n\nis_default\x18\x02 \x01(\x08R\nis_default\x12\x18\n\x07modulus\x18\x03 \x01(\x05R\x07modulus\x12\x1c\n\tremainder\x18\x04 \x01(\x05R\tremainder\x12.\n\nlistdatums\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\nlistdatums\x12\x30\n\x0blowerdatums\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x0blowerdatums\x12\x30\n\x0bupperdatums\x18\x07 \x03(\x0b\x32\x0e.pg_query.NodeR\x0bupperdatums\x12\x1a\n\x08location\x18\x08 \x01(\x05R\x08location\"\x8e\x01\n\x13PartitionRangeDatum\x12\x35\n\x04kind\x18\x01 \x01(\x0e\x32!.pg_query.PartitionRangeDatumKindR\x04kind\x12$\n\x05value\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x05value\x12\x1a\n\x08location\x18\x03 \x01(\x05R\x08location\"\x8a\x01\n\x0cPartitionCmd\x12&\n\x04name\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x04name\x12\x32\n\x05\x62ound\x18\x02 \x01(\x0b\x32\x1c.pg_query.PartitionBoundSpecR\x05\x62ound\x12\x1e\n\nconcurrent\x18\x03 \x01(\x08R\nconcurrent\"\xb9\n\n\rRangeTblEntry\x12+\n\x07rtekind\x18\x01 \x01(\x0e\x32\x11.pg_query.RTEKindR\x07rtekind\x12\x14\n\x05relid\x18\x02 \x01(\rR\x05relid\x12\x18\n\x07relkind\x18\x03 \x01(\tR\x07relkind\x12 \n\x0brellockmode\x18\x04 \x01(\x05R\x0brellockmode\x12=\n\x0btablesample\x18\x05 \x01(\x0b\x32\x1b.pg_query.TableSampleClauseR\x0btablesample\x12$\n\rperminfoindex\x18\x06 \x01(\rR\rperminfoindex\x12+\n\x08subquery\x18\x07 \x01(\x0b\x32\x0f.pg_query.QueryR\x08subquery\x12*\n\x10security_barrier\x18\x08 \x01(\x08R\x10security_barrier\x12.\n\x08jointype\x18\t \x01(\x0e\x32\x12.pg_query.JoinTypeR\x08jointype\x12&\n\x0ejoinmergedcols\x18\n \x01(\x05R\x0ejoinmergedcols\x12\x34\n\rjoinaliasvars\x18\x0b \x03(\x0b\x32\x0e.pg_query.NodeR\rjoinaliasvars\x12\x32\n\x0cjoinleftcols\x18\x0c \x03(\x0b\x32\x0e.pg_query.NodeR\x0cjoinleftcols\x12\x34\n\rjoinrightcols\x18\r \x03(\x0b\x32\x0e.pg_query.NodeR\rjoinrightcols\x12;\n\x10join_using_alias\x18\x0e \x01(\x0b\x32\x0f.pg_query.AliasR\x10join_using_alias\x12,\n\tfunctions\x18\x0f \x03(\x0b\x32\x0e.pg_query.NodeR\tfunctions\x12&\n\x0e\x66uncordinality\x18\x10 \x01(\x08R\x0e\x66uncordinality\x12\x31\n\ttablefunc\x18\x11 \x01(\x0b\x32\x13.pg_query.TableFuncR\ttablefunc\x12\x32\n\x0cvalues_lists\x18\x12 \x03(\x0b\x32\x0e.pg_query.NodeR\x0cvalues_lists\x12\x18\n\x07\x63tename\x18\x13 \x01(\tR\x07\x63tename\x12 \n\x0b\x63televelsup\x18\x14 \x01(\rR\x0b\x63televelsup\x12&\n\x0eself_reference\x18\x15 \x01(\x08R\x0eself_reference\x12*\n\x08\x63oltypes\x18\x16 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x63oltypes\x12.\n\ncoltypmods\x18\x17 \x03(\x0b\x32\x0e.pg_query.NodeR\ncoltypmods\x12\x34\n\rcolcollations\x18\x18 \x03(\x0b\x32\x0e.pg_query.NodeR\rcolcollations\x12\x18\n\x07\x65nrname\x18\x19 \x01(\tR\x07\x65nrname\x12\x1c\n\tenrtuples\x18\x1a \x01(\x01R\tenrtuples\x12%\n\x05\x61lias\x18\x1b \x01(\x0b\x32\x0f.pg_query.AliasR\x05\x61lias\x12#\n\x04\x65ref\x18\x1c \x01(\x0b\x32\x0f.pg_query.AliasR\x04\x65ref\x12\x18\n\x07lateral\x18\x1d \x01(\x08R\x07lateral\x12\x10\n\x03inh\x18\x1e \x01(\x08R\x03inh\x12\x1c\n\nin_from_cl\x18\x1f \x01(\x08R\x08inFromCl\x12\x35\n\x0esecurity_quals\x18 \x03(\x0b\x32\x0e.pg_query.NodeR\rsecurityQuals\"\xf3\x01\n\x11RTEPermissionInfo\x12\x14\n\x05relid\x18\x01 \x01(\rR\x05relid\x12\x10\n\x03inh\x18\x02 \x01(\x08R\x03inh\x12%\n\x0erequired_perms\x18\x03 \x01(\x04R\rrequiredPerms\x12\"\n\rcheck_as_user\x18\x04 \x01(\rR\x0b\x63heckAsUser\x12#\n\rselected_cols\x18\x05 \x03(\x04R\x0cselectedCols\x12#\n\rinserted_cols\x18\x06 \x03(\x04R\x0cinsertedCols\x12!\n\x0cupdated_cols\x18\x07 \x03(\x04R\x0bupdatedCols\"\xe0\x02\n\x10RangeTblFunction\x12*\n\x08\x66uncexpr\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x08\x66uncexpr\x12\"\n\x0c\x66unccolcount\x18\x02 \x01(\x05R\x0c\x66unccolcount\x12\x32\n\x0c\x66unccolnames\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x0c\x66unccolnames\x12\x32\n\x0c\x66unccoltypes\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x0c\x66unccoltypes\x12\x36\n\x0e\x66unccoltypmods\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x0e\x66unccoltypmods\x12<\n\x11\x66unccolcollations\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x11\x66unccolcollations\x12\x1e\n\nfuncparams\x18\x07 \x03(\x04R\nfuncparams\"\x87\x01\n\x11TableSampleClause\x12\x1e\n\ntsmhandler\x18\x01 \x01(\rR\ntsmhandler\x12\"\n\x04\x61rgs\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12.\n\nrepeatable\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\nrepeatable\"\xac\x01\n\x0fWithCheckOption\x12%\n\x04kind\x18\x01 \x01(\x0e\x32\x11.pg_query.WCOKindR\x04kind\x12\x18\n\x07relname\x18\x02 \x01(\tR\x07relname\x12\x18\n\x07polname\x18\x03 \x01(\tR\x07polname\x12\"\n\x04qual\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x04qual\x12\x1a\n\x08\x63\x61scaded\x18\x05 \x01(\x08R\x08\x63\x61scaded\"\xa8\x01\n\x0fSortGroupClause\x12+\n\x12tle_sort_group_ref\x18\x01 \x01(\rR\x0ftleSortGroupRef\x12\x12\n\x04\x65qop\x18\x02 \x01(\rR\x04\x65qop\x12\x16\n\x06sortop\x18\x03 \x01(\rR\x06sortop\x12 \n\x0bnulls_first\x18\x04 \x01(\x08R\x0bnulls_first\x12\x1a\n\x08hashable\x18\x05 \x01(\x08R\x08hashable\"\x82\x01\n\x0bGroupingSet\x12-\n\x04kind\x18\x01 \x01(\x0e\x32\x19.pg_query.GroupingSetKindR\x04kind\x12(\n\x07\x63ontent\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07\x63ontent\x12\x1a\n\x08location\x18\x03 \x01(\x05R\x08location\"\xf2\x04\n\x0cWindowClause\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x18\n\x07refname\x18\x02 \x01(\tR\x07refname\x12\x39\n\x10partition_clause\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x0fpartitionClause\x12\x31\n\x0corder_clause\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x0borderClause\x12#\n\rframe_options\x18\x05 \x01(\x05R\x0c\x66rameOptions\x12\x31\n\x0cstart_offset\x18\x06 \x01(\x0b\x32\x0e.pg_query.NodeR\x0bstartOffset\x12-\n\nend_offset\x18\x07 \x01(\x0b\x32\x0e.pg_query.NodeR\tendOffset\x12\x33\n\rrun_condition\x18\x08 \x03(\x0b\x32\x0e.pg_query.NodeR\x0crunCondition\x12-\n\x13start_in_range_func\x18\t \x01(\rR\x10startInRangeFunc\x12)\n\x11\x65nd_in_range_func\x18\n \x01(\rR\x0e\x65ndInRangeFunc\x12\"\n\rin_range_coll\x18\x0b \x01(\rR\x0binRangeColl\x12 \n\x0cin_range_asc\x18\x0c \x01(\x08R\ninRangeAsc\x12/\n\x14in_range_nulls_first\x18\r \x01(\x08R\x11inRangeNullsFirst\x12\x16\n\x06winref\x18\x0e \x01(\rR\x06winref\x12!\n\x0c\x63opied_order\x18\x0f \x01(\x08R\x0b\x63opiedOrder\"\xb7\x01\n\rRowMarkClause\x12\x10\n\x03rti\x18\x01 \x01(\rR\x03rti\x12\x38\n\x08strength\x18\x02 \x01(\x0e\x32\x1c.pg_query.LockClauseStrengthR\x08strength\x12\x39\n\x0bwait_policy\x18\x03 \x01(\x0e\x32\x18.pg_query.LockWaitPolicyR\nwaitPolicy\x12\x1f\n\x0bpushed_down\x18\x04 \x01(\x08R\npushedDown\"j\n\nWithClause\x12\"\n\x04\x63tes\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x63tes\x12\x1c\n\trecursive\x18\x02 \x01(\x08R\trecursive\x12\x1a\n\x08location\x18\x03 \x01(\x05R\x08location\"\xa7\x01\n\x0bInferClause\x12/\n\x0bindex_elems\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\nindexElems\x12\x31\n\x0cwhere_clause\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x0bwhereClause\x12\x18\n\x07\x63onname\x18\x03 \x01(\tR\x07\x63onname\x12\x1a\n\x08location\x18\x04 \x01(\x05R\x08location\"\xf3\x01\n\x10OnConflictClause\x12\x32\n\x06\x61\x63tion\x18\x01 \x01(\x0e\x32\x1a.pg_query.OnConflictActionR\x06\x61\x63tion\x12+\n\x05infer\x18\x02 \x01(\x0b\x32\x15.pg_query.InferClauseR\x05infer\x12/\n\x0btarget_list\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\ntargetList\x12\x31\n\x0cwhere_clause\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x0bwhereClause\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xc9\x01\n\x0f\x43TESearchClause\x12\x38\n\x0fsearch_col_list\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x0fsearch_col_list\x12\x32\n\x14search_breadth_first\x18\x02 \x01(\x08R\x14search_breadth_first\x12,\n\x11search_seq_column\x18\x03 \x01(\tR\x11search_seq_column\x12\x1a\n\x08location\x18\x04 \x01(\x05R\x08location\"\xf2\x03\n\x0e\x43TECycleClause\x12\x36\n\x0e\x63ycle_col_list\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x0e\x63ycle_col_list\x12,\n\x11\x63ycle_mark_column\x18\x02 \x01(\tR\x11\x63ycle_mark_column\x12:\n\x10\x63ycle_mark_value\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x10\x63ycle_mark_value\x12>\n\x12\x63ycle_mark_default\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x12\x63ycle_mark_default\x12,\n\x11\x63ycle_path_column\x18\x05 \x01(\tR\x11\x63ycle_path_column\x12\x1a\n\x08location\x18\x06 \x01(\x05R\x08location\x12(\n\x0f\x63ycle_mark_type\x18\x07 \x01(\rR\x0f\x63ycle_mark_type\x12,\n\x11\x63ycle_mark_typmod\x18\x08 \x01(\x05R\x11\x63ycle_mark_typmod\x12\x32\n\x14\x63ycle_mark_collation\x18\t \x01(\rR\x14\x63ycle_mark_collation\x12(\n\x0f\x63ycle_mark_neop\x18\n \x01(\rR\x0f\x63ycle_mark_neop\"\x88\x05\n\x0f\x43ommonTableExpr\x12\x18\n\x07\x63tename\x18\x01 \x01(\tR\x07\x63tename\x12\x34\n\raliascolnames\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\raliascolnames\x12\x42\n\x0f\x63tematerialized\x18\x03 \x01(\x0e\x32\x18.pg_query.CTEMaterializeR\x0f\x63tematerialized\x12*\n\x08\x63tequery\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x08\x63tequery\x12?\n\rsearch_clause\x18\x05 \x01(\x0b\x32\x19.pg_query.CTESearchClauseR\rsearch_clause\x12<\n\x0c\x63ycle_clause\x18\x06 \x01(\x0b\x32\x18.pg_query.CTECycleClauseR\x0c\x63ycle_clause\x12\x1a\n\x08location\x18\x07 \x01(\x05R\x08location\x12\"\n\x0c\x63terecursive\x18\x08 \x01(\x08R\x0c\x63terecursive\x12 \n\x0b\x63terefcount\x18\t \x01(\x05R\x0b\x63terefcount\x12\x30\n\x0b\x63tecolnames\x18\n \x03(\x0b\x32\x0e.pg_query.NodeR\x0b\x63tecolnames\x12\x30\n\x0b\x63tecoltypes\x18\x0b \x03(\x0b\x32\x0e.pg_query.NodeR\x0b\x63tecoltypes\x12\x34\n\rctecoltypmods\x18\x0c \x03(\x0b\x32\x0e.pg_query.NodeR\rctecoltypmods\x12:\n\x10\x63tecolcollations\x18\r \x03(\x0b\x32\x0e.pg_query.NodeR\x10\x63tecolcollations\"\x9e\x02\n\x0fMergeWhenClause\x12\x18\n\x07matched\x18\x01 \x01(\x08R\x07matched\x12\x34\n\x0c\x63ommand_type\x18\x02 \x01(\x0e\x32\x11.pg_query.CmdTypeR\x0b\x63ommandType\x12\x34\n\x08override\x18\x03 \x01(\x0e\x32\x18.pg_query.OverridingKindR\x08override\x12,\n\tcondition\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\tcondition\x12/\n\x0btarget_list\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\ntargetList\x12&\n\x06values\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x06values\"\x9d\x02\n\x0bMergeAction\x12\x18\n\x07matched\x18\x01 \x01(\x08R\x07matched\x12\x34\n\x0c\x63ommand_type\x18\x02 \x01(\x0e\x32\x11.pg_query.CmdTypeR\x0b\x63ommandType\x12\x34\n\x08override\x18\x03 \x01(\x0e\x32\x18.pg_query.OverridingKindR\x08override\x12\"\n\x04qual\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x04qual\x12/\n\x0btarget_list\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\ntargetList\x12\x33\n\rupdate_colnos\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x0cupdateColnos\"Y\n\x11TriggerTransition\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x15\n\x06is_new\x18\x02 \x01(\x08R\x05isNew\x12\x19\n\x08is_table\x18\x03 \x01(\x08R\x07isTable\"t\n\nJsonOutput\x12/\n\ttype_name\x18\x01 \x01(\x0b\x32\x12.pg_query.TypeNameR\x08typeName\x12\x35\n\treturning\x18\x02 \x01(\x0b\x32\x17.pg_query.JsonReturningR\treturning\"_\n\x0cJsonKeyValue\x12 \n\x03key\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x03key\x12-\n\x05value\x18\x02 \x01(\x0b\x32\x17.pg_query.JsonValueExprR\x05value\"\xc7\x01\n\x15JsonObjectConstructor\x12$\n\x05\x65xprs\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x05\x65xprs\x12,\n\x06output\x18\x02 \x01(\x0b\x32\x14.pg_query.JsonOutputR\x06output\x12&\n\x0e\x61\x62sent_on_null\x18\x03 \x01(\x08R\x0e\x61\x62sent_on_null\x12\x16\n\x06unique\x18\x04 \x01(\x08R\x06unique\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xae\x01\n\x14JsonArrayConstructor\x12$\n\x05\x65xprs\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x05\x65xprs\x12,\n\x06output\x18\x02 \x01(\x0b\x32\x14.pg_query.JsonOutputR\x06output\x12&\n\x0e\x61\x62sent_on_null\x18\x03 \x01(\x08R\x0e\x61\x62sent_on_null\x12\x1a\n\x08location\x18\x04 \x01(\x05R\x08location\"\xe1\x01\n\x19JsonArrayQueryConstructor\x12$\n\x05query\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x05query\x12,\n\x06output\x18\x02 \x01(\x0b\x32\x14.pg_query.JsonOutputR\x06output\x12,\n\x06\x66ormat\x18\x03 \x01(\x0b\x32\x14.pg_query.JsonFormatR\x06\x66ormat\x12&\n\x0e\x61\x62sent_on_null\x18\x04 \x01(\x08R\x0e\x61\x62sent_on_null\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xe5\x01\n\x12JsonAggConstructor\x12,\n\x06output\x18\x01 \x01(\x0b\x32\x14.pg_query.JsonOutputR\x06output\x12.\n\nagg_filter\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\nagg_filter\x12,\n\tagg_order\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\tagg_order\x12\'\n\x04over\x18\x04 \x01(\x0b\x32\x13.pg_query.WindowDefR\x04over\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xb9\x01\n\rJsonObjectAgg\x12>\n\x0b\x63onstructor\x18\x01 \x01(\x0b\x32\x1c.pg_query.JsonAggConstructorR\x0b\x63onstructor\x12(\n\x03\x61rg\x18\x02 \x01(\x0b\x32\x16.pg_query.JsonKeyValueR\x03\x61rg\x12&\n\x0e\x61\x62sent_on_null\x18\x03 \x01(\x08R\x0e\x61\x62sent_on_null\x12\x16\n\x06unique\x18\x04 \x01(\x08R\x06unique\"\xa1\x01\n\x0cJsonArrayAgg\x12>\n\x0b\x63onstructor\x18\x01 \x01(\x0b\x32\x1c.pg_query.JsonAggConstructorR\x0b\x63onstructor\x12)\n\x03\x61rg\x18\x02 \x01(\x0b\x32\x17.pg_query.JsonValueExprR\x03\x61rg\x12&\n\x0e\x61\x62sent_on_null\x18\x03 \x01(\x08R\x0e\x61\x62sent_on_null\"o\n\x07RawStmt\x12\"\n\x04stmt\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x04stmt\x12$\n\rstmt_location\x18\x02 \x01(\x05R\rstmt_location\x12\x1a\n\x08stmt_len\x18\x03 \x01(\x05R\x08stmt_len\"\xff\x02\n\nInsertStmt\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12\"\n\x04\x63ols\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x63ols\x12/\n\x0bselect_stmt\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\nselectStmt\x12H\n\x12on_conflict_clause\x18\x04 \x01(\x0b\x32\x1a.pg_query.OnConflictClauseR\x10onConflictClause\x12\x35\n\x0ereturning_list\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\rreturningList\x12\x35\n\x0bwith_clause\x18\x06 \x01(\x0b\x32\x14.pg_query.WithClauseR\nwithClause\x12\x34\n\x08override\x18\x07 \x01(\x0e\x32\x18.pg_query.OverridingKindR\x08override\"\x90\x02\n\nDeleteStmt\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12\x31\n\x0cusing_clause\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x0busingClause\x12\x31\n\x0cwhere_clause\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x0bwhereClause\x12\x35\n\x0ereturning_list\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\rreturningList\x12\x35\n\x0bwith_clause\x18\x05 \x01(\x0b\x32\x14.pg_query.WithClauseR\nwithClause\"\xbf\x02\n\nUpdateStmt\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12/\n\x0btarget_list\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\ntargetList\x12\x31\n\x0cwhere_clause\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x0bwhereClause\x12/\n\x0b\x66rom_clause\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\nfromClause\x12\x35\n\x0ereturning_list\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\rreturningList\x12\x35\n\x0bwith_clause\x18\x06 \x01(\x0b\x32\x14.pg_query.WithClauseR\nwithClause\"\xa0\x02\n\tMergeStmt\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12\x37\n\x0fsource_relation\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x0esourceRelation\x12\x35\n\x0ejoin_condition\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\rjoinCondition\x12<\n\x12merge_when_clauses\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x10mergeWhenClauses\x12\x35\n\x0bwith_clause\x18\x05 \x01(\x0b\x32\x14.pg_query.WithClauseR\nwithClause\"\xd3\x07\n\nSelectStmt\x12\x37\n\x0f\x64istinct_clause\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x0e\x64istinctClause\x12\x35\n\x0binto_clause\x18\x02 \x01(\x0b\x32\x14.pg_query.IntoClauseR\nintoClause\x12/\n\x0btarget_list\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\ntargetList\x12/\n\x0b\x66rom_clause\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\nfromClause\x12\x31\n\x0cwhere_clause\x18\x05 \x01(\x0b\x32\x0e.pg_query.NodeR\x0bwhereClause\x12\x31\n\x0cgroup_clause\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x0bgroupClause\x12%\n\x0egroup_distinct\x18\x07 \x01(\x08R\rgroupDistinct\x12\x33\n\rhaving_clause\x18\x08 \x01(\x0b\x32\x0e.pg_query.NodeR\x0chavingClause\x12\x33\n\rwindow_clause\x18\t \x03(\x0b\x32\x0e.pg_query.NodeR\x0cwindowClause\x12\x31\n\x0cvalues_lists\x18\n \x03(\x0b\x32\x0e.pg_query.NodeR\x0bvaluesLists\x12/\n\x0bsort_clause\x18\x0b \x03(\x0b\x32\x0e.pg_query.NodeR\nsortClause\x12\x31\n\x0climit_offset\x18\x0c \x01(\x0b\x32\x0e.pg_query.NodeR\x0blimitOffset\x12/\n\x0blimit_count\x18\r \x01(\x0b\x32\x0e.pg_query.NodeR\nlimitCount\x12\x38\n\x0climit_option\x18\x0e \x01(\x0e\x32\x15.pg_query.LimitOptionR\x0blimitOption\x12\x35\n\x0elocking_clause\x18\x0f \x03(\x0b\x32\x0e.pg_query.NodeR\rlockingClause\x12\x35\n\x0bwith_clause\x18\x10 \x01(\x0b\x32\x14.pg_query.WithClauseR\nwithClause\x12&\n\x02op\x18\x11 \x01(\x0e\x32\x16.pg_query.SetOperationR\x02op\x12\x10\n\x03\x61ll\x18\x12 \x01(\x08R\x03\x61ll\x12(\n\x04larg\x18\x13 \x01(\x0b\x32\x14.pg_query.SelectStmtR\x04larg\x12(\n\x04rarg\x18\x14 \x01(\x0b\x32\x14.pg_query.SelectStmtR\x04rarg\"\xde\x02\n\x10SetOperationStmt\x12&\n\x02op\x18\x01 \x01(\x0e\x32\x16.pg_query.SetOperationR\x02op\x12\x10\n\x03\x61ll\x18\x02 \x01(\x08R\x03\x61ll\x12\"\n\x04larg\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x04larg\x12\"\n\x04rarg\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x04rarg\x12+\n\tcol_types\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x63olTypes\x12/\n\x0b\x63ol_typmods\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\ncolTypmods\x12\x35\n\x0e\x63ol_collations\x18\x07 \x03(\x0b\x32\x0e.pg_query.NodeR\rcolCollations\x12\x33\n\rgroup_clauses\x18\x08 \x03(\x0b\x32\x0e.pg_query.NodeR\x0cgroupClauses\":\n\nReturnStmt\x12,\n\treturnval\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\treturnval\"\xb0\x01\n\x0cPLAssignStmt\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x30\n\x0bindirection\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x0bindirection\x12\x16\n\x06nnames\x18\x03 \x01(\x05R\x06nnames\x12&\n\x03val\x18\x04 \x01(\x0b\x32\x14.pg_query.SelectStmtR\x03val\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\"\xb9\x01\n\x10\x43reateSchemaStmt\x12\x1e\n\nschemaname\x18\x01 \x01(\tR\nschemaname\x12.\n\x08\x61uthrole\x18\x02 \x01(\x0b\x32\x12.pg_query.RoleSpecR\x08\x61uthrole\x12/\n\x0bschema_elts\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\nschemaElts\x12$\n\rif_not_exists\x18\x04 \x01(\x08R\rif_not_exists\"\xb4\x01\n\x0e\x41lterTableStmt\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12\"\n\x04\x63mds\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x63mds\x12.\n\x07objtype\x18\x03 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\x07objtype\x12\x1e\n\nmissing_ok\x18\x04 \x01(\x08R\nmissing_ok\"O\n\x13ReplicaIdentityStmt\x12$\n\ridentity_type\x18\x01 \x01(\tR\ridentity_type\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\"\xa9\x02\n\rAlterTableCmd\x12\x32\n\x07subtype\x18\x01 \x01(\x0e\x32\x18.pg_query.AlterTableTypeR\x07subtype\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12\x10\n\x03num\x18\x03 \x01(\x05R\x03num\x12.\n\x08newowner\x18\x04 \x01(\x0b\x32\x12.pg_query.RoleSpecR\x08newowner\x12 \n\x03\x64\x65\x66\x18\x05 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x64\x65\x66\x12\x32\n\x08\x62\x65havior\x18\x06 \x01(\x0e\x32\x16.pg_query.DropBehaviorR\x08\x62\x65havior\x12\x1e\n\nmissing_ok\x18\x07 \x01(\x08R\nmissing_ok\x12\x18\n\x07recurse\x18\x08 \x01(\x08R\x07recurse\"@\n\x12\x41lterCollationStmt\x12*\n\x08\x63ollname\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x63ollname\"\xe2\x01\n\x0f\x41lterDomainStmt\x12\x18\n\x07subtype\x18\x01 \x01(\tR\x07subtype\x12+\n\ttype_name\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x08typeName\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\x12 \n\x03\x64\x65\x66\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x03\x64\x65\x66\x12\x32\n\x08\x62\x65havior\x18\x05 \x01(\x0e\x32\x16.pg_query.DropBehaviorR\x08\x62\x65havior\x12\x1e\n\nmissing_ok\x18\x06 \x01(\x08R\nmissing_ok\"\x9a\x03\n\tGrantStmt\x12\x1a\n\x08is_grant\x18\x01 \x01(\x08R\x08is_grant\x12\x35\n\x08targtype\x18\x02 \x01(\x0e\x32\x19.pg_query.GrantTargetTypeR\x08targtype\x12.\n\x07objtype\x18\x03 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\x07objtype\x12(\n\x07objects\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x07objects\x12.\n\nprivileges\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\nprivileges\x12*\n\x08grantees\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x08grantees\x12\"\n\x0cgrant_option\x18\x07 \x01(\x08R\x0cgrant_option\x12,\n\x07grantor\x18\x08 \x01(\x0b\x32\x12.pg_query.RoleSpecR\x07grantor\x12\x32\n\x08\x62\x65havior\x18\t \x01(\x0e\x32\x16.pg_query.DropBehaviorR\x08\x62\x65havior\"\xc2\x01\n\x0eObjectWithArgs\x12(\n\x07objname\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x07objname\x12(\n\x07objargs\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07objargs\x12\x30\n\x0bobjfuncargs\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x0bobjfuncargs\x12*\n\x10\x61rgs_unspecified\x18\x04 \x01(\x08R\x10\x61rgs_unspecified\"N\n\nAccessPriv\x12\x1c\n\tpriv_name\x18\x01 \x01(\tR\tpriv_name\x12\"\n\x04\x63ols\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x63ols\"\x9b\x02\n\rGrantRoleStmt\x12\x34\n\rgranted_roles\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\rgranted_roles\x12\x34\n\rgrantee_roles\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\rgrantee_roles\x12\x1a\n\x08is_grant\x18\x03 \x01(\x08R\x08is_grant\x12 \n\x03opt\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x03opt\x12,\n\x07grantor\x18\x05 \x01(\x0b\x32\x12.pg_query.RoleSpecR\x07grantor\x12\x32\n\x08\x62\x65havior\x18\x06 \x01(\x0e\x32\x16.pg_query.DropBehaviorR\x08\x62\x65havior\"s\n\x1a\x41lterDefaultPrivilegesStmt\x12(\n\x07options\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12+\n\x06\x61\x63tion\x18\x02 \x01(\x0b\x32\x13.pg_query.GrantStmtR\x06\x61\x63tion\"\xbd\x02\n\x08\x43opyStmt\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12$\n\x05query\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x05query\x12(\n\x07\x61ttlist\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x07\x61ttlist\x12\x18\n\x07is_from\x18\x04 \x01(\x08R\x07is_from\x12\x1e\n\nis_program\x18\x05 \x01(\x08R\nis_program\x12\x1a\n\x08\x66ilename\x18\x06 \x01(\tR\x08\x66ilename\x12(\n\x07options\x18\x07 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12\x31\n\x0cwhere_clause\x18\x08 \x01(\x0b\x32\x0e.pg_query.NodeR\x0bwhereClause\"\x94\x01\n\x0fVariableSetStmt\x12-\n\x04kind\x18\x01 \x01(\x0e\x32\x19.pg_query.VariableSetKindR\x04kind\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12\"\n\x04\x61rgs\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\x1a\n\x08is_local\x18\x04 \x01(\x08R\x08is_local\"&\n\x10VariableShowStmt\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\"\xcb\x04\n\nCreateStmt\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12-\n\ntable_elts\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\ttableElts\x12\x33\n\rinh_relations\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x0cinhRelations\x12:\n\tpartbound\x18\x04 \x01(\x0b\x32\x1c.pg_query.PartitionBoundSpecR\tpartbound\x12\x33\n\x08partspec\x18\x05 \x01(\x0b\x32\x17.pg_query.PartitionSpecR\x08partspec\x12\x33\n\x0bof_typename\x18\x06 \x01(\x0b\x32\x12.pg_query.TypeNameR\nofTypename\x12\x30\n\x0b\x63onstraints\x18\x07 \x03(\x0b\x32\x0e.pg_query.NodeR\x0b\x63onstraints\x12(\n\x07options\x18\x08 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12\x34\n\x08oncommit\x18\t \x01(\x0e\x32\x18.pg_query.OnCommitActionR\x08oncommit\x12&\n\x0etablespacename\x18\n \x01(\tR\x0etablespacename\x12#\n\raccess_method\x18\x0b \x01(\tR\x0c\x61\x63\x63\x65ssMethod\x12$\n\rif_not_exists\x18\x0c \x01(\x08R\rif_not_exists\"\xde\t\n\nConstraint\x12.\n\x07\x63ontype\x18\x01 \x01(\x0e\x32\x14.pg_query.ConstrTypeR\x07\x63ontype\x12\x18\n\x07\x63onname\x18\x02 \x01(\tR\x07\x63onname\x12\x1e\n\ndeferrable\x18\x03 \x01(\x08R\ndeferrable\x12\"\n\x0cinitdeferred\x18\x04 \x01(\x08R\x0cinitdeferred\x12\x1a\n\x08location\x18\x05 \x01(\x05R\x08location\x12$\n\ris_no_inherit\x18\x06 \x01(\x08R\ris_no_inherit\x12*\n\x08raw_expr\x18\x07 \x01(\x0b\x32\x0e.pg_query.NodeR\x08raw_expr\x12 \n\x0b\x63ooked_expr\x18\x08 \x01(\tR\x0b\x63ooked_expr\x12&\n\x0egenerated_when\x18\t \x01(\tR\x0egenerated_when\x12.\n\x12nulls_not_distinct\x18\n \x01(\x08R\x12nulls_not_distinct\x12\"\n\x04keys\x18\x0b \x03(\x0b\x32\x0e.pg_query.NodeR\x04keys\x12,\n\tincluding\x18\x0c \x03(\x0b\x32\x0e.pg_query.NodeR\tincluding\x12.\n\nexclusions\x18\r \x03(\x0b\x32\x0e.pg_query.NodeR\nexclusions\x12(\n\x07options\x18\x0e \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12\x1c\n\tindexname\x18\x0f \x01(\tR\tindexname\x12\x1e\n\nindexspace\x18\x10 \x01(\tR\nindexspace\x12\x32\n\x14reset_default_tblspc\x18\x11 \x01(\x08R\x14reset_default_tblspc\x12$\n\raccess_method\x18\x12 \x01(\tR\raccess_method\x12\x32\n\x0cwhere_clause\x18\x13 \x01(\x0b\x32\x0e.pg_query.NodeR\x0cwhere_clause\x12,\n\x07pktable\x18\x14 \x01(\x0b\x32\x12.pg_query.RangeVarR\x07pktable\x12*\n\x08\x66k_attrs\x18\x15 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x66k_attrs\x12*\n\x08pk_attrs\x18\x16 \x03(\x0b\x32\x0e.pg_query.NodeR\x08pk_attrs\x12\"\n\x0c\x66k_matchtype\x18\x17 \x01(\tR\x0c\x66k_matchtype\x12$\n\rfk_upd_action\x18\x18 \x01(\tR\rfk_upd_action\x12$\n\rfk_del_action\x18\x19 \x01(\tR\rfk_del_action\x12\x38\n\x0f\x66k_del_set_cols\x18\x1a \x03(\x0b\x32\x0e.pg_query.NodeR\x0f\x66k_del_set_cols\x12\x34\n\rold_conpfeqop\x18\x1b \x03(\x0b\x32\x0e.pg_query.NodeR\rold_conpfeqop\x12(\n\x0fold_pktable_oid\x18\x1c \x01(\rR\x0fold_pktable_oid\x12(\n\x0fskip_validation\x18\x1d \x01(\x08R\x0fskip_validation\x12(\n\x0finitially_valid\x18\x1e \x01(\x08R\x0finitially_valid\"\xae\x01\n\x14\x43reateTableSpaceStmt\x12&\n\x0etablespacename\x18\x01 \x01(\tR\x0etablespacename\x12(\n\x05owner\x18\x02 \x01(\x0b\x32\x12.pg_query.RoleSpecR\x05owner\x12\x1a\n\x08location\x18\x03 \x01(\tR\x08location\x12(\n\x07options\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"\\\n\x12\x44ropTableSpaceStmt\x12&\n\x0etablespacename\x18\x01 \x01(\tR\x0etablespacename\x12\x1e\n\nmissing_ok\x18\x02 \x01(\x08R\nmissing_ok\"\x89\x01\n\x1a\x41lterTableSpaceOptionsStmt\x12&\n\x0etablespacename\x18\x01 \x01(\tR\x0etablespacename\x12(\n\x07options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12\x19\n\x08is_reset\x18\x03 \x01(\x08R\x07isReset\"\xe7\x01\n\x15\x41lterTableMoveAllStmt\x12\x30\n\x13orig_tablespacename\x18\x01 \x01(\tR\x13orig_tablespacename\x12.\n\x07objtype\x18\x02 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\x07objtype\x12$\n\x05roles\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x05roles\x12.\n\x12new_tablespacename\x18\x04 \x01(\tR\x12new_tablespacename\x12\x16\n\x06nowait\x18\x05 \x01(\x08R\x06nowait\"\x7f\n\x13\x43reateExtensionStmt\x12\x18\n\x07\x65xtname\x18\x01 \x01(\tR\x07\x65xtname\x12$\n\rif_not_exists\x18\x02 \x01(\x08R\rif_not_exists\x12(\n\x07options\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"X\n\x12\x41lterExtensionStmt\x12\x18\n\x07\x65xtname\x18\x01 \x01(\tR\x07\x65xtname\x12(\n\x07options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"\xa6\x01\n\x1a\x41lterExtensionContentsStmt\x12\x18\n\x07\x65xtname\x18\x01 \x01(\tR\x07\x65xtname\x12\x16\n\x06\x61\x63tion\x18\x02 \x01(\x05R\x06\x61\x63tion\x12.\n\x07objtype\x18\x03 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\x07objtype\x12&\n\x06object\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x06object\"\x87\x01\n\rCreateFdwStmt\x12\x18\n\x07\x66\x64wname\x18\x01 \x01(\tR\x07\x66\x64wname\x12\x32\n\x0c\x66unc_options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x0c\x66unc_options\x12(\n\x07options\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"\x86\x01\n\x0c\x41lterFdwStmt\x12\x18\n\x07\x66\x64wname\x18\x01 \x01(\tR\x07\x66\x64wname\x12\x32\n\x0c\x66unc_options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x0c\x66unc_options\x12(\n\x07options\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"\xdd\x01\n\x17\x43reateForeignServerStmt\x12\x1e\n\nservername\x18\x01 \x01(\tR\nservername\x12\x1e\n\nservertype\x18\x02 \x01(\tR\nservertype\x12\x18\n\x07version\x18\x03 \x01(\tR\x07version\x12\x18\n\x07\x66\x64wname\x18\x04 \x01(\tR\x07\x66\x64wname\x12$\n\rif_not_exists\x18\x05 \x01(\x08R\rif_not_exists\x12(\n\x07options\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"\x9e\x01\n\x16\x41lterForeignServerStmt\x12\x1e\n\nservername\x18\x01 \x01(\tR\nservername\x12\x18\n\x07version\x18\x02 \x01(\tR\x07version\x12(\n\x07options\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12 \n\x0bhas_version\x18\x04 \x01(\x08R\x0bhas_version\"\x91\x01\n\x16\x43reateForeignTableStmt\x12-\n\tbase_stmt\x18\x01 \x01(\x0b\x32\x14.pg_query.CreateStmtR\x04\x62\x61se\x12\x1e\n\nservername\x18\x02 \x01(\tR\nservername\x12(\n\x07options\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"\xaf\x01\n\x15\x43reateUserMappingStmt\x12&\n\x04user\x18\x01 \x01(\x0b\x32\x12.pg_query.RoleSpecR\x04user\x12\x1e\n\nservername\x18\x02 \x01(\tR\nservername\x12$\n\rif_not_exists\x18\x03 \x01(\x08R\rif_not_exists\x12(\n\x07options\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"\x88\x01\n\x14\x41lterUserMappingStmt\x12&\n\x04user\x18\x01 \x01(\x0b\x32\x12.pg_query.RoleSpecR\x04user\x12\x1e\n\nservername\x18\x02 \x01(\tR\nservername\x12(\n\x07options\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"}\n\x13\x44ropUserMappingStmt\x12&\n\x04user\x18\x01 \x01(\x0b\x32\x12.pg_query.RoleSpecR\x04user\x12\x1e\n\nservername\x18\x02 \x01(\tR\nservername\x12\x1e\n\nmissing_ok\x18\x03 \x01(\x08R\nmissing_ok\"\xa0\x02\n\x17ImportForeignSchemaStmt\x12 \n\x0bserver_name\x18\x01 \x01(\tR\x0bserver_name\x12$\n\rremote_schema\x18\x02 \x01(\tR\rremote_schema\x12\"\n\x0clocal_schema\x18\x03 \x01(\tR\x0clocal_schema\x12?\n\tlist_type\x18\x04 \x01(\x0e\x32!.pg_query.ImportForeignSchemaTypeR\tlist_type\x12.\n\ntable_list\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\ntable_list\x12(\n\x07options\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"\x94\x02\n\x10\x43reatePolicyStmt\x12 \n\x0bpolicy_name\x18\x01 \x01(\tR\x0bpolicy_name\x12(\n\x05table\x18\x02 \x01(\x0b\x32\x12.pg_query.RangeVarR\x05table\x12\x1a\n\x08\x63md_name\x18\x03 \x01(\tR\x08\x63md_name\x12\x1e\n\npermissive\x18\x04 \x01(\x08R\npermissive\x12$\n\x05roles\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x05roles\x12\"\n\x04qual\x18\x06 \x01(\x0b\x32\x0e.pg_query.NodeR\x04qual\x12.\n\nwith_check\x18\x07 \x01(\x0b\x32\x0e.pg_query.NodeR\nwith_check\"\xd7\x01\n\x0f\x41lterPolicyStmt\x12 \n\x0bpolicy_name\x18\x01 \x01(\tR\x0bpolicy_name\x12(\n\x05table\x18\x02 \x01(\x0b\x32\x12.pg_query.RangeVarR\x05table\x12$\n\x05roles\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x05roles\x12\"\n\x04qual\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x04qual\x12.\n\nwith_check\x18\x05 \x01(\x0b\x32\x0e.pg_query.NodeR\nwith_check\"r\n\x0c\x43reateAmStmt\x12\x16\n\x06\x61mname\x18\x01 \x01(\tR\x06\x61mname\x12\x32\n\x0chandler_name\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x0chandler_name\x12\x16\n\x06\x61mtype\x18\x03 \x01(\tR\x06\x61mtype\"\xb6\x04\n\x0e\x43reateTrigStmt\x12\x18\n\x07replace\x18\x01 \x01(\x08R\x07replace\x12\"\n\x0cisconstraint\x18\x02 \x01(\x08R\x0cisconstraint\x12\x1a\n\x08trigname\x18\x03 \x01(\tR\x08trigname\x12.\n\x08relation\x18\x04 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12*\n\x08\x66uncname\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x66uncname\x12\"\n\x04\x61rgs\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12\x10\n\x03row\x18\x07 \x01(\x08R\x03row\x12\x16\n\x06timing\x18\x08 \x01(\x05R\x06timing\x12\x16\n\x06\x65vents\x18\t \x01(\x05R\x06\x65vents\x12(\n\x07\x63olumns\x18\n \x03(\x0b\x32\x0e.pg_query.NodeR\x07\x63olumns\x12/\n\x0bwhen_clause\x18\x0b \x01(\x0b\x32\x0e.pg_query.NodeR\nwhenClause\x12\x37\n\x0ftransition_rels\x18\x0c \x03(\x0b\x32\x0e.pg_query.NodeR\x0etransitionRels\x12\x1e\n\ndeferrable\x18\r \x01(\x08R\ndeferrable\x12\"\n\x0cinitdeferred\x18\x0e \x01(\x08R\x0cinitdeferred\x12\x30\n\tconstrrel\x18\x0f \x01(\x0b\x32\x12.pg_query.RangeVarR\tconstrrel\"\xab\x01\n\x13\x43reateEventTrigStmt\x12\x1a\n\x08trigname\x18\x01 \x01(\tR\x08trigname\x12\x1c\n\teventname\x18\x02 \x01(\tR\teventname\x12.\n\nwhenclause\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\nwhenclause\x12*\n\x08\x66uncname\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x66uncname\"N\n\x12\x41lterEventTrigStmt\x12\x1a\n\x08trigname\x18\x01 \x01(\tR\x08trigname\x12\x1c\n\ttgenabled\x18\x02 \x01(\tR\ttgenabled\"\xed\x01\n\x0f\x43reatePLangStmt\x12\x18\n\x07replace\x18\x01 \x01(\x08R\x07replace\x12\x16\n\x06plname\x18\x02 \x01(\tR\x06plname\x12,\n\tplhandler\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\tplhandler\x12*\n\x08plinline\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x08plinline\x12\x30\n\x0bplvalidator\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x0bplvalidator\x12\x1c\n\tpltrusted\x18\x06 \x01(\x08R\tpltrusted\"\x84\x01\n\x0e\x43reateRoleStmt\x12\x34\n\tstmt_type\x18\x01 \x01(\x0e\x32\x16.pg_query.RoleStmtTypeR\tstmt_type\x12\x12\n\x04role\x18\x02 \x01(\tR\x04role\x12(\n\x07options\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"y\n\rAlterRoleStmt\x12&\n\x04role\x18\x01 \x01(\x0b\x32\x12.pg_query.RoleSpecR\x04role\x12(\n\x07options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12\x16\n\x06\x61\x63tion\x18\x03 \x01(\x05R\x06\x61\x63tion\"\x8b\x01\n\x10\x41lterRoleSetStmt\x12&\n\x04role\x18\x01 \x01(\x0b\x32\x12.pg_query.RoleSpecR\x04role\x12\x1a\n\x08\x64\x61tabase\x18\x02 \x01(\tR\x08\x64\x61tabase\x12\x33\n\x07setstmt\x18\x03 \x01(\x0b\x32\x19.pg_query.VariableSetStmtR\x07setstmt\"T\n\x0c\x44ropRoleStmt\x12$\n\x05roles\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x05roles\x12\x1e\n\nmissing_ok\x18\x02 \x01(\x08R\nmissing_ok\"\xce\x01\n\rCreateSeqStmt\x12.\n\x08sequence\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08sequence\x12(\n\x07options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12\x19\n\x08owner_id\x18\x03 \x01(\rR\x07ownerId\x12\"\n\x0c\x66or_identity\x18\x04 \x01(\x08R\x0c\x66or_identity\x12$\n\rif_not_exists\x18\x05 \x01(\x08R\rif_not_exists\"\xac\x01\n\x0c\x41lterSeqStmt\x12.\n\x08sequence\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08sequence\x12(\n\x07options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12\"\n\x0c\x66or_identity\x18\x03 \x01(\x08R\x0c\x66or_identity\x12\x1e\n\nmissing_ok\x18\x04 \x01(\x08R\nmissing_ok\"\x92\x02\n\nDefineStmt\x12(\n\x04kind\x18\x01 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\x04kind\x12\x1a\n\x08oldstyle\x18\x02 \x01(\x08R\x08oldstyle\x12*\n\x08\x64\x65\x66names\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x64\x65\x66names\x12\"\n\x04\x61rgs\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\x12.\n\ndefinition\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\ndefinition\x12$\n\rif_not_exists\x18\x06 \x01(\x08R\rif_not_exists\x12\x18\n\x07replace\x18\x07 \x01(\x08R\x07replace\"\xdf\x01\n\x10\x43reateDomainStmt\x12.\n\ndomainname\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\ndomainname\x12/\n\ttype_name\x18\x02 \x01(\x0b\x32\x12.pg_query.TypeNameR\x08typeName\x12\x38\n\x0b\x63oll_clause\x18\x03 \x01(\x0b\x32\x17.pg_query.CollateClauseR\ncollClause\x12\x30\n\x0b\x63onstraints\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x0b\x63onstraints\"\x86\x02\n\x11\x43reateOpClassStmt\x12\x30\n\x0bopclassname\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x0bopclassname\x12\x32\n\x0copfamilyname\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x0copfamilyname\x12\x16\n\x06\x61mname\x18\x03 \x01(\tR\x06\x61mname\x12.\n\x08\x64\x61tatype\x18\x04 \x01(\x0b\x32\x12.pg_query.TypeNameR\x08\x64\x61tatype\x12$\n\x05items\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x05items\x12\x1d\n\nis_default\x18\x06 \x01(\x08R\tisDefault\"\x8d\x02\n\x11\x43reateOpClassItem\x12\x1a\n\x08itemtype\x18\x01 \x01(\x05R\x08itemtype\x12,\n\x04name\x18\x02 \x01(\x0b\x32\x18.pg_query.ObjectWithArgsR\x04name\x12\x16\n\x06number\x18\x03 \x01(\x05R\x06number\x12\x32\n\x0corder_family\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x0corder_family\x12.\n\nclass_args\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\nclass_args\x12\x32\n\nstoredtype\x18\x06 \x01(\x0b\x32\x12.pg_query.TypeNameR\nstoredtype\"`\n\x12\x43reateOpFamilyStmt\x12\x32\n\x0copfamilyname\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x0copfamilyname\x12\x16\n\x06\x61mname\x18\x02 \x01(\tR\x06\x61mname\"\x9e\x01\n\x11\x41lterOpFamilyStmt\x12\x32\n\x0copfamilyname\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x0copfamilyname\x12\x16\n\x06\x61mname\x18\x02 \x01(\tR\x06\x61mname\x12\x17\n\x07is_drop\x18\x03 \x01(\x08R\x06isDrop\x12$\n\x05items\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x05items\"\xdf\x01\n\x08\x44ropStmt\x12(\n\x07objects\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x07objects\x12\x35\n\x0bremove_type\x18\x02 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\nremoveType\x12\x32\n\x08\x62\x65havior\x18\x03 \x01(\x0e\x32\x16.pg_query.DropBehaviorR\x08\x62\x65havior\x12\x1e\n\nmissing_ok\x18\x04 \x01(\x08R\nmissing_ok\x12\x1e\n\nconcurrent\x18\x05 \x01(\x08R\nconcurrent\"\x94\x01\n\x0cTruncateStmt\x12,\n\trelations\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\trelations\x12\"\n\x0crestart_seqs\x18\x02 \x01(\x08R\x0crestart_seqs\x12\x32\n\x08\x62\x65havior\x18\x03 \x01(\x0e\x32\x16.pg_query.DropBehaviorR\x08\x62\x65havior\"\x7f\n\x0b\x43ommentStmt\x12.\n\x07objtype\x18\x01 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\x07objtype\x12&\n\x06object\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x06object\x12\x18\n\x07\x63omment\x18\x03 \x01(\tR\x07\x63omment\"\x98\x01\n\x0cSecLabelStmt\x12.\n\x07objtype\x18\x01 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\x07objtype\x12&\n\x06object\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x06object\x12\x1a\n\x08provider\x18\x03 \x01(\tR\x08provider\x12\x14\n\x05label\x18\x04 \x01(\tR\x05label\"s\n\x11\x44\x65\x63lareCursorStmt\x12\x1e\n\nportalname\x18\x01 \x01(\tR\nportalname\x12\x18\n\x07options\x18\x02 \x01(\x05R\x07options\x12$\n\x05query\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x05query\"1\n\x0f\x43losePortalStmt\x12\x1e\n\nportalname\x18\x01 \x01(\tR\nportalname\"\x96\x01\n\tFetchStmt\x12\x36\n\tdirection\x18\x01 \x01(\x0e\x32\x18.pg_query.FetchDirectionR\tdirection\x12\x19\n\x08how_many\x18\x02 \x01(\x03R\x07howMany\x12\x1e\n\nportalname\x18\x03 \x01(\tR\nportalname\x12\x16\n\x06ismove\x18\x04 \x01(\x08R\x06ismove\"\xdc\x07\n\tIndexStmt\x12\x18\n\x07idxname\x18\x01 \x01(\tR\x07idxname\x12.\n\x08relation\x18\x02 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12#\n\raccess_method\x18\x03 \x01(\tR\x0c\x61\x63\x63\x65ssMethod\x12\x1f\n\x0btable_space\x18\x04 \x01(\tR\ntableSpace\x12\x31\n\x0cindex_params\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x0bindexParams\x12\x44\n\x16index_including_params\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x14indexIncludingParams\x12(\n\x07options\x18\x07 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12\x31\n\x0cwhere_clause\x18\x08 \x01(\x0b\x32\x0e.pg_query.NodeR\x0bwhereClause\x12\x38\n\x10\x65xclude_op_names\x18\t \x03(\x0b\x32\x0e.pg_query.NodeR\x0e\x65xcludeOpNames\x12\x1e\n\nidxcomment\x18\n \x01(\tR\nidxcomment\x12\x1b\n\tindex_oid\x18\x0b \x01(\rR\x08indexOid\x12\x1d\n\nold_number\x18\x0c \x01(\rR\toldNumber\x12(\n\x10old_create_subid\x18\r \x01(\rR\x0eoldCreateSubid\x12\x43\n\x1eold_first_relfilelocator_subid\x18\x0e \x01(\rR\x1boldFirstRelfilelocatorSubid\x12\x16\n\x06unique\x18\x0f \x01(\x08R\x06unique\x12.\n\x12nulls_not_distinct\x18\x10 \x01(\x08R\x12nulls_not_distinct\x12\x18\n\x07primary\x18\x11 \x01(\x08R\x07primary\x12\"\n\x0cisconstraint\x18\x12 \x01(\x08R\x0cisconstraint\x12\x1e\n\ndeferrable\x18\x13 \x01(\x08R\ndeferrable\x12\"\n\x0cinitdeferred\x18\x14 \x01(\x08R\x0cinitdeferred\x12 \n\x0btransformed\x18\x15 \x01(\x08R\x0btransformed\x12\x1e\n\nconcurrent\x18\x16 \x01(\x08R\nconcurrent\x12$\n\rif_not_exists\x18\x17 \x01(\x08R\rif_not_exists\x12\x32\n\x14reset_default_tblspc\x18\x18 \x01(\x08R\x14reset_default_tblspc\"\xa9\x02\n\x0f\x43reateStatsStmt\x12*\n\x08\x64\x65\x66names\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x64\x65\x66names\x12.\n\nstat_types\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\nstat_types\x12$\n\x05\x65xprs\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x05\x65xprs\x12,\n\trelations\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\trelations\x12\x1e\n\nstxcomment\x18\x05 \x01(\tR\nstxcomment\x12 \n\x0btransformed\x18\x06 \x01(\x08R\x0btransformed\x12$\n\rif_not_exists\x18\x07 \x01(\x08R\rif_not_exists\"C\n\tStatsElem\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\"\n\x04\x65xpr\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x04\x65xpr\"\x82\x01\n\x0e\x41lterStatsStmt\x12*\n\x08\x64\x65\x66names\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x64\x65\x66names\x12$\n\rstxstattarget\x18\x02 \x01(\x05R\rstxstattarget\x12\x1e\n\nmissing_ok\x18\x03 \x01(\x08R\nmissing_ok\"\xb9\x02\n\x12\x43reateFunctionStmt\x12\"\n\x0cis_procedure\x18\x01 \x01(\x08R\x0cis_procedure\x12\x18\n\x07replace\x18\x02 \x01(\x08R\x07replace\x12*\n\x08\x66uncname\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x66uncname\x12.\n\nparameters\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\nparameters\x12\x33\n\x0breturn_type\x18\x05 \x01(\x0b\x32\x12.pg_query.TypeNameR\nreturnType\x12(\n\x07options\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12*\n\x08sql_body\x18\x07 \x01(\x0b\x32\x0e.pg_query.NodeR\x08sql_body\"\xb5\x01\n\x11\x46unctionParameter\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12-\n\x08\x61rg_type\x18\x02 \x01(\x0b\x32\x12.pg_query.TypeNameR\x07\x61rgType\x12\x33\n\x04mode\x18\x03 \x01(\x0e\x32\x1f.pg_query.FunctionParameterModeR\x04mode\x12(\n\x07\x64\x65\x66\x65xpr\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x07\x64\x65\x66\x65xpr\"\x9b\x01\n\x11\x41lterFunctionStmt\x12.\n\x07objtype\x18\x01 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\x07objtype\x12,\n\x04\x66unc\x18\x02 \x01(\x0b\x32\x18.pg_query.ObjectWithArgsR\x04\x66unc\x12(\n\x07\x61\x63tions\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x07\x61\x63tions\",\n\x06\x44oStmt\x12\"\n\x04\x61rgs\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x04\x61rgs\"\x8e\x01\n\x0fInlineCodeBlock\x12 \n\x0bsource_text\x18\x01 \x01(\tR\x0bsource_text\x12\x19\n\x08lang_oid\x18\x02 \x01(\rR\x07langOid\x12&\n\x0flang_is_trusted\x18\x03 \x01(\x08R\rlangIsTrusted\x12\x16\n\x06\x61tomic\x18\x04 \x01(\x08R\x06\x61tomic\"\x94\x01\n\x08\x43\x61llStmt\x12.\n\x08\x66unccall\x18\x01 \x01(\x0b\x32\x12.pg_query.FuncCallR\x08\x66unccall\x12.\n\x08\x66uncexpr\x18\x02 \x01(\x0b\x32\x12.pg_query.FuncExprR\x08\x66uncexpr\x12(\n\x07outargs\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x07outargs\"%\n\x0b\x43\x61llContext\x12\x16\n\x06\x61tomic\x18\x01 \x01(\x08R\x06\x61tomic\"\xde\x02\n\nRenameStmt\x12\x35\n\x0brename_type\x18\x01 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\nrenameType\x12\x39\n\rrelation_type\x18\x02 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\x0crelationType\x12.\n\x08relation\x18\x03 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12&\n\x06object\x18\x04 \x01(\x0b\x32\x0e.pg_query.NodeR\x06object\x12\x18\n\x07subname\x18\x05 \x01(\tR\x07subname\x12\x18\n\x07newname\x18\x06 \x01(\tR\x07newname\x12\x32\n\x08\x62\x65havior\x18\x07 \x01(\x0e\x32\x16.pg_query.DropBehaviorR\x08\x62\x65havior\x12\x1e\n\nmissing_ok\x18\x08 \x01(\x08R\nmissing_ok\"\xeb\x01\n\x16\x41lterObjectDependsStmt\x12\x35\n\x0bobject_type\x18\x01 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\nobjectType\x12.\n\x08relation\x18\x02 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12&\n\x06object\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x06object\x12*\n\x07\x65xtname\x18\x04 \x01(\x0b\x32\x10.pg_query.StringR\x07\x65xtname\x12\x16\n\x06remove\x18\x05 \x01(\x08R\x06remove\"\xe4\x01\n\x15\x41lterObjectSchemaStmt\x12\x35\n\x0bobject_type\x18\x01 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\nobjectType\x12.\n\x08relation\x18\x02 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12&\n\x06object\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x06object\x12\x1c\n\tnewschema\x18\x04 \x01(\tR\tnewschema\x12\x1e\n\nmissing_ok\x18\x05 \x01(\x08R\nmissing_ok\"\xcf\x01\n\x0e\x41lterOwnerStmt\x12\x35\n\x0bobject_type\x18\x01 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\nobjectType\x12.\n\x08relation\x18\x02 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12&\n\x06object\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x06object\x12.\n\x08newowner\x18\x04 \x01(\x0b\x32\x12.pg_query.RoleSpecR\x08newowner\"s\n\x11\x41lterOperatorStmt\x12\x34\n\x08opername\x18\x01 \x01(\x0b\x32\x18.pg_query.ObjectWithArgsR\x08opername\x12(\n\x07options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"f\n\rAlterTypeStmt\x12+\n\ttype_name\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x08typeName\x12(\n\x07options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"\x90\x02\n\x08RuleStmt\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12\x1a\n\x08rulename\x18\x02 \x01(\tR\x08rulename\x12\x31\n\x0cwhere_clause\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x0bwhereClause\x12\'\n\x05\x65vent\x18\x04 \x01(\x0e\x32\x11.pg_query.CmdTypeR\x05\x65vent\x12\x18\n\x07instead\x18\x05 \x01(\x08R\x07instead\x12(\n\x07\x61\x63tions\x18\x06 \x03(\x0b\x32\x0e.pg_query.NodeR\x07\x61\x63tions\x12\x18\n\x07replace\x18\x07 \x01(\x08R\x07replace\"L\n\nNotifyStmt\x12$\n\rconditionname\x18\x01 \x01(\tR\rconditionname\x12\x18\n\x07payload\x18\x02 \x01(\tR\x07payload\"2\n\nListenStmt\x12$\n\rconditionname\x18\x01 \x01(\tR\rconditionname\"4\n\x0cUnlistenStmt\x12$\n\rconditionname\x18\x01 \x01(\tR\rconditionname\"\xbe\x01\n\x0fTransactionStmt\x12\x31\n\x04kind\x18\x01 \x01(\x0e\x32\x1d.pg_query.TransactionStmtKindR\x04kind\x12(\n\x07options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12&\n\x0esavepoint_name\x18\x03 \x01(\tR\x0esavepoint_name\x12\x10\n\x03gid\x18\x04 \x01(\tR\x03gid\x12\x14\n\x05\x63hain\x18\x05 \x01(\x08R\x05\x63hain\"q\n\x11\x43ompositeTypeStmt\x12,\n\x07typevar\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x07typevar\x12.\n\ncoldeflist\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\ncoldeflist\"a\n\x0e\x43reateEnumStmt\x12+\n\ttype_name\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x08typeName\x12\"\n\x04vals\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x04vals\"f\n\x0f\x43reateRangeStmt\x12+\n\ttype_name\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x08typeName\x12&\n\x06params\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x06params\"\xf5\x01\n\rAlterEnumStmt\x12+\n\ttype_name\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x08typeName\x12\x17\n\x07old_val\x18\x02 \x01(\tR\x06oldVal\x12\x17\n\x07new_val\x18\x03 \x01(\tR\x06newVal\x12(\n\x10new_val_neighbor\x18\x04 \x01(\tR\x0enewValNeighbor\x12\'\n\x10new_val_is_after\x18\x05 \x01(\x08R\rnewValIsAfter\x12\x32\n\x16skip_if_new_val_exists\x18\x06 \x01(\x08R\x12skipIfNewValExists\"\x8d\x02\n\x08ViewStmt\x12&\n\x04view\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x04view\x12(\n\x07\x61liases\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07\x61liases\x12$\n\x05query\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x05query\x12\x18\n\x07replace\x18\x04 \x01(\x08R\x07replace\x12(\n\x07options\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12\x45\n\x11with_check_option\x18\x06 \x01(\x0e\x32\x19.pg_query.ViewCheckOptionR\x0fwithCheckOption\"&\n\x08LoadStmt\x12\x1a\n\x08\x66ilename\x18\x01 \x01(\tR\x08\x66ilename\"P\n\x0c\x43reatedbStmt\x12\x16\n\x06\x64\x62name\x18\x01 \x01(\tR\x06\x64\x62name\x12(\n\x07options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"U\n\x11\x41lterDatabaseStmt\x12\x16\n\x06\x64\x62name\x18\x01 \x01(\tR\x06\x64\x62name\x12(\n\x07options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"6\n\x1c\x41lterDatabaseRefreshCollStmt\x12\x16\n\x06\x64\x62name\x18\x01 \x01(\tR\x06\x64\x62name\"c\n\x14\x41lterDatabaseSetStmt\x12\x16\n\x06\x64\x62name\x18\x01 \x01(\tR\x06\x64\x62name\x12\x33\n\x07setstmt\x18\x02 \x01(\x0b\x32\x19.pg_query.VariableSetStmtR\x07setstmt\"n\n\nDropdbStmt\x12\x16\n\x06\x64\x62name\x18\x01 \x01(\tR\x06\x64\x62name\x12\x1e\n\nmissing_ok\x18\x02 \x01(\x08R\nmissing_ok\x12(\n\x07options\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"F\n\x0f\x41lterSystemStmt\x12\x33\n\x07setstmt\x18\x01 \x01(\x0b\x32\x19.pg_query.VariableSetStmtR\x07setstmt\"\x83\x01\n\x0b\x43lusterStmt\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12\x1c\n\tindexname\x18\x02 \x01(\tR\tindexname\x12&\n\x06params\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x06params\"~\n\nVacuumStmt\x12(\n\x07options\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12\"\n\x04rels\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x04rels\x12\"\n\x0cis_vacuumcmd\x18\x03 \x01(\x08R\x0cis_vacuumcmd\"|\n\x0eVacuumRelation\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12\x10\n\x03oid\x18\x02 \x01(\rR\x03oid\x12(\n\x07va_cols\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x07va_cols\"]\n\x0b\x45xplainStmt\x12$\n\x05query\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x05query\x12(\n\x07options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"\xe1\x01\n\x11\x43reateTableAsStmt\x12$\n\x05query\x18\x01 \x01(\x0b\x32\x0e.pg_query.NodeR\x05query\x12(\n\x04into\x18\x02 \x01(\x0b\x32\x14.pg_query.IntoClauseR\x04into\x12.\n\x07objtype\x18\x03 \x01(\x0e\x32\x14.pg_query.ObjectTypeR\x07objtype\x12&\n\x0eis_select_into\x18\x04 \x01(\x08R\x0eis_select_into\x12$\n\rif_not_exists\x18\x05 \x01(\x08R\rif_not_exists\"\x81\x01\n\x12RefreshMatViewStmt\x12\x1e\n\nconcurrent\x18\x01 \x01(\x08R\nconcurrent\x12\x1b\n\tskip_data\x18\x02 \x01(\x08R\x08skipData\x12.\n\x08relation\x18\x03 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\"\x10\n\x0e\x43heckPointStmt\"<\n\x0b\x44iscardStmt\x12-\n\x06target\x18\x01 \x01(\x0e\x32\x15.pg_query.DiscardModeR\x06target\"d\n\x08LockStmt\x12,\n\trelations\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\trelations\x12\x12\n\x04mode\x18\x02 \x01(\x05R\x04mode\x12\x16\n\x06nowait\x18\x03 \x01(\x08R\x06nowait\"b\n\x12\x43onstraintsSetStmt\x12\x30\n\x0b\x63onstraints\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x0b\x63onstraints\x12\x1a\n\x08\x64\x65\x66\x65rred\x18\x02 \x01(\x08R\x08\x64\x65\x66\x65rred\"\xaa\x01\n\x0bReindexStmt\x12/\n\x04kind\x18\x01 \x01(\x0e\x32\x1b.pg_query.ReindexObjectTypeR\x04kind\x12.\n\x08relation\x18\x02 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\x12&\n\x06params\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x06params\"\xea\x01\n\x14\x43reateConversionStmt\x12\x38\n\x0f\x63onversion_name\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x0f\x63onversion_name\x12,\n\x11\x66or_encoding_name\x18\x02 \x01(\tR\x11\x66or_encoding_name\x12*\n\x10to_encoding_name\x18\x03 \x01(\tR\x10to_encoding_name\x12,\n\tfunc_name\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\tfunc_name\x12\x10\n\x03\x64\x65\x66\x18\x05 \x01(\x08R\x03\x64\x65\x66\"\xf1\x01\n\x0e\x43reateCastStmt\x12\x32\n\nsourcetype\x18\x01 \x01(\x0b\x32\x12.pg_query.TypeNameR\nsourcetype\x12\x32\n\ntargettype\x18\x02 \x01(\x0b\x32\x12.pg_query.TypeNameR\ntargettype\x12,\n\x04\x66unc\x18\x03 \x01(\x0b\x32\x18.pg_query.ObjectWithArgsR\x04\x66unc\x12\x33\n\x07\x63ontext\x18\x04 \x01(\x0e\x32\x19.pg_query.CoercionContextR\x07\x63ontext\x12\x14\n\x05inout\x18\x05 \x01(\x08R\x05inout\"\xd9\x01\n\x13\x43reateTransformStmt\x12\x18\n\x07replace\x18\x01 \x01(\x08R\x07replace\x12\x30\n\ttype_name\x18\x02 \x01(\x0b\x32\x12.pg_query.TypeNameR\ttype_name\x12\x12\n\x04lang\x18\x03 \x01(\tR\x04lang\x12\x32\n\x07\x66romsql\x18\x04 \x01(\x0b\x32\x18.pg_query.ObjectWithArgsR\x07\x66romsql\x12.\n\x05tosql\x18\x05 \x01(\x0b\x32\x18.pg_query.ObjectWithArgsR\x05tosql\"s\n\x0bPrepareStmt\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12*\n\x08\x61rgtypes\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x61rgtypes\x12$\n\x05query\x18\x03 \x01(\x0b\x32\x0e.pg_query.NodeR\x05query\"I\n\x0b\x45xecuteStmt\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12&\n\x06params\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x06params\"$\n\x0e\x44\x65\x61llocateStmt\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\"i\n\rDropOwnedStmt\x12$\n\x05roles\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x05roles\x12\x32\n\x08\x62\x65havior\x18\x02 \x01(\x0e\x32\x16.pg_query.DropBehaviorR\x08\x62\x65havior\"g\n\x11ReassignOwnedStmt\x12$\n\x05roles\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x05roles\x12,\n\x07newrole\x18\x02 \x01(\x0b\x32\x12.pg_query.RoleSpecR\x07newrole\"m\n\x15\x41lterTSDictionaryStmt\x12*\n\x08\x64ictname\x18\x01 \x03(\x0b\x32\x0e.pg_query.NodeR\x08\x64ictname\x12(\n\x07options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"\x9f\x02\n\x18\x41lterTSConfigurationStmt\x12/\n\x04kind\x18\x01 \x01(\x0e\x32\x1b.pg_query.AlterTSConfigTypeR\x04kind\x12(\n\x07\x63\x66gname\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07\x63\x66gname\x12,\n\ttokentype\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\ttokentype\x12$\n\x05\x64icts\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x05\x64icts\x12\x1a\n\x08override\x18\x05 \x01(\x08R\x08override\x12\x18\n\x07replace\x18\x06 \x01(\x08R\x07replace\x12\x1e\n\nmissing_ok\x18\x07 \x01(\x08R\nmissing_ok\"\x9f\x01\n\x10PublicationTable\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x12.pg_query.RangeVarR\x08relation\x12\x31\n\x0cwhere_clause\x18\x02 \x01(\x0b\x32\x0e.pg_query.NodeR\x0bwhereClause\x12(\n\x07\x63olumns\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x07\x63olumns\"\xbe\x01\n\x12PublicationObjSpec\x12@\n\npubobjtype\x18\x01 \x01(\x0e\x32 .pg_query.PublicationObjSpecTypeR\npubobjtype\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12\x36\n\x08pubtable\x18\x03 \x01(\x0b\x32\x1a.pg_query.PublicationTableR\x08pubtable\x12\x1a\n\x08location\x18\x04 \x01(\x05R\x08location\"\xb3\x01\n\x15\x43reatePublicationStmt\x12\x18\n\x07pubname\x18\x01 \x01(\tR\x07pubname\x12(\n\x07options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12.\n\npubobjects\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\npubobjects\x12&\n\x0e\x66or_all_tables\x18\x04 \x01(\x08R\x0e\x66or_all_tables\"\xec\x01\n\x14\x41lterPublicationStmt\x12\x18\n\x07pubname\x18\x01 \x01(\tR\x07pubname\x12(\n\x07options\x18\x02 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\x12.\n\npubobjects\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\npubobjects\x12&\n\x0e\x66or_all_tables\x18\x04 \x01(\x08R\x0e\x66or_all_tables\x12\x38\n\x06\x61\x63tion\x18\x05 \x01(\x0e\x32 .pg_query.AlterPublicationActionR\x06\x61\x63tion\"\xaa\x01\n\x16\x43reateSubscriptionStmt\x12\x18\n\x07subname\x18\x01 \x01(\tR\x07subname\x12\x1a\n\x08\x63onninfo\x18\x02 \x01(\tR\x08\x63onninfo\x12\x30\n\x0bpublication\x18\x03 \x03(\x0b\x32\x0e.pg_query.NodeR\x0bpublication\x12(\n\x07options\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"\xde\x01\n\x15\x41lterSubscriptionStmt\x12\x33\n\x04kind\x18\x01 \x01(\x0e\x32\x1f.pg_query.AlterSubscriptionTypeR\x04kind\x12\x18\n\x07subname\x18\x02 \x01(\tR\x07subname\x12\x1a\n\x08\x63onninfo\x18\x03 \x01(\tR\x08\x63onninfo\x12\x30\n\x0bpublication\x18\x04 \x03(\x0b\x32\x0e.pg_query.NodeR\x0bpublication\x12(\n\x07options\x18\x05 \x03(\x0b\x32\x0e.pg_query.NodeR\x07options\"\x84\x01\n\x14\x44ropSubscriptionStmt\x12\x18\n\x07subname\x18\x01 \x01(\tR\x07subname\x12\x1e\n\nmissing_ok\x18\x02 \x01(\x08R\nmissing_ok\x12\x32\n\x08\x62\x65havior\x18\x03 \x01(\x0e\x32\x16.pg_query.DropBehaviorR\x08\x62\x65havior\"t\n\tScanToken\x12\r\n\x05start\x18\x01 \x01(\x05\x12\x0b\n\x03\x65nd\x18\x02 \x01(\x05\x12\x1e\n\x05token\x18\x04 \x01(\x0e\x32\x0f.pg_query.Token\x12+\n\x0ckeyword_kind\x18\x05 \x01(\x0e\x32\x15.pg_query.KeywordKind*\x7f\n\x0eOverridingKind\x12\x1d\n\x19OVERRIDING_KIND_UNDEFINED\x10\x00\x12\x16\n\x12OVERRIDING_NOT_SET\x10\x01\x12\x19\n\x15OVERRIDING_USER_VALUE\x10\x02\x12\x1b\n\x17OVERRIDING_SYSTEM_VALUE\x10\x03*\x9b\x01\n\x0bQuerySource\x12\x1a\n\x16QUERY_SOURCE_UNDEFINED\x10\x00\x12\x11\n\rQSRC_ORIGINAL\x10\x01\x12\x0f\n\x0bQSRC_PARSER\x10\x02\x12\x15\n\x11QSRC_INSTEAD_RULE\x10\x03\x12\x1a\n\x16QSRC_QUAL_INSTEAD_RULE\x10\x04\x12\x19\n\x15QSRC_NON_INSTEAD_RULE\x10\x05*m\n\tSortByDir\x12\x19\n\x15SORT_BY_DIR_UNDEFINED\x10\x00\x12\x12\n\x0eSORTBY_DEFAULT\x10\x01\x12\x0e\n\nSORTBY_ASC\x10\x02\x12\x0f\n\x0bSORTBY_DESC\x10\x03\x12\x10\n\x0cSORTBY_USING\x10\x04*s\n\x0bSortByNulls\x12\x1b\n\x17SORT_BY_NULLS_UNDEFINED\x10\x00\x12\x18\n\x14SORTBY_NULLS_DEFAULT\x10\x01\x12\x16\n\x12SORTBY_NULLS_FIRST\x10\x02\x12\x15\n\x11SORTBY_NULLS_LAST\x10\x03*~\n\rSetQuantifier\x12\x1c\n\x18SET_QUANTIFIER_UNDEFINED\x10\x00\x12\x1a\n\x16SET_QUANTIFIER_DEFAULT\x10\x01\x12\x16\n\x12SET_QUANTIFIER_ALL\x10\x02\x12\x1b\n\x17SET_QUANTIFIER_DISTINCT\x10\x03*\xb6\x02\n\x0b\x41_Expr_Kind\x12\x19\n\x15\x41_EXPR_KIND_UNDEFINED\x10\x00\x12\x0c\n\x08\x41\x45XPR_OP\x10\x01\x12\x10\n\x0c\x41\x45XPR_OP_ANY\x10\x02\x12\x10\n\x0c\x41\x45XPR_OP_ALL\x10\x03\x12\x12\n\x0e\x41\x45XPR_DISTINCT\x10\x04\x12\x16\n\x12\x41\x45XPR_NOT_DISTINCT\x10\x05\x12\x10\n\x0c\x41\x45XPR_NULLIF\x10\x06\x12\x0c\n\x08\x41\x45XPR_IN\x10\x07\x12\x0e\n\nAEXPR_LIKE\x10\x08\x12\x0f\n\x0b\x41\x45XPR_ILIKE\x10\t\x12\x11\n\rAEXPR_SIMILAR\x10\n\x12\x11\n\rAEXPR_BETWEEN\x10\x0b\x12\x15\n\x11\x41\x45XPR_NOT_BETWEEN\x10\x0c\x12\x15\n\x11\x41\x45XPR_BETWEEN_SYM\x10\r\x12\x19\n\x15\x41\x45XPR_NOT_BETWEEN_SYM\x10\x0e*\xa8\x01\n\x0cRoleSpecType\x12\x1c\n\x18ROLE_SPEC_TYPE_UNDEFINED\x10\x00\x12\x14\n\x10ROLESPEC_CSTRING\x10\x01\x12\x19\n\x15ROLESPEC_CURRENT_ROLE\x10\x02\x12\x19\n\x15ROLESPEC_CURRENT_USER\x10\x03\x12\x19\n\x15ROLESPEC_SESSION_USER\x10\x04\x12\x13\n\x0fROLESPEC_PUBLIC\x10\x05*\xf4\x02\n\x0fTableLikeOption\x12\x1f\n\x1bTABLE_LIKE_OPTION_UNDEFINED\x10\x00\x12\x1e\n\x1a\x43REATE_TABLE_LIKE_COMMENTS\x10\x01\x12!\n\x1d\x43REATE_TABLE_LIKE_COMPRESSION\x10\x02\x12!\n\x1d\x43REATE_TABLE_LIKE_CONSTRAINTS\x10\x03\x12\x1e\n\x1a\x43REATE_TABLE_LIKE_DEFAULTS\x10\x04\x12\x1f\n\x1b\x43REATE_TABLE_LIKE_GENERATED\x10\x05\x12\x1e\n\x1a\x43REATE_TABLE_LIKE_IDENTITY\x10\x06\x12\x1d\n\x19\x43REATE_TABLE_LIKE_INDEXES\x10\x07\x12 \n\x1c\x43REATE_TABLE_LIKE_STATISTICS\x10\x08\x12\x1d\n\x19\x43REATE_TABLE_LIKE_STORAGE\x10\t\x12\x19\n\x15\x43REATE_TABLE_LIKE_ALL\x10\n*v\n\rDefElemAction\x12\x1d\n\x19\x44\x45\x46_ELEM_ACTION_UNDEFINED\x10\x00\x12\x12\n\x0e\x44\x45\x46\x45LEM_UNSPEC\x10\x01\x12\x0f\n\x0b\x44\x45\x46\x45LEM_SET\x10\x02\x12\x0f\n\x0b\x44\x45\x46\x45LEM_ADD\x10\x03\x12\x10\n\x0c\x44\x45\x46\x45LEM_DROP\x10\x04*\x8d\x01\n\x11PartitionStrategy\x12 \n\x1cPARTITION_STRATEGY_UNDEFINED\x10\x00\x12\x1b\n\x17PARTITION_STRATEGY_LIST\x10\x01\x12\x1c\n\x18PARTITION_STRATEGY_RANGE\x10\x02\x12\x1b\n\x17PARTITION_STRATEGY_HASH\x10\x03*\xac\x01\n\x17PartitionRangeDatumKind\x12(\n$PARTITION_RANGE_DATUM_KIND_UNDEFINED\x10\x00\x12\"\n\x1ePARTITION_RANGE_DATUM_MINVALUE\x10\x01\x12\x1f\n\x1bPARTITION_RANGE_DATUM_VALUE\x10\x02\x12\"\n\x1ePARTITION_RANGE_DATUM_MAXVALUE\x10\x03*\xbd\x01\n\x07RTEKind\x12\x15\n\x11RTEKIND_UNDEFINED\x10\x00\x12\x10\n\x0cRTE_RELATION\x10\x01\x12\x10\n\x0cRTE_SUBQUERY\x10\x02\x12\x0c\n\x08RTE_JOIN\x10\x03\x12\x10\n\x0cRTE_FUNCTION\x10\x04\x12\x11\n\rRTE_TABLEFUNC\x10\x05\x12\x0e\n\nRTE_VALUES\x10\x06\x12\x0b\n\x07RTE_CTE\x10\x07\x12\x17\n\x13RTE_NAMEDTUPLESTORE\x10\x08\x12\x0e\n\nRTE_RESULT\x10\t*\xc4\x01\n\x07WCOKind\x12\x15\n\x11WCOKIND_UNDEFINED\x10\x00\x12\x12\n\x0eWCO_VIEW_CHECK\x10\x01\x12\x18\n\x14WCO_RLS_INSERT_CHECK\x10\x02\x12\x18\n\x14WCO_RLS_UPDATE_CHECK\x10\x03\x12\x1a\n\x16WCO_RLS_CONFLICT_CHECK\x10\x04\x12\x1e\n\x1aWCO_RLS_MERGE_UPDATE_CHECK\x10\x05\x12\x1e\n\x1aWCO_RLS_MERGE_DELETE_CHECK\x10\x06*\xaa\x01\n\x0fGroupingSetKind\x12\x1f\n\x1bGROUPING_SET_KIND_UNDEFINED\x10\x00\x12\x16\n\x12GROUPING_SET_EMPTY\x10\x01\x12\x17\n\x13GROUPING_SET_SIMPLE\x10\x02\x12\x17\n\x13GROUPING_SET_ROLLUP\x10\x03\x12\x15\n\x11GROUPING_SET_CUBE\x10\x04\x12\x15\n\x11GROUPING_SET_SETS\x10\x05*|\n\x0e\x43TEMaterialize\x12\x1c\n\x18\x43TEMATERIALIZE_UNDEFINED\x10\x00\x12\x19\n\x15\x43TEMaterializeDefault\x10\x01\x12\x18\n\x14\x43TEMaterializeAlways\x10\x02\x12\x17\n\x13\x43TEMaterializeNever\x10\x03*s\n\x0cSetOperation\x12\x1b\n\x17SET_OPERATION_UNDEFINED\x10\x00\x12\x0e\n\nSETOP_NONE\x10\x01\x12\x0f\n\x0bSETOP_UNION\x10\x02\x12\x13\n\x0fSETOP_INTERSECT\x10\x03\x12\x10\n\x0cSETOP_EXCEPT\x10\x04*\x99\t\n\nObjectType\x12\x19\n\x15OBJECT_TYPE_UNDEFINED\x10\x00\x12\x18\n\x14OBJECT_ACCESS_METHOD\x10\x01\x12\x14\n\x10OBJECT_AGGREGATE\x10\x02\x12\x0f\n\x0bOBJECT_AMOP\x10\x03\x12\x11\n\rOBJECT_AMPROC\x10\x04\x12\x14\n\x10OBJECT_ATTRIBUTE\x10\x05\x12\x0f\n\x0bOBJECT_CAST\x10\x06\x12\x11\n\rOBJECT_COLUMN\x10\x07\x12\x14\n\x10OBJECT_COLLATION\x10\x08\x12\x15\n\x11OBJECT_CONVERSION\x10\t\x12\x13\n\x0fOBJECT_DATABASE\x10\n\x12\x12\n\x0eOBJECT_DEFAULT\x10\x0b\x12\x11\n\rOBJECT_DEFACL\x10\x0c\x12\x11\n\rOBJECT_DOMAIN\x10\r\x12\x18\n\x14OBJECT_DOMCONSTRAINT\x10\x0e\x12\x18\n\x14OBJECT_EVENT_TRIGGER\x10\x0f\x12\x14\n\x10OBJECT_EXTENSION\x10\x10\x12\x0e\n\nOBJECT_FDW\x10\x11\x12\x19\n\x15OBJECT_FOREIGN_SERVER\x10\x12\x12\x18\n\x14OBJECT_FOREIGN_TABLE\x10\x13\x12\x13\n\x0fOBJECT_FUNCTION\x10\x14\x12\x10\n\x0cOBJECT_INDEX\x10\x15\x12\x13\n\x0fOBJECT_LANGUAGE\x10\x16\x12\x16\n\x12OBJECT_LARGEOBJECT\x10\x17\x12\x12\n\x0eOBJECT_MATVIEW\x10\x18\x12\x12\n\x0eOBJECT_OPCLASS\x10\x19\x12\x13\n\x0fOBJECT_OPERATOR\x10\x1a\x12\x13\n\x0fOBJECT_OPFAMILY\x10\x1b\x12\x18\n\x14OBJECT_PARAMETER_ACL\x10\x1c\x12\x11\n\rOBJECT_POLICY\x10\x1d\x12\x14\n\x10OBJECT_PROCEDURE\x10\x1e\x12\x16\n\x12OBJECT_PUBLICATION\x10\x1f\x12 \n\x1cOBJECT_PUBLICATION_NAMESPACE\x10 \x12\x1a\n\x16OBJECT_PUBLICATION_REL\x10!\x12\x0f\n\x0bOBJECT_ROLE\x10\"\x12\x12\n\x0eOBJECT_ROUTINE\x10#\x12\x0f\n\x0bOBJECT_RULE\x10$\x12\x11\n\rOBJECT_SCHEMA\x10%\x12\x13\n\x0fOBJECT_SEQUENCE\x10&\x12\x17\n\x13OBJECT_SUBSCRIPTION\x10\'\x12\x18\n\x14OBJECT_STATISTIC_EXT\x10(\x12\x18\n\x14OBJECT_TABCONSTRAINT\x10)\x12\x10\n\x0cOBJECT_TABLE\x10*\x12\x15\n\x11OBJECT_TABLESPACE\x10+\x12\x14\n\x10OBJECT_TRANSFORM\x10,\x12\x12\n\x0eOBJECT_TRIGGER\x10-\x12\x1a\n\x16OBJECT_TSCONFIGURATION\x10.\x12\x17\n\x13OBJECT_TSDICTIONARY\x10/\x12\x13\n\x0fOBJECT_TSPARSER\x10\x30\x12\x15\n\x11OBJECT_TSTEMPLATE\x10\x31\x12\x0f\n\x0bOBJECT_TYPE\x10\x32\x12\x17\n\x13OBJECT_USER_MAPPING\x10\x33\x12\x0f\n\x0bOBJECT_VIEW\x10\x34*P\n\x0c\x44ropBehavior\x12\x1b\n\x17\x44ROP_BEHAVIOR_UNDEFINED\x10\x00\x12\x11\n\rDROP_RESTRICT\x10\x01\x12\x10\n\x0c\x44ROP_CASCADE\x10\x02*\xf6\x0b\n\x0e\x41lterTableType\x12\x1e\n\x1a\x41LTER_TABLE_TYPE_UNDEFINED\x10\x00\x12\x10\n\x0c\x41T_AddColumn\x10\x01\x12\x16\n\x12\x41T_AddColumnToView\x10\x02\x12\x14\n\x10\x41T_ColumnDefault\x10\x03\x12\x1a\n\x16\x41T_CookedColumnDefault\x10\x04\x12\x12\n\x0e\x41T_DropNotNull\x10\x05\x12\x11\n\rAT_SetNotNull\x10\x06\x12\x15\n\x11\x41T_DropExpression\x10\x07\x12\x13\n\x0f\x41T_CheckNotNull\x10\x08\x12\x14\n\x10\x41T_SetStatistics\x10\t\x12\x11\n\rAT_SetOptions\x10\n\x12\x13\n\x0f\x41T_ResetOptions\x10\x0b\x12\x11\n\rAT_SetStorage\x10\x0c\x12\x15\n\x11\x41T_SetCompression\x10\r\x12\x11\n\rAT_DropColumn\x10\x0e\x12\x0f\n\x0b\x41T_AddIndex\x10\x0f\x12\x11\n\rAT_ReAddIndex\x10\x10\x12\x14\n\x10\x41T_AddConstraint\x10\x11\x12\x16\n\x12\x41T_ReAddConstraint\x10\x12\x12\x1c\n\x18\x41T_ReAddDomainConstraint\x10\x13\x12\x16\n\x12\x41T_AlterConstraint\x10\x14\x12\x19\n\x15\x41T_ValidateConstraint\x10\x15\x12\x19\n\x15\x41T_AddIndexConstraint\x10\x16\x12\x15\n\x11\x41T_DropConstraint\x10\x17\x12\x13\n\x0f\x41T_ReAddComment\x10\x18\x12\x16\n\x12\x41T_AlterColumnType\x10\x19\x12 \n\x1c\x41T_AlterColumnGenericOptions\x10\x1a\x12\x12\n\x0e\x41T_ChangeOwner\x10\x1b\x12\x10\n\x0c\x41T_ClusterOn\x10\x1c\x12\x12\n\x0e\x41T_DropCluster\x10\x1d\x12\x10\n\x0c\x41T_SetLogged\x10\x1e\x12\x12\n\x0e\x41T_SetUnLogged\x10\x1f\x12\x0f\n\x0b\x41T_DropOids\x10 \x12\x16\n\x12\x41T_SetAccessMethod\x10!\x12\x14\n\x10\x41T_SetTableSpace\x10\"\x12\x14\n\x10\x41T_SetRelOptions\x10#\x12\x16\n\x12\x41T_ResetRelOptions\x10$\x12\x18\n\x14\x41T_ReplaceRelOptions\x10%\x12\x11\n\rAT_EnableTrig\x10&\x12\x17\n\x13\x41T_EnableAlwaysTrig\x10\'\x12\x18\n\x14\x41T_EnableReplicaTrig\x10(\x12\x12\n\x0e\x41T_DisableTrig\x10)\x12\x14\n\x10\x41T_EnableTrigAll\x10*\x12\x15\n\x11\x41T_DisableTrigAll\x10+\x12\x15\n\x11\x41T_EnableTrigUser\x10,\x12\x16\n\x12\x41T_DisableTrigUser\x10-\x12\x11\n\rAT_EnableRule\x10.\x12\x17\n\x13\x41T_EnableAlwaysRule\x10/\x12\x18\n\x14\x41T_EnableReplicaRule\x10\x30\x12\x12\n\x0e\x41T_DisableRule\x10\x31\x12\x11\n\rAT_AddInherit\x10\x32\x12\x12\n\x0e\x41T_DropInherit\x10\x33\x12\x0c\n\x08\x41T_AddOf\x10\x34\x12\r\n\tAT_DropOf\x10\x35\x12\x16\n\x12\x41T_ReplicaIdentity\x10\x36\x12\x18\n\x14\x41T_EnableRowSecurity\x10\x37\x12\x19\n\x15\x41T_DisableRowSecurity\x10\x38\x12\x17\n\x13\x41T_ForceRowSecurity\x10\x39\x12\x19\n\x15\x41T_NoForceRowSecurity\x10:\x12\x15\n\x11\x41T_GenericOptions\x10;\x12\x16\n\x12\x41T_AttachPartition\x10<\x12\x16\n\x12\x41T_DetachPartition\x10=\x12\x1e\n\x1a\x41T_DetachPartitionFinalize\x10>\x12\x12\n\x0e\x41T_AddIdentity\x10?\x12\x12\n\x0e\x41T_SetIdentity\x10@\x12\x13\n\x0f\x41T_DropIdentity\x10\x41\x12\x16\n\x12\x41T_ReAddStatistics\x10\x42*\x80\x01\n\x0fGrantTargetType\x12\x1f\n\x1bGRANT_TARGET_TYPE_UNDEFINED\x10\x00\x12\x15\n\x11\x41\x43L_TARGET_OBJECT\x10\x01\x12\x1c\n\x18\x41\x43L_TARGET_ALL_IN_SCHEMA\x10\x02\x12\x17\n\x13\x41\x43L_TARGET_DEFAULTS\x10\x03*\xa4\x01\n\x0fVariableSetKind\x12\x1f\n\x1bVARIABLE_SET_KIND_UNDEFINED\x10\x00\x12\x11\n\rVAR_SET_VALUE\x10\x01\x12\x13\n\x0fVAR_SET_DEFAULT\x10\x02\x12\x13\n\x0fVAR_SET_CURRENT\x10\x03\x12\x11\n\rVAR_SET_MULTI\x10\x04\x12\r\n\tVAR_RESET\x10\x05\x12\x11\n\rVAR_RESET_ALL\x10\x06*\xdf\x02\n\nConstrType\x12\x19\n\x15\x43ONSTR_TYPE_UNDEFINED\x10\x00\x12\x0f\n\x0b\x43ONSTR_NULL\x10\x01\x12\x12\n\x0e\x43ONSTR_NOTNULL\x10\x02\x12\x12\n\x0e\x43ONSTR_DEFAULT\x10\x03\x12\x13\n\x0f\x43ONSTR_IDENTITY\x10\x04\x12\x14\n\x10\x43ONSTR_GENERATED\x10\x05\x12\x10\n\x0c\x43ONSTR_CHECK\x10\x06\x12\x12\n\x0e\x43ONSTR_PRIMARY\x10\x07\x12\x11\n\rCONSTR_UNIQUE\x10\x08\x12\x14\n\x10\x43ONSTR_EXCLUSION\x10\t\x12\x12\n\x0e\x43ONSTR_FOREIGN\x10\n\x12\x1a\n\x16\x43ONSTR_ATTR_DEFERRABLE\x10\x0b\x12\x1e\n\x1a\x43ONSTR_ATTR_NOT_DEFERRABLE\x10\x0c\x12\x18\n\x14\x43ONSTR_ATTR_DEFERRED\x10\r\x12\x19\n\x15\x43ONSTR_ATTR_IMMEDIATE\x10\x0e*\x9c\x01\n\x17ImportForeignSchemaType\x12(\n$IMPORT_FOREIGN_SCHEMA_TYPE_UNDEFINED\x10\x00\x12\x19\n\x15\x46\x44W_IMPORT_SCHEMA_ALL\x10\x01\x12\x1e\n\x1a\x46\x44W_IMPORT_SCHEMA_LIMIT_TO\x10\x02\x12\x1c\n\x18\x46\x44W_IMPORT_SCHEMA_EXCEPT\x10\x03*f\n\x0cRoleStmtType\x12\x1c\n\x18ROLE_STMT_TYPE_UNDEFINED\x10\x00\x12\x11\n\rROLESTMT_ROLE\x10\x01\x12\x11\n\rROLESTMT_USER\x10\x02\x12\x12\n\x0eROLESTMT_GROUP\x10\x03*~\n\x0e\x46\x65tchDirection\x12\x1d\n\x19\x46\x45TCH_DIRECTION_UNDEFINED\x10\x00\x12\x11\n\rFETCH_FORWARD\x10\x01\x12\x12\n\x0e\x46\x45TCH_BACKWARD\x10\x02\x12\x12\n\x0e\x46\x45TCH_ABSOLUTE\x10\x03\x12\x12\n\x0e\x46\x45TCH_RELATIVE\x10\x04*\xc2\x01\n\x15\x46unctionParameterMode\x12%\n!FUNCTION_PARAMETER_MODE_UNDEFINED\x10\x00\x12\x11\n\rFUNC_PARAM_IN\x10\x01\x12\x12\n\x0e\x46UNC_PARAM_OUT\x10\x02\x12\x14\n\x10\x46UNC_PARAM_INOUT\x10\x03\x12\x17\n\x13\x46UNC_PARAM_VARIADIC\x10\x04\x12\x14\n\x10\x46UNC_PARAM_TABLE\x10\x05\x12\x16\n\x12\x46UNC_PARAM_DEFAULT\x10\x06*\xbe\x02\n\x13TransactionStmtKind\x12#\n\x1fTRANSACTION_STMT_KIND_UNDEFINED\x10\x00\x12\x14\n\x10TRANS_STMT_BEGIN\x10\x01\x12\x14\n\x10TRANS_STMT_START\x10\x02\x12\x15\n\x11TRANS_STMT_COMMIT\x10\x03\x12\x17\n\x13TRANS_STMT_ROLLBACK\x10\x04\x12\x18\n\x14TRANS_STMT_SAVEPOINT\x10\x05\x12\x16\n\x12TRANS_STMT_RELEASE\x10\x06\x12\x1a\n\x16TRANS_STMT_ROLLBACK_TO\x10\x07\x12\x16\n\x12TRANS_STMT_PREPARE\x10\x08\x12\x1e\n\x1aTRANS_STMT_COMMIT_PREPARED\x10\t\x12 \n\x1cTRANS_STMT_ROLLBACK_PREPARED\x10\n*z\n\x0fViewCheckOption\x12\x1f\n\x1bVIEW_CHECK_OPTION_UNDEFINED\x10\x00\x12\x13\n\x0fNO_CHECK_OPTION\x10\x01\x12\x16\n\x12LOCAL_CHECK_OPTION\x10\x02\x12\x19\n\x15\x43\x41SCADED_CHECK_OPTION\x10\x03*v\n\x0b\x44iscardMode\x12\x1a\n\x16\x44ISCARD_MODE_UNDEFINED\x10\x00\x12\x0f\n\x0b\x44ISCARD_ALL\x10\x01\x12\x11\n\rDISCARD_PLANS\x10\x02\x12\x15\n\x11\x44ISCARD_SEQUENCES\x10\x03\x12\x10\n\x0c\x44ISCARD_TEMP\x10\x04*\xbd\x01\n\x11ReindexObjectType\x12!\n\x1dREINDEX_OBJECT_TYPE_UNDEFINED\x10\x00\x12\x18\n\x14REINDEX_OBJECT_INDEX\x10\x01\x12\x18\n\x14REINDEX_OBJECT_TABLE\x10\x02\x12\x19\n\x15REINDEX_OBJECT_SCHEMA\x10\x03\x12\x19\n\x15REINDEX_OBJECT_SYSTEM\x10\x04\x12\x1b\n\x17REINDEX_OBJECT_DATABASE\x10\x05*\xef\x01\n\x11\x41lterTSConfigType\x12!\n\x1d\x41LTER_TSCONFIG_TYPE_UNDEFINED\x10\x00\x12\x1e\n\x1a\x41LTER_TSCONFIG_ADD_MAPPING\x10\x01\x12*\n&ALTER_TSCONFIG_ALTER_MAPPING_FOR_TOKEN\x10\x02\x12\x1f\n\x1b\x41LTER_TSCONFIG_REPLACE_DICT\x10\x03\x12)\n%ALTER_TSCONFIG_REPLACE_DICT_FOR_TOKEN\x10\x04\x12\x1f\n\x1b\x41LTER_TSCONFIG_DROP_MAPPING\x10\x05*\xca\x01\n\x16PublicationObjSpecType\x12\'\n#PUBLICATION_OBJ_SPEC_TYPE_UNDEFINED\x10\x00\x12\x18\n\x14PUBLICATIONOBJ_TABLE\x10\x01\x12#\n\x1fPUBLICATIONOBJ_TABLES_IN_SCHEMA\x10\x02\x12\'\n#PUBLICATIONOBJ_TABLES_IN_CUR_SCHEMA\x10\x03\x12\x1f\n\x1bPUBLICATIONOBJ_CONTINUATION\x10\x04*z\n\x16\x41lterPublicationAction\x12&\n\"ALTER_PUBLICATION_ACTION_UNDEFINED\x10\x00\x12\x11\n\rAP_AddObjects\x10\x01\x12\x12\n\x0e\x41P_DropObjects\x10\x02\x12\x11\n\rAP_SetObjects\x10\x03*\xd7\x02\n\x15\x41lterSubscriptionType\x12%\n!ALTER_SUBSCRIPTION_TYPE_UNDEFINED\x10\x00\x12\x1e\n\x1a\x41LTER_SUBSCRIPTION_OPTIONS\x10\x01\x12!\n\x1d\x41LTER_SUBSCRIPTION_CONNECTION\x10\x02\x12&\n\"ALTER_SUBSCRIPTION_SET_PUBLICATION\x10\x03\x12&\n\"ALTER_SUBSCRIPTION_ADD_PUBLICATION\x10\x04\x12\'\n#ALTER_SUBSCRIPTION_DROP_PUBLICATION\x10\x05\x12\x1e\n\x1a\x41LTER_SUBSCRIPTION_REFRESH\x10\x06\x12\x1e\n\x1a\x41LTER_SUBSCRIPTION_ENABLED\x10\x07\x12\x1b\n\x17\x41LTER_SUBSCRIPTION_SKIP\x10\x08*\x8c\x01\n\x0eOnCommitAction\x12\x1e\n\x1aON_COMMIT_ACTION_UNDEFINED\x10\x00\x12\x11\n\rONCOMMIT_NOOP\x10\x01\x12\x1a\n\x16ONCOMMIT_PRESERVE_ROWS\x10\x02\x12\x18\n\x14ONCOMMIT_DELETE_ROWS\x10\x03\x12\x11\n\rONCOMMIT_DROP\x10\x04*o\n\tParamKind\x12\x18\n\x14PARAM_KIND_UNDEFINED\x10\x00\x12\x10\n\x0cPARAM_EXTERN\x10\x01\x12\x0e\n\nPARAM_EXEC\x10\x02\x12\x11\n\rPARAM_SUBLINK\x10\x03\x12\x13\n\x0fPARAM_MULTIEXPR\x10\x04*\x8e\x01\n\x0f\x43oercionContext\x12\x1e\n\x1a\x43OERCION_CONTEXT_UNDEFINED\x10\x00\x12\x15\n\x11\x43OERCION_IMPLICIT\x10\x01\x12\x17\n\x13\x43OERCION_ASSIGNMENT\x10\x02\x12\x14\n\x10\x43OERCION_PLPGSQL\x10\x03\x12\x15\n\x11\x43OERCION_EXPLICIT\x10\x04*\x90\x01\n\x0c\x43oercionForm\x12\x1b\n\x17\x43OERCION_FORM_UNDEFINED\x10\x00\x12\x18\n\x14\x43OERCE_EXPLICIT_CALL\x10\x01\x12\x18\n\x14\x43OERCE_EXPLICIT_CAST\x10\x02\x12\x18\n\x14\x43OERCE_IMPLICIT_CAST\x10\x03\x12\x15\n\x11\x43OERCE_SQL_SYNTAX\x10\x04*U\n\x0c\x42oolExprType\x12\x1c\n\x18\x42OOL_EXPR_TYPE_UNDEFINED\x10\x00\x12\x0c\n\x08\x41ND_EXPR\x10\x01\x12\x0b\n\x07OR_EXPR\x10\x02\x12\x0c\n\x08NOT_EXPR\x10\x03*\xc5\x01\n\x0bSubLinkType\x12\x1b\n\x17SUB_LINK_TYPE_UNDEFINED\x10\x00\x12\x12\n\x0e\x45XISTS_SUBLINK\x10\x01\x12\x0f\n\x0b\x41LL_SUBLINK\x10\x02\x12\x0f\n\x0b\x41NY_SUBLINK\x10\x03\x12\x16\n\x12ROWCOMPARE_SUBLINK\x10\x04\x12\x10\n\x0c\x45XPR_SUBLINK\x10\x05\x12\x15\n\x11MULTIEXPR_SUBLINK\x10\x06\x12\x11\n\rARRAY_SUBLINK\x10\x07\x12\x0f\n\x0b\x43TE_SUBLINK\x10\x08*\xa2\x01\n\x0eRowCompareType\x12\x1e\n\x1aROW_COMPARE_TYPE_UNDEFINED\x10\x00\x12\x11\n\rROWCOMPARE_LT\x10\x01\x12\x11\n\rROWCOMPARE_LE\x10\x02\x12\x11\n\rROWCOMPARE_EQ\x10\x03\x12\x11\n\rROWCOMPARE_GE\x10\x04\x12\x11\n\rROWCOMPARE_GT\x10\x05\x12\x11\n\rROWCOMPARE_NE\x10\x06*C\n\x08MinMaxOp\x12\x18\n\x14MIN_MAX_OP_UNDEFINED\x10\x00\x12\x0f\n\x0bIS_GREATEST\x10\x01\x12\x0c\n\x08IS_LEAST\x10\x02*\xad\x03\n\x12SQLValueFunctionOp\x12\"\n\x1eSQLVALUE_FUNCTION_OP_UNDEFINED\x10\x00\x12\x16\n\x12SVFOP_CURRENT_DATE\x10\x01\x12\x16\n\x12SVFOP_CURRENT_TIME\x10\x02\x12\x18\n\x14SVFOP_CURRENT_TIME_N\x10\x03\x12\x1b\n\x17SVFOP_CURRENT_TIMESTAMP\x10\x04\x12\x1d\n\x19SVFOP_CURRENT_TIMESTAMP_N\x10\x05\x12\x13\n\x0fSVFOP_LOCALTIME\x10\x06\x12\x15\n\x11SVFOP_LOCALTIME_N\x10\x07\x12\x18\n\x14SVFOP_LOCALTIMESTAMP\x10\x08\x12\x1a\n\x16SVFOP_LOCALTIMESTAMP_N\x10\t\x12\x16\n\x12SVFOP_CURRENT_ROLE\x10\n\x12\x16\n\x12SVFOP_CURRENT_USER\x10\x0b\x12\x0e\n\nSVFOP_USER\x10\x0c\x12\x16\n\x12SVFOP_SESSION_USER\x10\r\x12\x19\n\x15SVFOP_CURRENT_CATALOG\x10\x0e\x12\x18\n\x14SVFOP_CURRENT_SCHEMA\x10\x0f*\xb2\x01\n\tXmlExprOp\x12\x19\n\x15XML_EXPR_OP_UNDEFINED\x10\x00\x12\x10\n\x0cIS_XMLCONCAT\x10\x01\x12\x11\n\rIS_XMLELEMENT\x10\x02\x12\x10\n\x0cIS_XMLFOREST\x10\x03\x12\x0f\n\x0bIS_XMLPARSE\x10\x04\x12\x0c\n\x08IS_XMLPI\x10\x05\x12\x0e\n\nIS_XMLROOT\x10\x06\x12\x13\n\x0fIS_XMLSERIALIZE\x10\x07\x12\x0f\n\x0bIS_DOCUMENT\x10\x08*]\n\rXmlOptionType\x12\x1d\n\x19XML_OPTION_TYPE_UNDEFINED\x10\x00\x12\x16\n\x12XMLOPTION_DOCUMENT\x10\x01\x12\x15\n\x11XMLOPTION_CONTENT\x10\x02*t\n\x0cJsonEncoding\x12\x1b\n\x17JSON_ENCODING_UNDEFINED\x10\x00\x12\x12\n\x0eJS_ENC_DEFAULT\x10\x01\x12\x0f\n\x0bJS_ENC_UTF8\x10\x02\x12\x10\n\x0cJS_ENC_UTF16\x10\x03\x12\x10\n\x0cJS_ENC_UTF32\x10\x04*p\n\x0eJsonFormatType\x12\x1e\n\x1aJSON_FORMAT_TYPE_UNDEFINED\x10\x00\x12\x15\n\x11JS_FORMAT_DEFAULT\x10\x01\x12\x12\n\x0eJS_FORMAT_JSON\x10\x02\x12\x13\n\x0fJS_FORMAT_JSONB\x10\x03*\x9e\x01\n\x13JsonConstructorType\x12#\n\x1fJSON_CONSTRUCTOR_TYPE_UNDEFINED\x10\x00\x12\x16\n\x12JSCTOR_JSON_OBJECT\x10\x01\x12\x15\n\x11JSCTOR_JSON_ARRAY\x10\x02\x12\x19\n\x15JSCTOR_JSON_OBJECTAGG\x10\x03\x12\x18\n\x14JSCTOR_JSON_ARRAYAGG\x10\x04*z\n\rJsonValueType\x12\x1d\n\x19JSON_VALUE_TYPE_UNDEFINED\x10\x00\x12\x0f\n\x0bJS_TYPE_ANY\x10\x01\x12\x12\n\x0eJS_TYPE_OBJECT\x10\x02\x12\x11\n\rJS_TYPE_ARRAY\x10\x03\x12\x12\n\x0eJS_TYPE_SCALAR\x10\x04*J\n\x0cNullTestType\x12\x1c\n\x18NULL_TEST_TYPE_UNDEFINED\x10\x00\x12\x0b\n\x07IS_NULL\x10\x01\x12\x0f\n\x0bIS_NOT_NULL\x10\x02*\x8e\x01\n\x0c\x42oolTestType\x12\x1c\n\x18\x42OOL_TEST_TYPE_UNDEFINED\x10\x00\x12\x0b\n\x07IS_TRUE\x10\x01\x12\x0f\n\x0bIS_NOT_TRUE\x10\x02\x12\x0c\n\x08IS_FALSE\x10\x03\x12\x10\n\x0cIS_NOT_FALSE\x10\x04\x12\x0e\n\nIS_UNKNOWN\x10\x05\x12\x12\n\x0eIS_NOT_UNKNOWN\x10\x06*\xa3\x01\n\x07\x43mdType\x12\x16\n\x12\x43MD_TYPE_UNDEFINED\x10\x00\x12\x0f\n\x0b\x43MD_UNKNOWN\x10\x01\x12\x0e\n\nCMD_SELECT\x10\x02\x12\x0e\n\nCMD_UPDATE\x10\x03\x12\x0e\n\nCMD_INSERT\x10\x04\x12\x0e\n\nCMD_DELETE\x10\x05\x12\r\n\tCMD_MERGE\x10\x06\x12\x0f\n\x0b\x43MD_UTILITY\x10\x07\x12\x0f\n\x0b\x43MD_NOTHING\x10\x08*\xc2\x01\n\x08JoinType\x12\x17\n\x13JOIN_TYPE_UNDEFINED\x10\x00\x12\x0e\n\nJOIN_INNER\x10\x01\x12\r\n\tJOIN_LEFT\x10\x02\x12\r\n\tJOIN_FULL\x10\x03\x12\x0e\n\nJOIN_RIGHT\x10\x04\x12\r\n\tJOIN_SEMI\x10\x05\x12\r\n\tJOIN_ANTI\x10\x06\x12\x13\n\x0fJOIN_RIGHT_ANTI\x10\x07\x12\x15\n\x11JOIN_UNIQUE_OUTER\x10\x08\x12\x15\n\x11JOIN_UNIQUE_INNER\x10\t*g\n\x0b\x41ggStrategy\x12\x1a\n\x16\x41GG_STRATEGY_UNDEFINED\x10\x00\x12\r\n\tAGG_PLAIN\x10\x01\x12\x0e\n\nAGG_SORTED\x10\x02\x12\x0e\n\nAGG_HASHED\x10\x03\x12\r\n\tAGG_MIXED\x10\x04*r\n\x08\x41ggSplit\x12\x17\n\x13\x41GG_SPLIT_UNDEFINED\x10\x00\x12\x13\n\x0f\x41GGSPLIT_SIMPLE\x10\x01\x12\x1b\n\x17\x41GGSPLIT_INITIAL_SERIAL\x10\x02\x12\x1b\n\x17\x41GGSPLIT_FINAL_DESERIAL\x10\x03*\x86\x01\n\x08SetOpCmd\x12\x18\n\x14SET_OP_CMD_UNDEFINED\x10\x00\x12\x16\n\x12SETOPCMD_INTERSECT\x10\x01\x12\x1a\n\x16SETOPCMD_INTERSECT_ALL\x10\x02\x12\x13\n\x0fSETOPCMD_EXCEPT\x10\x03\x12\x17\n\x13SETOPCMD_EXCEPT_ALL\x10\x04*R\n\rSetOpStrategy\x12\x1d\n\x19SET_OP_STRATEGY_UNDEFINED\x10\x00\x12\x10\n\x0cSETOP_SORTED\x10\x01\x12\x10\n\x0cSETOP_HASHED\x10\x02*x\n\x10OnConflictAction\x12 \n\x1cON_CONFLICT_ACTION_UNDEFINED\x10\x00\x12\x13\n\x0fONCONFLICT_NONE\x10\x01\x12\x16\n\x12ONCONFLICT_NOTHING\x10\x02\x12\x15\n\x11ONCONFLICT_UPDATE\x10\x03*w\n\x0bLimitOption\x12\x1a\n\x16LIMIT_OPTION_UNDEFINED\x10\x00\x12\x18\n\x14LIMIT_OPTION_DEFAULT\x10\x01\x12\x16\n\x12LIMIT_OPTION_COUNT\x10\x02\x12\x1a\n\x16LIMIT_OPTION_WITH_TIES\x10\x03*\x98\x01\n\x12LockClauseStrength\x12\"\n\x1eLOCK_CLAUSE_STRENGTH_UNDEFINED\x10\x00\x12\x0c\n\x08LCS_NONE\x10\x01\x12\x13\n\x0fLCS_FORKEYSHARE\x10\x02\x12\x10\n\x0cLCS_FORSHARE\x10\x03\x12\x16\n\x12LCS_FORNOKEYUPDATE\x10\x04\x12\x11\n\rLCS_FORUPDATE\x10\x05*h\n\x0eLockWaitPolicy\x12\x1e\n\x1aLOCK_WAIT_POLICY_UNDEFINED\x10\x00\x12\x11\n\rLockWaitBlock\x10\x01\x12\x10\n\x0cLockWaitSkip\x10\x02\x12\x11\n\rLockWaitError\x10\x03*\x8e\x01\n\rLockTupleMode\x12\x1d\n\x19LOCK_TUPLE_MODE_UNDEFINED\x10\x00\x12\x15\n\x11LockTupleKeyShare\x10\x01\x12\x12\n\x0eLockTupleShare\x10\x02\x12\x1b\n\x17LockTupleNoKeyExclusive\x10\x03\x12\x16\n\x12LockTupleExclusive\x10\x04*}\n\x0bKeywordKind\x12\x0e\n\nNO_KEYWORD\x10\x00\x12\x16\n\x12UNRESERVED_KEYWORD\x10\x01\x12\x14\n\x10\x43OL_NAME_KEYWORD\x10\x02\x12\x1a\n\x16TYPE_FUNC_NAME_KEYWORD\x10\x03\x12\x14\n\x10RESERVED_KEYWORD\x10\x04*\xb8\x39\n\x05Token\x12\x07\n\x03NUL\x10\x00\x12\x0c\n\x08\x41SCII_36\x10$\x12\x0c\n\x08\x41SCII_37\x10%\x12\x0c\n\x08\x41SCII_40\x10(\x12\x0c\n\x08\x41SCII_41\x10)\x12\x0c\n\x08\x41SCII_42\x10*\x12\x0c\n\x08\x41SCII_43\x10+\x12\x0c\n\x08\x41SCII_44\x10,\x12\x0c\n\x08\x41SCII_45\x10-\x12\x0c\n\x08\x41SCII_46\x10.\x12\x0c\n\x08\x41SCII_47\x10/\x12\x0c\n\x08\x41SCII_58\x10:\x12\x0c\n\x08\x41SCII_59\x10;\x12\x0c\n\x08\x41SCII_60\x10<\x12\x0c\n\x08\x41SCII_61\x10=\x12\x0c\n\x08\x41SCII_62\x10>\x12\x0c\n\x08\x41SCII_63\x10?\x12\x0c\n\x08\x41SCII_91\x10[\x12\x0c\n\x08\x41SCII_92\x10\\\x12\x0c\n\x08\x41SCII_93\x10]\x12\x0c\n\x08\x41SCII_94\x10^\x12\n\n\x05IDENT\x10\x82\x02\x12\x0b\n\x06UIDENT\x10\x83\x02\x12\x0b\n\x06\x46\x43ONST\x10\x84\x02\x12\x0b\n\x06SCONST\x10\x85\x02\x12\x0c\n\x07USCONST\x10\x86\x02\x12\x0b\n\x06\x42\x43ONST\x10\x87\x02\x12\x0b\n\x06XCONST\x10\x88\x02\x12\x07\n\x02Op\x10\x89\x02\x12\x0b\n\x06ICONST\x10\x8a\x02\x12\n\n\x05PARAM\x10\x8b\x02\x12\r\n\x08TYPECAST\x10\x8c\x02\x12\x0c\n\x07\x44OT_DOT\x10\x8d\x02\x12\x11\n\x0c\x43OLON_EQUALS\x10\x8e\x02\x12\x13\n\x0e\x45QUALS_GREATER\x10\x8f\x02\x12\x10\n\x0bLESS_EQUALS\x10\x90\x02\x12\x13\n\x0eGREATER_EQUALS\x10\x91\x02\x12\x0f\n\nNOT_EQUALS\x10\x92\x02\x12\x10\n\x0bSQL_COMMENT\x10\x93\x02\x12\x0e\n\tC_COMMENT\x10\x94\x02\x12\x0c\n\x07\x41\x42ORT_P\x10\x95\x02\x12\x0b\n\x06\x41\x42SENT\x10\x96\x02\x12\x0f\n\nABSOLUTE_P\x10\x97\x02\x12\x0b\n\x06\x41\x43\x43\x45SS\x10\x98\x02\x12\x0b\n\x06\x41\x43TION\x10\x99\x02\x12\n\n\x05\x41\x44\x44_P\x10\x9a\x02\x12\n\n\x05\x41\x44MIN\x10\x9b\x02\x12\n\n\x05\x41\x46TER\x10\x9c\x02\x12\x0e\n\tAGGREGATE\x10\x9d\x02\x12\x08\n\x03\x41LL\x10\x9e\x02\x12\t\n\x04\x41LSO\x10\x9f\x02\x12\n\n\x05\x41LTER\x10\xa0\x02\x12\x0b\n\x06\x41LWAYS\x10\xa1\x02\x12\x0c\n\x07\x41NALYSE\x10\xa2\x02\x12\x0c\n\x07\x41NALYZE\x10\xa3\x02\x12\x08\n\x03\x41ND\x10\xa4\x02\x12\x08\n\x03\x41NY\x10\xa5\x02\x12\n\n\x05\x41RRAY\x10\xa6\x02\x12\x07\n\x02\x41S\x10\xa7\x02\x12\x08\n\x03\x41SC\x10\xa8\x02\x12\x0f\n\nASENSITIVE\x10\xa9\x02\x12\x0e\n\tASSERTION\x10\xaa\x02\x12\x0f\n\nASSIGNMENT\x10\xab\x02\x12\x0f\n\nASYMMETRIC\x10\xac\x02\x12\x0b\n\x06\x41TOMIC\x10\xad\x02\x12\x07\n\x02\x41T\x10\xae\x02\x12\x0b\n\x06\x41TTACH\x10\xaf\x02\x12\x0e\n\tATTRIBUTE\x10\xb0\x02\x12\x12\n\rAUTHORIZATION\x10\xb1\x02\x12\r\n\x08\x42\x41\x43KWARD\x10\xb2\x02\x12\x0b\n\x06\x42\x45\x46ORE\x10\xb3\x02\x12\x0c\n\x07\x42\x45GIN_P\x10\xb4\x02\x12\x0c\n\x07\x42\x45TWEEN\x10\xb5\x02\x12\x0b\n\x06\x42IGINT\x10\xb6\x02\x12\x0b\n\x06\x42INARY\x10\xb7\x02\x12\x08\n\x03\x42IT\x10\xb8\x02\x12\x0e\n\tBOOLEAN_P\x10\xb9\x02\x12\t\n\x04\x42OTH\x10\xba\x02\x12\x0c\n\x07\x42READTH\x10\xbb\x02\x12\x07\n\x02\x42Y\x10\xbc\x02\x12\n\n\x05\x43\x41\x43HE\x10\xbd\x02\x12\t\n\x04\x43\x41LL\x10\xbe\x02\x12\x0b\n\x06\x43\x41LLED\x10\xbf\x02\x12\x0c\n\x07\x43\x41SCADE\x10\xc0\x02\x12\r\n\x08\x43\x41SCADED\x10\xc1\x02\x12\t\n\x04\x43\x41SE\x10\xc2\x02\x12\t\n\x04\x43\x41ST\x10\xc3\x02\x12\x0e\n\tCATALOG_P\x10\xc4\x02\x12\n\n\x05\x43HAIN\x10\xc5\x02\x12\x0b\n\x06\x43HAR_P\x10\xc6\x02\x12\x0e\n\tCHARACTER\x10\xc7\x02\x12\x14\n\x0f\x43HARACTERISTICS\x10\xc8\x02\x12\n\n\x05\x43HECK\x10\xc9\x02\x12\x0f\n\nCHECKPOINT\x10\xca\x02\x12\n\n\x05\x43LASS\x10\xcb\x02\x12\n\n\x05\x43LOSE\x10\xcc\x02\x12\x0c\n\x07\x43LUSTER\x10\xcd\x02\x12\r\n\x08\x43OALESCE\x10\xce\x02\x12\x0c\n\x07\x43OLLATE\x10\xcf\x02\x12\x0e\n\tCOLLATION\x10\xd0\x02\x12\x0b\n\x06\x43OLUMN\x10\xd1\x02\x12\x0c\n\x07\x43OLUMNS\x10\xd2\x02\x12\x0c\n\x07\x43OMMENT\x10\xd3\x02\x12\r\n\x08\x43OMMENTS\x10\xd4\x02\x12\x0b\n\x06\x43OMMIT\x10\xd5\x02\x12\x0e\n\tCOMMITTED\x10\xd6\x02\x12\x10\n\x0b\x43OMPRESSION\x10\xd7\x02\x12\x11\n\x0c\x43ONCURRENTLY\x10\xd8\x02\x12\x12\n\rCONFIGURATION\x10\xd9\x02\x12\r\n\x08\x43ONFLICT\x10\xda\x02\x12\x0f\n\nCONNECTION\x10\xdb\x02\x12\x0f\n\nCONSTRAINT\x10\xdc\x02\x12\x10\n\x0b\x43ONSTRAINTS\x10\xdd\x02\x12\x0e\n\tCONTENT_P\x10\xde\x02\x12\x0f\n\nCONTINUE_P\x10\xdf\x02\x12\x11\n\x0c\x43ONVERSION_P\x10\xe0\x02\x12\t\n\x04\x43OPY\x10\xe1\x02\x12\t\n\x04\x43OST\x10\xe2\x02\x12\x0b\n\x06\x43REATE\x10\xe3\x02\x12\n\n\x05\x43ROSS\x10\xe4\x02\x12\x08\n\x03\x43SV\x10\xe5\x02\x12\t\n\x04\x43UBE\x10\xe6\x02\x12\x0e\n\tCURRENT_P\x10\xe7\x02\x12\x14\n\x0f\x43URRENT_CATALOG\x10\xe8\x02\x12\x11\n\x0c\x43URRENT_DATE\x10\xe9\x02\x12\x11\n\x0c\x43URRENT_ROLE\x10\xea\x02\x12\x13\n\x0e\x43URRENT_SCHEMA\x10\xeb\x02\x12\x11\n\x0c\x43URRENT_TIME\x10\xec\x02\x12\x16\n\x11\x43URRENT_TIMESTAMP\x10\xed\x02\x12\x11\n\x0c\x43URRENT_USER\x10\xee\x02\x12\x0b\n\x06\x43URSOR\x10\xef\x02\x12\n\n\x05\x43YCLE\x10\xf0\x02\x12\x0b\n\x06\x44\x41TA_P\x10\xf1\x02\x12\r\n\x08\x44\x41TABASE\x10\xf2\x02\x12\n\n\x05\x44\x41Y_P\x10\xf3\x02\x12\x0f\n\nDEALLOCATE\x10\xf4\x02\x12\x08\n\x03\x44\x45\x43\x10\xf5\x02\x12\x0e\n\tDECIMAL_P\x10\xf6\x02\x12\x0c\n\x07\x44\x45\x43LARE\x10\xf7\x02\x12\x0c\n\x07\x44\x45\x46\x41ULT\x10\xf8\x02\x12\r\n\x08\x44\x45\x46\x41ULTS\x10\xf9\x02\x12\x0f\n\nDEFERRABLE\x10\xfa\x02\x12\r\n\x08\x44\x45\x46\x45RRED\x10\xfb\x02\x12\x0c\n\x07\x44\x45\x46INER\x10\xfc\x02\x12\r\n\x08\x44\x45LETE_P\x10\xfd\x02\x12\x0e\n\tDELIMITER\x10\xfe\x02\x12\x0f\n\nDELIMITERS\x10\xff\x02\x12\x0c\n\x07\x44\x45PENDS\x10\x80\x03\x12\n\n\x05\x44\x45PTH\x10\x81\x03\x12\t\n\x04\x44\x45SC\x10\x82\x03\x12\x0b\n\x06\x44\x45TACH\x10\x83\x03\x12\x0f\n\nDICTIONARY\x10\x84\x03\x12\x0e\n\tDISABLE_P\x10\x85\x03\x12\x0c\n\x07\x44ISCARD\x10\x86\x03\x12\r\n\x08\x44ISTINCT\x10\x87\x03\x12\x07\n\x02\x44O\x10\x88\x03\x12\x0f\n\nDOCUMENT_P\x10\x89\x03\x12\r\n\x08\x44OMAIN_P\x10\x8a\x03\x12\r\n\x08\x44OUBLE_P\x10\x8b\x03\x12\t\n\x04\x44ROP\x10\x8c\x03\x12\t\n\x04\x45\x41\x43H\x10\x8d\x03\x12\t\n\x04\x45LSE\x10\x8e\x03\x12\r\n\x08\x45NABLE_P\x10\x8f\x03\x12\r\n\x08\x45NCODING\x10\x90\x03\x12\x0e\n\tENCRYPTED\x10\x91\x03\x12\n\n\x05\x45ND_P\x10\x92\x03\x12\x0b\n\x06\x45NUM_P\x10\x93\x03\x12\x0b\n\x06\x45SCAPE\x10\x94\x03\x12\n\n\x05\x45VENT\x10\x95\x03\x12\x0b\n\x06\x45XCEPT\x10\x96\x03\x12\x0c\n\x07\x45XCLUDE\x10\x97\x03\x12\x0e\n\tEXCLUDING\x10\x98\x03\x12\x0e\n\tEXCLUSIVE\x10\x99\x03\x12\x0c\n\x07\x45XECUTE\x10\x9a\x03\x12\x0b\n\x06\x45XISTS\x10\x9b\x03\x12\x0c\n\x07\x45XPLAIN\x10\x9c\x03\x12\x0f\n\nEXPRESSION\x10\x9d\x03\x12\x0e\n\tEXTENSION\x10\x9e\x03\x12\r\n\x08\x45XTERNAL\x10\x9f\x03\x12\x0c\n\x07\x45XTRACT\x10\xa0\x03\x12\x0c\n\x07\x46\x41LSE_P\x10\xa1\x03\x12\x0b\n\x06\x46\x41MILY\x10\xa2\x03\x12\n\n\x05\x46\x45TCH\x10\xa3\x03\x12\x0b\n\x06\x46ILTER\x10\xa4\x03\x12\r\n\x08\x46INALIZE\x10\xa5\x03\x12\x0c\n\x07\x46IRST_P\x10\xa6\x03\x12\x0c\n\x07\x46LOAT_P\x10\xa7\x03\x12\x0e\n\tFOLLOWING\x10\xa8\x03\x12\x08\n\x03\x46OR\x10\xa9\x03\x12\n\n\x05\x46ORCE\x10\xaa\x03\x12\x0c\n\x07\x46OREIGN\x10\xab\x03\x12\x0b\n\x06\x46ORMAT\x10\xac\x03\x12\x0c\n\x07\x46ORWARD\x10\xad\x03\x12\x0b\n\x06\x46REEZE\x10\xae\x03\x12\t\n\x04\x46ROM\x10\xaf\x03\x12\t\n\x04\x46ULL\x10\xb0\x03\x12\r\n\x08\x46UNCTION\x10\xb1\x03\x12\x0e\n\tFUNCTIONS\x10\xb2\x03\x12\x0e\n\tGENERATED\x10\xb3\x03\x12\x0b\n\x06GLOBAL\x10\xb4\x03\x12\n\n\x05GRANT\x10\xb5\x03\x12\x0c\n\x07GRANTED\x10\xb6\x03\x12\r\n\x08GREATEST\x10\xb7\x03\x12\x0c\n\x07GROUP_P\x10\xb8\x03\x12\r\n\x08GROUPING\x10\xb9\x03\x12\x0b\n\x06GROUPS\x10\xba\x03\x12\x0c\n\x07HANDLER\x10\xbb\x03\x12\x0b\n\x06HAVING\x10\xbc\x03\x12\r\n\x08HEADER_P\x10\xbd\x03\x12\t\n\x04HOLD\x10\xbe\x03\x12\x0b\n\x06HOUR_P\x10\xbf\x03\x12\x0f\n\nIDENTITY_P\x10\xc0\x03\x12\t\n\x04IF_P\x10\xc1\x03\x12\n\n\x05ILIKE\x10\xc2\x03\x12\x0e\n\tIMMEDIATE\x10\xc3\x03\x12\x0e\n\tIMMUTABLE\x10\xc4\x03\x12\x0f\n\nIMPLICIT_P\x10\xc5\x03\x12\r\n\x08IMPORT_P\x10\xc6\x03\x12\t\n\x04IN_P\x10\xc7\x03\x12\x0c\n\x07INCLUDE\x10\xc8\x03\x12\x0e\n\tINCLUDING\x10\xc9\x03\x12\x0e\n\tINCREMENT\x10\xca\x03\x12\x0b\n\x06INDENT\x10\xcb\x03\x12\n\n\x05INDEX\x10\xcc\x03\x12\x0c\n\x07INDEXES\x10\xcd\x03\x12\x0c\n\x07INHERIT\x10\xce\x03\x12\r\n\x08INHERITS\x10\xcf\x03\x12\x0e\n\tINITIALLY\x10\xd0\x03\x12\r\n\x08INLINE_P\x10\xd1\x03\x12\x0c\n\x07INNER_P\x10\xd2\x03\x12\n\n\x05INOUT\x10\xd3\x03\x12\x0c\n\x07INPUT_P\x10\xd4\x03\x12\x10\n\x0bINSENSITIVE\x10\xd5\x03\x12\x0b\n\x06INSERT\x10\xd6\x03\x12\x0c\n\x07INSTEAD\x10\xd7\x03\x12\n\n\x05INT_P\x10\xd8\x03\x12\x0c\n\x07INTEGER\x10\xd9\x03\x12\x0e\n\tINTERSECT\x10\xda\x03\x12\r\n\x08INTERVAL\x10\xdb\x03\x12\t\n\x04INTO\x10\xdc\x03\x12\x0c\n\x07INVOKER\x10\xdd\x03\x12\x07\n\x02IS\x10\xde\x03\x12\x0b\n\x06ISNULL\x10\xdf\x03\x12\x0e\n\tISOLATION\x10\xe0\x03\x12\t\n\x04JOIN\x10\xe1\x03\x12\t\n\x04JSON\x10\xe2\x03\x12\x0f\n\nJSON_ARRAY\x10\xe3\x03\x12\x12\n\rJSON_ARRAYAGG\x10\xe4\x03\x12\x10\n\x0bJSON_OBJECT\x10\xe5\x03\x12\x13\n\x0eJSON_OBJECTAGG\x10\xe6\x03\x12\x08\n\x03KEY\x10\xe7\x03\x12\t\n\x04KEYS\x10\xe8\x03\x12\n\n\x05LABEL\x10\xe9\x03\x12\r\n\x08LANGUAGE\x10\xea\x03\x12\x0c\n\x07LARGE_P\x10\xeb\x03\x12\x0b\n\x06LAST_P\x10\xec\x03\x12\x0e\n\tLATERAL_P\x10\xed\x03\x12\x0c\n\x07LEADING\x10\xee\x03\x12\x0e\n\tLEAKPROOF\x10\xef\x03\x12\n\n\x05LEAST\x10\xf0\x03\x12\t\n\x04LEFT\x10\xf1\x03\x12\n\n\x05LEVEL\x10\xf2\x03\x12\t\n\x04LIKE\x10\xf3\x03\x12\n\n\x05LIMIT\x10\xf4\x03\x12\x0b\n\x06LISTEN\x10\xf5\x03\x12\t\n\x04LOAD\x10\xf6\x03\x12\n\n\x05LOCAL\x10\xf7\x03\x12\x0e\n\tLOCALTIME\x10\xf8\x03\x12\x13\n\x0eLOCALTIMESTAMP\x10\xf9\x03\x12\r\n\x08LOCATION\x10\xfa\x03\x12\x0b\n\x06LOCK_P\x10\xfb\x03\x12\x0b\n\x06LOCKED\x10\xfc\x03\x12\x0b\n\x06LOGGED\x10\xfd\x03\x12\x0c\n\x07MAPPING\x10\xfe\x03\x12\n\n\x05MATCH\x10\xff\x03\x12\x0c\n\x07MATCHED\x10\x80\x04\x12\x11\n\x0cMATERIALIZED\x10\x81\x04\x12\r\n\x08MAXVALUE\x10\x82\x04\x12\n\n\x05MERGE\x10\x83\x04\x12\x0b\n\x06METHOD\x10\x84\x04\x12\r\n\x08MINUTE_P\x10\x85\x04\x12\r\n\x08MINVALUE\x10\x86\x04\x12\t\n\x04MODE\x10\x87\x04\x12\x0c\n\x07MONTH_P\x10\x88\x04\x12\t\n\x04MOVE\x10\x89\x04\x12\x0b\n\x06NAME_P\x10\x8a\x04\x12\n\n\x05NAMES\x10\x8b\x04\x12\r\n\x08NATIONAL\x10\x8c\x04\x12\x0c\n\x07NATURAL\x10\x8d\x04\x12\n\n\x05NCHAR\x10\x8e\x04\x12\x08\n\x03NEW\x10\x8f\x04\x12\t\n\x04NEXT\x10\x90\x04\x12\x08\n\x03NFC\x10\x91\x04\x12\x08\n\x03NFD\x10\x92\x04\x12\t\n\x04NFKC\x10\x93\x04\x12\t\n\x04NFKD\x10\x94\x04\x12\x07\n\x02NO\x10\x95\x04\x12\t\n\x04NONE\x10\x96\x04\x12\x0e\n\tNORMALIZE\x10\x97\x04\x12\x0f\n\nNORMALIZED\x10\x98\x04\x12\x08\n\x03NOT\x10\x99\x04\x12\x0c\n\x07NOTHING\x10\x9a\x04\x12\x0b\n\x06NOTIFY\x10\x9b\x04\x12\x0c\n\x07NOTNULL\x10\x9c\x04\x12\x0b\n\x06NOWAIT\x10\x9d\x04\x12\x0b\n\x06NULL_P\x10\x9e\x04\x12\x0b\n\x06NULLIF\x10\x9f\x04\x12\x0c\n\x07NULLS_P\x10\xa0\x04\x12\x0c\n\x07NUMERIC\x10\xa1\x04\x12\r\n\x08OBJECT_P\x10\xa2\x04\x12\x07\n\x02OF\x10\xa3\x04\x12\x08\n\x03OFF\x10\xa4\x04\x12\x0b\n\x06OFFSET\x10\xa5\x04\x12\t\n\x04OIDS\x10\xa6\x04\x12\x08\n\x03OLD\x10\xa7\x04\x12\x07\n\x02ON\x10\xa8\x04\x12\t\n\x04ONLY\x10\xa9\x04\x12\r\n\x08OPERATOR\x10\xaa\x04\x12\x0b\n\x06OPTION\x10\xab\x04\x12\x0c\n\x07OPTIONS\x10\xac\x04\x12\x07\n\x02OR\x10\xad\x04\x12\n\n\x05ORDER\x10\xae\x04\x12\x0f\n\nORDINALITY\x10\xaf\x04\x12\x0b\n\x06OTHERS\x10\xb0\x04\x12\n\n\x05OUT_P\x10\xb1\x04\x12\x0c\n\x07OUTER_P\x10\xb2\x04\x12\t\n\x04OVER\x10\xb3\x04\x12\r\n\x08OVERLAPS\x10\xb4\x04\x12\x0c\n\x07OVERLAY\x10\xb5\x04\x12\x0f\n\nOVERRIDING\x10\xb6\x04\x12\n\n\x05OWNED\x10\xb7\x04\x12\n\n\x05OWNER\x10\xb8\x04\x12\r\n\x08PARALLEL\x10\xb9\x04\x12\x0e\n\tPARAMETER\x10\xba\x04\x12\x0b\n\x06PARSER\x10\xbb\x04\x12\x0c\n\x07PARTIAL\x10\xbc\x04\x12\x0e\n\tPARTITION\x10\xbd\x04\x12\x0c\n\x07PASSING\x10\xbe\x04\x12\r\n\x08PASSWORD\x10\xbf\x04\x12\x0c\n\x07PLACING\x10\xc0\x04\x12\n\n\x05PLANS\x10\xc1\x04\x12\x0b\n\x06POLICY\x10\xc2\x04\x12\r\n\x08POSITION\x10\xc3\x04\x12\x0e\n\tPRECEDING\x10\xc4\x04\x12\x0e\n\tPRECISION\x10\xc5\x04\x12\r\n\x08PRESERVE\x10\xc6\x04\x12\x0c\n\x07PREPARE\x10\xc7\x04\x12\r\n\x08PREPARED\x10\xc8\x04\x12\x0c\n\x07PRIMARY\x10\xc9\x04\x12\n\n\x05PRIOR\x10\xca\x04\x12\x0f\n\nPRIVILEGES\x10\xcb\x04\x12\x0f\n\nPROCEDURAL\x10\xcc\x04\x12\x0e\n\tPROCEDURE\x10\xcd\x04\x12\x0f\n\nPROCEDURES\x10\xce\x04\x12\x0c\n\x07PROGRAM\x10\xcf\x04\x12\x10\n\x0bPUBLICATION\x10\xd0\x04\x12\n\n\x05QUOTE\x10\xd1\x04\x12\n\n\x05RANGE\x10\xd2\x04\x12\t\n\x04READ\x10\xd3\x04\x12\t\n\x04REAL\x10\xd4\x04\x12\r\n\x08REASSIGN\x10\xd5\x04\x12\x0c\n\x07RECHECK\x10\xd6\x04\x12\x0e\n\tRECURSIVE\x10\xd7\x04\x12\n\n\x05REF_P\x10\xd8\x04\x12\x0f\n\nREFERENCES\x10\xd9\x04\x12\x10\n\x0bREFERENCING\x10\xda\x04\x12\x0c\n\x07REFRESH\x10\xdb\x04\x12\x0c\n\x07REINDEX\x10\xdc\x04\x12\x0f\n\nRELATIVE_P\x10\xdd\x04\x12\x0c\n\x07RELEASE\x10\xde\x04\x12\x0b\n\x06RENAME\x10\xdf\x04\x12\x0f\n\nREPEATABLE\x10\xe0\x04\x12\x0c\n\x07REPLACE\x10\xe1\x04\x12\x0c\n\x07REPLICA\x10\xe2\x04\x12\n\n\x05RESET\x10\xe3\x04\x12\x0c\n\x07RESTART\x10\xe4\x04\x12\r\n\x08RESTRICT\x10\xe5\x04\x12\x0b\n\x06RETURN\x10\xe6\x04\x12\x0e\n\tRETURNING\x10\xe7\x04\x12\x0c\n\x07RETURNS\x10\xe8\x04\x12\x0b\n\x06REVOKE\x10\xe9\x04\x12\n\n\x05RIGHT\x10\xea\x04\x12\t\n\x04ROLE\x10\xeb\x04\x12\r\n\x08ROLLBACK\x10\xec\x04\x12\x0b\n\x06ROLLUP\x10\xed\x04\x12\x0c\n\x07ROUTINE\x10\xee\x04\x12\r\n\x08ROUTINES\x10\xef\x04\x12\x08\n\x03ROW\x10\xf0\x04\x12\t\n\x04ROWS\x10\xf1\x04\x12\t\n\x04RULE\x10\xf2\x04\x12\x0e\n\tSAVEPOINT\x10\xf3\x04\x12\x0b\n\x06SCALAR\x10\xf4\x04\x12\x0b\n\x06SCHEMA\x10\xf5\x04\x12\x0c\n\x07SCHEMAS\x10\xf6\x04\x12\x0b\n\x06SCROLL\x10\xf7\x04\x12\x0b\n\x06SEARCH\x10\xf8\x04\x12\r\n\x08SECOND_P\x10\xf9\x04\x12\r\n\x08SECURITY\x10\xfa\x04\x12\x0b\n\x06SELECT\x10\xfb\x04\x12\r\n\x08SEQUENCE\x10\xfc\x04\x12\x0e\n\tSEQUENCES\x10\xfd\x04\x12\x11\n\x0cSERIALIZABLE\x10\xfe\x04\x12\x0b\n\x06SERVER\x10\xff\x04\x12\x0c\n\x07SESSION\x10\x80\x05\x12\x11\n\x0cSESSION_USER\x10\x81\x05\x12\x08\n\x03SET\x10\x82\x05\x12\t\n\x04SETS\x10\x83\x05\x12\n\n\x05SETOF\x10\x84\x05\x12\n\n\x05SHARE\x10\x85\x05\x12\t\n\x04SHOW\x10\x86\x05\x12\x0c\n\x07SIMILAR\x10\x87\x05\x12\x0b\n\x06SIMPLE\x10\x88\x05\x12\t\n\x04SKIP\x10\x89\x05\x12\r\n\x08SMALLINT\x10\x8a\x05\x12\r\n\x08SNAPSHOT\x10\x8b\x05\x12\t\n\x04SOME\x10\x8c\x05\x12\n\n\x05SQL_P\x10\x8d\x05\x12\x0b\n\x06STABLE\x10\x8e\x05\x12\x11\n\x0cSTANDALONE_P\x10\x8f\x05\x12\n\n\x05START\x10\x90\x05\x12\x0e\n\tSTATEMENT\x10\x91\x05\x12\x0f\n\nSTATISTICS\x10\x92\x05\x12\n\n\x05STDIN\x10\x93\x05\x12\x0b\n\x06STDOUT\x10\x94\x05\x12\x0c\n\x07STORAGE\x10\x95\x05\x12\x0b\n\x06STORED\x10\x96\x05\x12\r\n\x08STRICT_P\x10\x97\x05\x12\x0c\n\x07STRIP_P\x10\x98\x05\x12\x11\n\x0cSUBSCRIPTION\x10\x99\x05\x12\x0e\n\tSUBSTRING\x10\x9a\x05\x12\x0c\n\x07SUPPORT\x10\x9b\x05\x12\x0e\n\tSYMMETRIC\x10\x9c\x05\x12\n\n\x05SYSID\x10\x9d\x05\x12\r\n\x08SYSTEM_P\x10\x9e\x05\x12\x10\n\x0bSYSTEM_USER\x10\x9f\x05\x12\n\n\x05TABLE\x10\xa0\x05\x12\x0b\n\x06TABLES\x10\xa1\x05\x12\x10\n\x0bTABLESAMPLE\x10\xa2\x05\x12\x0f\n\nTABLESPACE\x10\xa3\x05\x12\t\n\x04TEMP\x10\xa4\x05\x12\r\n\x08TEMPLATE\x10\xa5\x05\x12\x0e\n\tTEMPORARY\x10\xa6\x05\x12\x0b\n\x06TEXT_P\x10\xa7\x05\x12\t\n\x04THEN\x10\xa8\x05\x12\t\n\x04TIES\x10\xa9\x05\x12\t\n\x04TIME\x10\xaa\x05\x12\x0e\n\tTIMESTAMP\x10\xab\x05\x12\x07\n\x02TO\x10\xac\x05\x12\r\n\x08TRAILING\x10\xad\x05\x12\x10\n\x0bTRANSACTION\x10\xae\x05\x12\x0e\n\tTRANSFORM\x10\xaf\x05\x12\n\n\x05TREAT\x10\xb0\x05\x12\x0c\n\x07TRIGGER\x10\xb1\x05\x12\t\n\x04TRIM\x10\xb2\x05\x12\x0b\n\x06TRUE_P\x10\xb3\x05\x12\r\n\x08TRUNCATE\x10\xb4\x05\x12\x0c\n\x07TRUSTED\x10\xb5\x05\x12\x0b\n\x06TYPE_P\x10\xb6\x05\x12\x0c\n\x07TYPES_P\x10\xb7\x05\x12\x0c\n\x07UESCAPE\x10\xb8\x05\x12\x0e\n\tUNBOUNDED\x10\xb9\x05\x12\x10\n\x0bUNCOMMITTED\x10\xba\x05\x12\x10\n\x0bUNENCRYPTED\x10\xbb\x05\x12\n\n\x05UNION\x10\xbc\x05\x12\x0b\n\x06UNIQUE\x10\xbd\x05\x12\x0c\n\x07UNKNOWN\x10\xbe\x05\x12\r\n\x08UNLISTEN\x10\xbf\x05\x12\r\n\x08UNLOGGED\x10\xc0\x05\x12\n\n\x05UNTIL\x10\xc1\x05\x12\x0b\n\x06UPDATE\x10\xc2\x05\x12\t\n\x04USER\x10\xc3\x05\x12\n\n\x05USING\x10\xc4\x05\x12\x0b\n\x06VACUUM\x10\xc5\x05\x12\n\n\x05VALID\x10\xc6\x05\x12\r\n\x08VALIDATE\x10\xc7\x05\x12\x0e\n\tVALIDATOR\x10\xc8\x05\x12\x0c\n\x07VALUE_P\x10\xc9\x05\x12\x0b\n\x06VALUES\x10\xca\x05\x12\x0c\n\x07VARCHAR\x10\xcb\x05\x12\r\n\x08VARIADIC\x10\xcc\x05\x12\x0c\n\x07VARYING\x10\xcd\x05\x12\x0c\n\x07VERBOSE\x10\xce\x05\x12\x0e\n\tVERSION_P\x10\xcf\x05\x12\t\n\x04VIEW\x10\xd0\x05\x12\n\n\x05VIEWS\x10\xd1\x05\x12\r\n\x08VOLATILE\x10\xd2\x05\x12\t\n\x04WHEN\x10\xd3\x05\x12\n\n\x05WHERE\x10\xd4\x05\x12\x11\n\x0cWHITESPACE_P\x10\xd5\x05\x12\x0b\n\x06WINDOW\x10\xd6\x05\x12\t\n\x04WITH\x10\xd7\x05\x12\x0b\n\x06WITHIN\x10\xd8\x05\x12\x0c\n\x07WITHOUT\x10\xd9\x05\x12\t\n\x04WORK\x10\xda\x05\x12\x0c\n\x07WRAPPER\x10\xdb\x05\x12\n\n\x05WRITE\x10\xdc\x05\x12\n\n\x05XML_P\x10\xdd\x05\x12\x12\n\rXMLATTRIBUTES\x10\xde\x05\x12\x0e\n\tXMLCONCAT\x10\xdf\x05\x12\x0f\n\nXMLELEMENT\x10\xe0\x05\x12\x0e\n\tXMLEXISTS\x10\xe1\x05\x12\x0e\n\tXMLFOREST\x10\xe2\x05\x12\x12\n\rXMLNAMESPACES\x10\xe3\x05\x12\r\n\x08XMLPARSE\x10\xe4\x05\x12\n\n\x05XMLPI\x10\xe5\x05\x12\x0c\n\x07XMLROOT\x10\xe6\x05\x12\x11\n\x0cXMLSERIALIZE\x10\xe7\x05\x12\r\n\x08XMLTABLE\x10\xe8\x05\x12\x0b\n\x06YEAR_P\x10\xe9\x05\x12\n\n\x05YES_P\x10\xea\x05\x12\t\n\x04ZONE\x10\xeb\x05\x12\x0e\n\tFORMAT_LA\x10\xec\x05\x12\x0b\n\x06NOT_LA\x10\xed\x05\x12\r\n\x08NULLS_LA\x10\xee\x05\x12\x0c\n\x07WITH_LA\x10\xef\x05\x12\x0f\n\nWITHOUT_LA\x10\xf0\x05\x12\x13\n\x0eMODE_TYPE_NAME\x10\xf1\x05\x12\x16\n\x11MODE_PLPGSQL_EXPR\x10\xf2\x05\x12\x19\n\x14MODE_PLPGSQL_ASSIGN1\x10\xf3\x05\x12\x19\n\x14MODE_PLPGSQL_ASSIGN2\x10\xf4\x05\x12\x19\n\x14MODE_PLPGSQL_ASSIGN3\x10\xf5\x05\x12\x0b\n\x06UMINUS\x10\xf6\x05\x62\x06proto3"
9
9
 
10
10
  pool = Google::Protobuf::DescriptorPool.generated_pool
11
11