pg_query 5.1.0 → 6.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (479) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +18 -0
  3. data/README.md +1 -1
  4. data/Rakefile +2 -2
  5. data/ext/pg_query/include/pg_query.h +4 -3
  6. data/ext/pg_query/include/pg_query_enum_defs.c +424 -154
  7. data/ext/pg_query/include/pg_query_fingerprint_conds.c +68 -4
  8. data/ext/pg_query/include/pg_query_fingerprint_defs.c +2952 -1845
  9. data/ext/pg_query/include/pg_query_outfuncs_conds.c +51 -3
  10. data/ext/pg_query/include/pg_query_outfuncs_defs.c +210 -23
  11. data/ext/pg_query/include/pg_query_readfuncs_conds.c +17 -1
  12. data/ext/pg_query/include/pg_query_readfuncs_defs.c +271 -52
  13. data/ext/pg_query/include/postgres/access/amapi.h +10 -3
  14. data/ext/pg_query/include/postgres/access/attmap.h +1 -1
  15. data/ext/pg_query/include/postgres/access/attnum.h +1 -1
  16. data/ext/pg_query/include/postgres/access/brin_internal.h +116 -0
  17. data/ext/pg_query/include/postgres/access/brin_tuple.h +112 -0
  18. data/ext/pg_query/include/postgres/access/clog.h +2 -3
  19. data/ext/pg_query/include/postgres/access/commit_ts.h +2 -3
  20. data/ext/pg_query/include/postgres/access/detoast.h +1 -1
  21. data/ext/pg_query/include/postgres/access/genam.h +8 -4
  22. data/ext/pg_query/include/postgres/access/gin.h +1 -1
  23. data/ext/pg_query/include/postgres/access/htup.h +1 -1
  24. data/ext/pg_query/include/postgres/access/htup_details.h +11 -11
  25. data/ext/pg_query/include/postgres/access/itup.h +3 -3
  26. data/ext/pg_query/include/postgres/access/parallel.h +1 -2
  27. data/ext/pg_query/include/postgres/access/printtup.h +1 -1
  28. data/ext/pg_query/include/postgres/access/relation.h +1 -1
  29. data/ext/pg_query/include/postgres/access/relscan.h +1 -1
  30. data/ext/pg_query/include/postgres/access/rmgrlist.h +1 -1
  31. data/ext/pg_query/include/postgres/access/sdir.h +1 -1
  32. data/ext/pg_query/include/postgres/access/skey.h +1 -1
  33. data/ext/pg_query/include/postgres/access/slru.h +221 -0
  34. data/ext/pg_query/include/postgres/access/stratnum.h +1 -1
  35. data/ext/pg_query/include/postgres/access/sysattr.h +1 -1
  36. data/ext/pg_query/include/postgres/access/table.h +1 -1
  37. data/ext/pg_query/include/postgres/access/tableam.h +33 -24
  38. data/ext/pg_query/include/postgres/access/tidstore.h +50 -0
  39. data/ext/pg_query/include/postgres/access/toast_compression.h +2 -2
  40. data/ext/pg_query/include/postgres/access/transam.h +7 -7
  41. data/ext/pg_query/include/postgres/access/tsmapi.h +1 -1
  42. data/ext/pg_query/include/postgres/access/tupconvert.h +1 -1
  43. data/ext/pg_query/include/postgres/access/tupdesc.h +5 -5
  44. data/ext/pg_query/include/postgres/access/tupmacs.h +1 -1
  45. data/ext/pg_query/include/postgres/access/twophase.h +2 -2
  46. data/ext/pg_query/include/postgres/access/xact.h +5 -5
  47. data/ext/pg_query/include/postgres/access/xlog.h +20 -12
  48. data/ext/pg_query/include/postgres/access/xlog_internal.h +4 -3
  49. data/ext/pg_query/include/postgres/access/xlogbackup.h +3 -1
  50. data/ext/pg_query/include/postgres/access/xlogdefs.h +5 -5
  51. data/ext/pg_query/include/postgres/access/xlogprefetcher.h +2 -2
  52. data/ext/pg_query/include/postgres/access/xlogreader.h +2 -2
  53. data/ext/pg_query/include/postgres/access/xlogrecord.h +3 -3
  54. data/ext/pg_query/include/postgres/access/xlogrecovery.h +4 -4
  55. data/ext/pg_query/include/postgres/archive/archive_module.h +9 -1
  56. data/ext/pg_query/include/postgres/c.h +31 -36
  57. data/ext/pg_query/include/postgres/catalog/catalog.h +3 -1
  58. data/ext/pg_query/include/postgres/catalog/catversion.h +2 -2
  59. data/ext/pg_query/include/postgres/catalog/dependency.h +17 -59
  60. data/ext/pg_query/include/postgres/catalog/genbki.h +12 -6
  61. data/ext/pg_query/include/postgres/catalog/index.h +22 -18
  62. data/ext/pg_query/include/postgres/catalog/indexing.h +1 -1
  63. data/ext/pg_query/include/postgres/catalog/namespace.h +18 -19
  64. data/ext/pg_query/include/postgres/catalog/objectaccess.h +2 -2
  65. data/ext/pg_query/include/postgres/catalog/objectaddress.h +1 -1
  66. data/ext/pg_query/include/postgres/catalog/pg_aggregate.h +4 -2
  67. data/ext/pg_query/include/postgres/catalog/pg_aggregate_d.h +1 -1
  68. data/ext/pg_query/include/postgres/catalog/pg_am.h +6 -3
  69. data/ext/pg_query/include/postgres/catalog/pg_am_d.h +1 -1
  70. data/ext/pg_query/include/postgres/catalog/pg_attribute.h +31 -14
  71. data/ext/pg_query/include/postgres/catalog/pg_attribute_d.h +3 -3
  72. data/ext/pg_query/include/postgres/catalog/pg_authid.h +6 -3
  73. data/ext/pg_query/include/postgres/catalog/pg_authid_d.h +2 -1
  74. data/ext/pg_query/include/postgres/catalog/pg_class.h +10 -5
  75. data/ext/pg_query/include/postgres/catalog/pg_class_d.h +4 -2
  76. data/ext/pg_query/include/postgres/catalog/pg_collation.h +11 -5
  77. data/ext/pg_query/include/postgres/catalog/pg_collation_d.h +5 -2
  78. data/ext/pg_query/include/postgres/catalog/pg_constraint.h +15 -10
  79. data/ext/pg_query/include/postgres/catalog/pg_constraint_d.h +2 -1
  80. data/ext/pg_query/include/postgres/catalog/pg_control.h +5 -3
  81. data/ext/pg_query/include/postgres/catalog/pg_conversion.h +8 -4
  82. data/ext/pg_query/include/postgres/catalog/pg_conversion_d.h +1 -1
  83. data/ext/pg_query/include/postgres/catalog/pg_database.h +9 -4
  84. data/ext/pg_query/include/postgres/catalog/pg_database_d.h +13 -12
  85. data/ext/pg_query/include/postgres/catalog/pg_depend.h +3 -3
  86. data/ext/pg_query/include/postgres/catalog/pg_depend_d.h +1 -1
  87. data/ext/pg_query/include/postgres/catalog/pg_event_trigger.h +6 -3
  88. data/ext/pg_query/include/postgres/catalog/pg_event_trigger_d.h +1 -1
  89. data/ext/pg_query/include/postgres/catalog/pg_index.h +5 -3
  90. data/ext/pg_query/include/postgres/catalog/pg_index_d.h +1 -1
  91. data/ext/pg_query/include/postgres/catalog/pg_language.h +6 -3
  92. data/ext/pg_query/include/postgres/catalog/pg_language_d.h +1 -1
  93. data/ext/pg_query/include/postgres/catalog/pg_namespace.h +6 -3
  94. data/ext/pg_query/include/postgres/catalog/pg_namespace_d.h +1 -1
  95. data/ext/pg_query/include/postgres/catalog/pg_opclass.h +6 -3
  96. data/ext/pg_query/include/postgres/catalog/pg_opclass_d.h +1 -1
  97. data/ext/pg_query/include/postgres/catalog/pg_operator.h +20 -3
  98. data/ext/pg_query/include/postgres/catalog/pg_operator_d.h +1 -1
  99. data/ext/pg_query/include/postgres/catalog/pg_opfamily.h +6 -3
  100. data/ext/pg_query/include/postgres/catalog/pg_opfamily_d.h +1 -1
  101. data/ext/pg_query/include/postgres/catalog/pg_partitioned_table.h +4 -2
  102. data/ext/pg_query/include/postgres/catalog/pg_partitioned_table_d.h +1 -1
  103. data/ext/pg_query/include/postgres/catalog/pg_proc.h +6 -3
  104. data/ext/pg_query/include/postgres/catalog/pg_proc_d.h +1 -1
  105. data/ext/pg_query/include/postgres/catalog/pg_publication.h +6 -3
  106. data/ext/pg_query/include/postgres/catalog/pg_publication_d.h +1 -1
  107. data/ext/pg_query/include/postgres/catalog/pg_replication_origin.h +6 -3
  108. data/ext/pg_query/include/postgres/catalog/pg_replication_origin_d.h +1 -1
  109. data/ext/pg_query/include/postgres/catalog/pg_statistic.h +10 -4
  110. data/ext/pg_query/include/postgres/catalog/pg_statistic_d.h +7 -3
  111. data/ext/pg_query/include/postgres/catalog/pg_statistic_ext.h +10 -7
  112. data/ext/pg_query/include/postgres/catalog/pg_statistic_ext_d.h +3 -3
  113. data/ext/pg_query/include/postgres/catalog/pg_transform.h +6 -3
  114. data/ext/pg_query/include/postgres/catalog/pg_transform_d.h +1 -1
  115. data/ext/pg_query/include/postgres/catalog/pg_trigger.h +4 -4
  116. data/ext/pg_query/include/postgres/catalog/pg_trigger_d.h +1 -1
  117. data/ext/pg_query/include/postgres/catalog/pg_ts_config.h +6 -3
  118. data/ext/pg_query/include/postgres/catalog/pg_ts_config_d.h +1 -1
  119. data/ext/pg_query/include/postgres/catalog/pg_ts_dict.h +6 -3
  120. data/ext/pg_query/include/postgres/catalog/pg_ts_dict_d.h +1 -1
  121. data/ext/pg_query/include/postgres/catalog/pg_ts_parser.h +6 -3
  122. data/ext/pg_query/include/postgres/catalog/pg_ts_parser_d.h +1 -1
  123. data/ext/pg_query/include/postgres/catalog/pg_ts_template.h +6 -3
  124. data/ext/pg_query/include/postgres/catalog/pg_ts_template_d.h +1 -1
  125. data/ext/pg_query/include/postgres/catalog/pg_type.h +6 -3
  126. data/ext/pg_query/include/postgres/catalog/pg_type_d.h +1 -1
  127. data/ext/pg_query/include/postgres/catalog/storage.h +1 -1
  128. data/ext/pg_query/include/postgres/catalog/syscache_ids.h +104 -0
  129. data/ext/pg_query/include/postgres/commands/async.h +2 -6
  130. data/ext/pg_query/include/postgres/commands/dbcommands.h +1 -1
  131. data/ext/pg_query/include/postgres/commands/defrem.h +6 -6
  132. data/ext/pg_query/include/postgres/commands/event_trigger.h +5 -2
  133. data/ext/pg_query/include/postgres/commands/explain.h +19 -3
  134. data/ext/pg_query/include/postgres/commands/prepare.h +1 -1
  135. data/ext/pg_query/include/postgres/commands/tablespace.h +1 -1
  136. data/ext/pg_query/include/postgres/commands/trigger.h +1 -1
  137. data/ext/pg_query/include/postgres/commands/vacuum.h +28 -26
  138. data/ext/pg_query/include/postgres/common/cryptohash.h +2 -2
  139. data/ext/pg_query/include/postgres/common/file_perm.h +1 -1
  140. data/ext/pg_query/include/postgres/common/file_utils.h +65 -0
  141. data/ext/pg_query/include/postgres/common/hashfn.h +16 -1
  142. data/ext/pg_query/include/postgres/common/hashfn_unstable.h +453 -0
  143. data/ext/pg_query/include/postgres/common/int.h +79 -4
  144. data/ext/pg_query/include/postgres/common/keywords.h +1 -1
  145. data/ext/pg_query/include/postgres/common/kwlookup.h +1 -1
  146. data/ext/pg_query/include/postgres/common/pg_prng.h +2 -1
  147. data/ext/pg_query/include/postgres/common/relpath.h +4 -4
  148. data/ext/pg_query/include/postgres/common/scram-common.h +1 -1
  149. data/ext/pg_query/include/postgres/common/sha2.h +1 -1
  150. data/ext/pg_query/include/postgres/common/string.h +1 -1
  151. data/ext/pg_query/include/postgres/common/unicode_east_asian_fw_table.h +2 -3
  152. data/ext/pg_query/include/postgres/copyfuncs.funcs.c +278 -30
  153. data/ext/pg_query/include/postgres/copyfuncs.switch.c +55 -4
  154. data/ext/pg_query/include/postgres/datatype/timestamp.h +28 -2
  155. data/ext/pg_query/include/postgres/equalfuncs.funcs.c +239 -26
  156. data/ext/pg_query/include/postgres/equalfuncs.switch.c +55 -4
  157. data/ext/pg_query/include/postgres/executor/execdesc.h +1 -1
  158. data/ext/pg_query/include/postgres/executor/executor.h +6 -5
  159. data/ext/pg_query/include/postgres/executor/functions.h +2 -1
  160. data/ext/pg_query/include/postgres/executor/instrument.h +5 -3
  161. data/ext/pg_query/include/postgres/executor/spi.h +2 -8
  162. data/ext/pg_query/include/postgres/executor/tablefunc.h +1 -1
  163. data/ext/pg_query/include/postgres/executor/tuptable.h +31 -2
  164. data/ext/pg_query/include/postgres/fmgr.h +2 -2
  165. data/ext/pg_query/include/postgres/foreign/fdwapi.h +1 -1
  166. data/ext/pg_query/include/postgres/funcapi.h +2 -2
  167. data/ext/pg_query/include/postgres/gram.h +871 -830
  168. data/ext/pg_query/include/postgres/gramparse.h +1 -1
  169. data/ext/pg_query/include/postgres/jit/jit.h +4 -3
  170. data/ext/pg_query/include/postgres/kwlist_d.h +511 -466
  171. data/ext/pg_query/include/postgres/lib/dshash.h +25 -10
  172. data/ext/pg_query/include/postgres/lib/ilist.h +1 -1
  173. data/ext/pg_query/include/postgres/lib/pairingheap.h +1 -1
  174. data/ext/pg_query/include/postgres/lib/simplehash.h +40 -18
  175. data/ext/pg_query/include/postgres/lib/sort_template.h +14 -1
  176. data/ext/pg_query/include/postgres/lib/stringinfo.h +93 -11
  177. data/ext/pg_query/include/postgres/libpq/auth.h +1 -1
  178. data/ext/pg_query/include/postgres/libpq/crypt.h +2 -2
  179. data/ext/pg_query/include/postgres/libpq/hba.h +4 -4
  180. data/ext/pg_query/include/postgres/libpq/libpq-be.h +29 -25
  181. data/ext/pg_query/include/postgres/libpq/libpq.h +6 -7
  182. data/ext/pg_query/include/postgres/libpq/pqcomm.h +26 -20
  183. data/ext/pg_query/include/postgres/libpq/pqformat.h +2 -3
  184. data/ext/pg_query/include/postgres/libpq/pqsignal.h +1 -1
  185. data/ext/pg_query/include/postgres/libpq/protocol.h +89 -0
  186. data/ext/pg_query/include/postgres/libpq/sasl.h +1 -1
  187. data/ext/pg_query/include/postgres/libpq/scram.h +1 -1
  188. data/ext/pg_query/include/postgres/mb/pg_wchar.h +102 -82
  189. data/ext/pg_query/include/postgres/mb/stringinfo_mb.h +1 -1
  190. data/ext/pg_query/include/postgres/miscadmin.h +64 -52
  191. data/ext/pg_query/include/postgres/nodes/bitmapset.h +17 -3
  192. data/ext/pg_query/include/postgres/nodes/execnodes.h +109 -25
  193. data/ext/pg_query/include/postgres/nodes/extensible.h +1 -1
  194. data/ext/pg_query/include/postgres/nodes/lockoptions.h +4 -4
  195. data/ext/pg_query/include/postgres/nodes/makefuncs.h +8 -2
  196. data/ext/pg_query/include/postgres/nodes/memnodes.h +43 -4
  197. data/ext/pg_query/include/postgres/nodes/miscnodes.h +1 -1
  198. data/ext/pg_query/include/postgres/nodes/nodeFuncs.h +1 -1
  199. data/ext/pg_query/include/postgres/nodes/nodes.h +30 -41
  200. data/ext/pg_query/include/postgres/nodes/nodetags.h +464 -444
  201. data/ext/pg_query/include/postgres/nodes/params.h +1 -1
  202. data/ext/pg_query/include/postgres/nodes/parsenodes.h +358 -175
  203. data/ext/pg_query/include/postgres/nodes/pathnodes.h +60 -9
  204. data/ext/pg_query/include/postgres/nodes/pg_list.h +62 -11
  205. data/ext/pg_query/include/postgres/nodes/plannodes.h +11 -10
  206. data/ext/pg_query/include/postgres/nodes/primnodes.h +344 -50
  207. data/ext/pg_query/include/postgres/nodes/print.h +1 -1
  208. data/ext/pg_query/include/postgres/nodes/queryjumble.h +2 -2
  209. data/ext/pg_query/include/postgres/nodes/replnodes.h +23 -2
  210. data/ext/pg_query/include/postgres/nodes/supportnodes.h +1 -1
  211. data/ext/pg_query/include/postgres/nodes/tidbitmap.h +1 -1
  212. data/ext/pg_query/include/postgres/nodes/value.h +1 -1
  213. data/ext/pg_query/include/postgres/optimizer/cost.h +5 -4
  214. data/ext/pg_query/include/postgres/optimizer/geqo.h +1 -1
  215. data/ext/pg_query/include/postgres/optimizer/geqo_gene.h +1 -1
  216. data/ext/pg_query/include/postgres/optimizer/optimizer.h +5 -2
  217. data/ext/pg_query/include/postgres/optimizer/paths.h +13 -8
  218. data/ext/pg_query/include/postgres/optimizer/planmain.h +7 -1
  219. data/ext/pg_query/include/postgres/parser/analyze.h +3 -1
  220. data/ext/pg_query/include/postgres/parser/kwlist.h +22 -2
  221. data/ext/pg_query/include/postgres/parser/parse_agg.h +1 -1
  222. data/ext/pg_query/include/postgres/parser/parse_coerce.h +2 -2
  223. data/ext/pg_query/include/postgres/parser/parse_expr.h +1 -1
  224. data/ext/pg_query/include/postgres/parser/parse_func.h +2 -2
  225. data/ext/pg_query/include/postgres/parser/parse_node.h +3 -2
  226. data/ext/pg_query/include/postgres/parser/parse_oper.h +4 -1
  227. data/ext/pg_query/include/postgres/parser/parse_relation.h +1 -1
  228. data/ext/pg_query/include/postgres/parser/parse_type.h +2 -2
  229. data/ext/pg_query/include/postgres/parser/parser.h +3 -3
  230. data/ext/pg_query/include/postgres/parser/parsetree.h +1 -1
  231. data/ext/pg_query/include/postgres/parser/scanner.h +1 -1
  232. data/ext/pg_query/include/postgres/parser/scansup.h +1 -1
  233. data/ext/pg_query/include/postgres/partitioning/partdefs.h +1 -1
  234. data/ext/pg_query/include/postgres/pg_config.h +34 -34
  235. data/ext/pg_query/include/postgres/pg_config_manual.h +21 -8
  236. data/ext/pg_query/include/postgres/pg_getopt.h +1 -1
  237. data/ext/pg_query/include/postgres/pg_trace.h +1 -1
  238. data/ext/pg_query/include/postgres/pgstat.h +13 -11
  239. data/ext/pg_query/include/postgres/pgtime.h +1 -1
  240. data/ext/pg_query/include/postgres/pl_reserved_kwlist.h +1 -1
  241. data/ext/pg_query/include/postgres/pl_reserved_kwlist_d.h +1 -1
  242. data/ext/pg_query/include/postgres/pl_unreserved_kwlist.h +1 -1
  243. data/ext/pg_query/include/postgres/pl_unreserved_kwlist_d.h +1 -1
  244. data/ext/pg_query/include/postgres/plerrcodes.h +4 -4
  245. data/ext/pg_query/include/postgres/plpgsql.h +15 -13
  246. data/ext/pg_query/include/postgres/port/atomics/arch-arm.h +1 -1
  247. data/ext/pg_query/include/postgres/port/atomics/arch-hppa.h +1 -1
  248. data/ext/pg_query/include/postgres/port/atomics/arch-ppc.h +3 -1
  249. data/ext/pg_query/include/postgres/port/atomics/arch-x86.h +3 -1
  250. data/ext/pg_query/include/postgres/port/atomics/fallback.h +1 -1
  251. data/ext/pg_query/include/postgres/port/atomics/generic-gcc.h +38 -1
  252. data/ext/pg_query/include/postgres/port/atomics/generic-msvc.h +19 -1
  253. data/ext/pg_query/include/postgres/port/atomics/generic-sunpro.h +16 -1
  254. data/ext/pg_query/include/postgres/port/atomics/generic.h +38 -2
  255. data/ext/pg_query/include/postgres/port/atomics.h +93 -6
  256. data/ext/pg_query/include/postgres/port/pg_bitutils.h +91 -9
  257. data/ext/pg_query/include/postgres/port/pg_bswap.h +1 -1
  258. data/ext/pg_query/include/postgres/port/pg_crc32c.h +10 -1
  259. data/ext/pg_query/include/postgres/port/pg_iovec.h +117 -0
  260. data/ext/pg_query/include/postgres/port/simd.h +48 -1
  261. data/ext/pg_query/include/postgres/port/win32/sys/socket.h +8 -0
  262. data/ext/pg_query/include/postgres/port/win32_port.h +1 -11
  263. data/ext/pg_query/include/postgres/port.h +7 -3
  264. data/ext/pg_query/include/postgres/portability/instr_time.h +1 -1
  265. data/ext/pg_query/include/postgres/postgres.h +1 -1
  266. data/ext/pg_query/include/postgres/postmaster/autovacuum.h +5 -16
  267. data/ext/pg_query/include/postgres/postmaster/bgworker.h +8 -6
  268. data/ext/pg_query/include/postgres/postmaster/bgworker_internals.h +3 -7
  269. data/ext/pg_query/include/postgres/postmaster/bgwriter.h +3 -3
  270. data/ext/pg_query/include/postgres/postmaster/interrupt.h +1 -1
  271. data/ext/pg_query/include/postgres/postmaster/pgarch.h +2 -2
  272. data/ext/pg_query/include/postgres/postmaster/postmaster.h +25 -5
  273. data/ext/pg_query/include/postgres/postmaster/startup.h +2 -2
  274. data/ext/pg_query/include/postgres/postmaster/syslogger.h +2 -4
  275. data/ext/pg_query/include/postgres/postmaster/walsummarizer.h +35 -0
  276. data/ext/pg_query/include/postgres/postmaster/walwriter.h +2 -2
  277. data/ext/pg_query/include/postgres/regex/regex.h +92 -9
  278. data/ext/pg_query/include/postgres/replication/logicallauncher.h +1 -1
  279. data/ext/pg_query/include/postgres/replication/logicalproto.h +2 -2
  280. data/ext/pg_query/include/postgres/replication/logicalworker.h +2 -1
  281. data/ext/pg_query/include/postgres/replication/origin.h +1 -1
  282. data/ext/pg_query/include/postgres/replication/reorderbuffer.h +18 -28
  283. data/ext/pg_query/include/postgres/replication/slot.h +41 -5
  284. data/ext/pg_query/include/postgres/replication/slotsync.h +38 -0
  285. data/ext/pg_query/include/postgres/replication/syncrep.h +1 -1
  286. data/ext/pg_query/include/postgres/replication/walreceiver.h +37 -11
  287. data/ext/pg_query/include/postgres/replication/walsender.h +5 -3
  288. data/ext/pg_query/include/postgres/rewrite/prs2lock.h +1 -1
  289. data/ext/pg_query/include/postgres/rewrite/rewriteHandler.h +7 -1
  290. data/ext/pg_query/include/postgres/rewrite/rewriteManip.h +2 -2
  291. data/ext/pg_query/include/postgres/rewrite/rewriteSupport.h +1 -1
  292. data/ext/pg_query/include/postgres/storage/block.h +1 -1
  293. data/ext/pg_query/include/postgres/storage/buf.h +1 -1
  294. data/ext/pg_query/include/postgres/storage/bufmgr.h +59 -41
  295. data/ext/pg_query/include/postgres/storage/bufpage.h +1 -1
  296. data/ext/pg_query/include/postgres/storage/condition_variable.h +1 -1
  297. data/ext/pg_query/include/postgres/storage/dsm.h +1 -1
  298. data/ext/pg_query/include/postgres/storage/dsm_impl.h +2 -2
  299. data/ext/pg_query/include/postgres/storage/fd.h +30 -13
  300. data/ext/pg_query/include/postgres/storage/fileset.h +1 -1
  301. data/ext/pg_query/include/postgres/storage/ipc.h +4 -1
  302. data/ext/pg_query/include/postgres/storage/item.h +1 -1
  303. data/ext/pg_query/include/postgres/storage/itemid.h +1 -1
  304. data/ext/pg_query/include/postgres/storage/itemptr.h +1 -1
  305. data/ext/pg_query/include/postgres/storage/large_object.h +1 -1
  306. data/ext/pg_query/include/postgres/storage/latch.h +4 -2
  307. data/ext/pg_query/include/postgres/storage/lmgr.h +8 -2
  308. data/ext/pg_query/include/postgres/storage/lock.h +19 -19
  309. data/ext/pg_query/include/postgres/storage/lockdefs.h +1 -1
  310. data/ext/pg_query/include/postgres/storage/lwlock.h +17 -9
  311. data/ext/pg_query/include/postgres/storage/lwlocknames.h +7 -10
  312. data/ext/pg_query/include/postgres/storage/off.h +1 -1
  313. data/ext/pg_query/include/postgres/storage/pg_sema.h +1 -1
  314. data/ext/pg_query/include/postgres/storage/pg_shmem.h +5 -4
  315. data/ext/pg_query/include/postgres/storage/pmsignal.h +2 -2
  316. data/ext/pg_query/include/postgres/storage/predicate.h +1 -5
  317. data/ext/pg_query/include/postgres/storage/proc.h +48 -23
  318. data/ext/pg_query/include/postgres/storage/procarray.h +5 -1
  319. data/ext/pg_query/include/postgres/storage/proclist_types.h +11 -9
  320. data/ext/pg_query/include/postgres/storage/procnumber.h +43 -0
  321. data/ext/pg_query/include/postgres/storage/procsignal.h +8 -6
  322. data/ext/pg_query/include/postgres/storage/read_stream.h +65 -0
  323. data/ext/pg_query/include/postgres/storage/relfilelocator.h +16 -15
  324. data/ext/pg_query/include/postgres/storage/s_lock.h +7 -27
  325. data/ext/pg_query/include/postgres/storage/sharedfileset.h +1 -1
  326. data/ext/pg_query/include/postgres/storage/shm_mq.h +2 -2
  327. data/ext/pg_query/include/postgres/storage/shm_toc.h +1 -1
  328. data/ext/pg_query/include/postgres/storage/shmem.h +1 -1
  329. data/ext/pg_query/include/postgres/storage/sinval.h +3 -3
  330. data/ext/pg_query/include/postgres/storage/smgr.h +41 -27
  331. data/ext/pg_query/include/postgres/storage/spin.h +1 -1
  332. data/ext/pg_query/include/postgres/storage/standby.h +13 -3
  333. data/ext/pg_query/include/postgres/storage/standbydefs.h +2 -2
  334. data/ext/pg_query/include/postgres/storage/sync.h +4 -4
  335. data/ext/pg_query/include/postgres/tcop/cmdtag.h +1 -2
  336. data/ext/pg_query/include/postgres/tcop/cmdtaglist.h +3 -2
  337. data/ext/pg_query/include/postgres/tcop/deparse_utility.h +2 -2
  338. data/ext/pg_query/include/postgres/tcop/dest.h +3 -2
  339. data/ext/pg_query/include/postgres/tcop/fastpath.h +1 -1
  340. data/ext/pg_query/include/postgres/tcop/pquery.h +1 -1
  341. data/ext/pg_query/include/postgres/tcop/tcopprot.h +9 -5
  342. data/ext/pg_query/include/postgres/tcop/utility.h +2 -2
  343. data/ext/pg_query/include/postgres/tsearch/ts_cache.h +1 -1
  344. data/ext/pg_query/include/postgres/utils/acl.h +19 -7
  345. data/ext/pg_query/include/postgres/utils/aclchk_internal.h +1 -1
  346. data/ext/pg_query/include/postgres/utils/array.h +1 -2
  347. data/ext/pg_query/include/postgres/utils/ascii.h +84 -0
  348. data/ext/pg_query/include/postgres/utils/backend_progress.h +3 -2
  349. data/ext/pg_query/include/postgres/utils/backend_status.h +8 -10
  350. data/ext/pg_query/include/postgres/utils/builtins.h +4 -1
  351. data/ext/pg_query/include/postgres/utils/bytea.h +2 -2
  352. data/ext/pg_query/include/postgres/utils/catcache.h +5 -6
  353. data/ext/pg_query/include/postgres/utils/date.h +1 -1
  354. data/ext/pg_query/include/postgres/utils/datetime.h +4 -1
  355. data/ext/pg_query/include/postgres/utils/datum.h +1 -1
  356. data/ext/pg_query/include/postgres/utils/dsa.h +44 -5
  357. data/ext/pg_query/include/postgres/utils/elog.h +3 -8
  358. data/ext/pg_query/include/postgres/utils/errcodes.h +1 -3
  359. data/ext/pg_query/include/postgres/utils/expandeddatum.h +1 -1
  360. data/ext/pg_query/include/postgres/utils/expandedrecord.h +1 -1
  361. data/ext/pg_query/include/postgres/utils/float.h +1 -1
  362. data/ext/pg_query/include/postgres/utils/fmgroids.h +49 -16
  363. data/ext/pg_query/include/postgres/utils/fmgrprotos.h +47 -14
  364. data/ext/pg_query/include/postgres/utils/fmgrtab.h +1 -1
  365. data/ext/pg_query/include/postgres/utils/guc.h +20 -6
  366. data/ext/pg_query/include/postgres/utils/guc_hooks.h +23 -2
  367. data/ext/pg_query/include/postgres/utils/guc_tables.h +6 -5
  368. data/ext/pg_query/include/postgres/utils/hsearch.h +2 -2
  369. data/ext/pg_query/include/postgres/utils/injection_point.h +44 -0
  370. data/ext/pg_query/include/postgres/utils/inval.h +1 -1
  371. data/ext/pg_query/include/postgres/utils/logtape.h +5 -5
  372. data/ext/pg_query/include/postgres/utils/lsyscache.h +6 -3
  373. data/ext/pg_query/include/postgres/utils/memdebug.h +1 -1
  374. data/ext/pg_query/include/postgres/utils/memutils.h +12 -5
  375. data/ext/pg_query/include/postgres/utils/memutils_internal.h +53 -13
  376. data/ext/pg_query/include/postgres/utils/memutils_memorychunk.h +25 -9
  377. data/ext/pg_query/include/postgres/utils/numeric.h +6 -1
  378. data/ext/pg_query/include/postgres/utils/palloc.h +1 -15
  379. data/ext/pg_query/include/postgres/utils/partcache.h +1 -1
  380. data/ext/pg_query/include/postgres/utils/pg_locale.h +8 -7
  381. data/ext/pg_query/include/postgres/utils/pgstat_internal.h +11 -17
  382. data/ext/pg_query/include/postgres/utils/plancache.h +5 -3
  383. data/ext/pg_query/include/postgres/utils/portal.h +9 -9
  384. data/ext/pg_query/include/postgres/utils/queryenvironment.h +2 -2
  385. data/ext/pg_query/include/postgres/utils/regproc.h +1 -1
  386. data/ext/pg_query/include/postgres/utils/rel.h +14 -15
  387. data/ext/pg_query/include/postgres/utils/relcache.h +2 -5
  388. data/ext/pg_query/include/postgres/utils/reltrigger.h +1 -1
  389. data/ext/pg_query/include/postgres/utils/resowner.h +90 -9
  390. data/ext/pg_query/include/postgres/utils/ruleutils.h +1 -1
  391. data/ext/pg_query/include/postgres/utils/sharedtuplestore.h +1 -1
  392. data/ext/pg_query/include/postgres/utils/snapmgr.h +1 -52
  393. data/ext/pg_query/include/postgres/utils/snapshot.h +2 -2
  394. data/ext/pg_query/include/postgres/utils/sortsupport.h +1 -1
  395. data/ext/pg_query/include/postgres/utils/syscache.h +2 -98
  396. data/ext/pg_query/include/postgres/utils/timeout.h +3 -2
  397. data/ext/pg_query/include/postgres/utils/timestamp.h +1 -1
  398. data/ext/pg_query/include/postgres/utils/tuplesort.h +36 -9
  399. data/ext/pg_query/include/postgres/utils/tuplestore.h +2 -5
  400. data/ext/pg_query/include/postgres/utils/typcache.h +2 -1
  401. data/ext/pg_query/include/postgres/utils/varlena.h +1 -1
  402. data/ext/pg_query/include/postgres/utils/wait_event.h +28 -214
  403. data/ext/pg_query/include/postgres/utils/wait_event_types.h +218 -0
  404. data/ext/pg_query/include/postgres/utils/xml.h +4 -4
  405. data/ext/pg_query/include/postgres/varatt.h +1 -1
  406. data/ext/pg_query/include/protobuf/pg_query.pb-c.h +1546 -792
  407. data/ext/pg_query/include/protobuf/pg_query.pb.h +58365 -46595
  408. data/ext/pg_query/pg_query.pb-c.c +6598 -3739
  409. data/ext/pg_query/pg_query_normalize.c +42 -1
  410. data/ext/pg_query/pg_query_outfuncs_json.c +3 -1
  411. data/ext/pg_query/pg_query_parse_plpgsql.c +12 -13
  412. data/ext/pg_query/pg_query_readfuncs_protobuf.c +2 -2
  413. data/ext/pg_query/pg_query_ruby_freebsd.sym +0 -1
  414. data/ext/pg_query/pg_query_scan.c +1 -1
  415. data/ext/pg_query/postgres_deparse.c +409 -21
  416. data/ext/pg_query/src_backend_catalog_namespace.c +241 -66
  417. data/ext/pg_query/src_backend_catalog_pg_proc.c +1 -3
  418. data/ext/pg_query/src_backend_commands_define.c +2 -3
  419. data/ext/pg_query/src_backend_nodes_bitmapset.c +137 -94
  420. data/ext/pg_query/src_backend_nodes_copyfuncs.c +1 -1
  421. data/ext/pg_query/src_backend_nodes_equalfuncs.c +1 -1
  422. data/ext/pg_query/src_backend_nodes_extensible.c +1 -1
  423. data/ext/pg_query/src_backend_nodes_list.c +3 -7
  424. data/ext/pg_query/src_backend_nodes_makefuncs.c +59 -20
  425. data/ext/pg_query/src_backend_nodes_nodeFuncs.c +109 -2
  426. data/ext/pg_query/src_backend_nodes_value.c +1 -1
  427. data/ext/pg_query/src_backend_parser_gram.c +34490 -32135
  428. data/ext/pg_query/src_backend_parser_parser.c +8 -8
  429. data/ext/pg_query/src_backend_parser_scan.c +5637 -3028
  430. data/ext/pg_query/src_backend_parser_scansup.c +2 -1
  431. data/ext/pg_query/src_backend_storage_ipc_ipc.c +1 -1
  432. data/ext/pg_query/src_backend_tcop_postgres.c +34 -10
  433. data/ext/pg_query/src_backend_utils_activity_pgstat_database.c +2 -2
  434. data/ext/pg_query/src_backend_utils_adt_datum.c +8 -6
  435. data/ext/pg_query/src_backend_utils_adt_expandeddatum.c +1 -1
  436. data/ext/pg_query/src_backend_utils_adt_format_type.c +1 -1
  437. data/ext/pg_query/src_backend_utils_adt_numutils.c +4 -5
  438. data/ext/pg_query/src_backend_utils_adt_ruleutils.c +101 -28
  439. data/ext/pg_query/src_backend_utils_error_assert.c +1 -1
  440. data/ext/pg_query/src_backend_utils_error_elog.c +47 -42
  441. data/ext/pg_query/src_backend_utils_fmgr_fmgr.c +4 -2
  442. data/ext/pg_query/src_backend_utils_init_globals.c +15 -3
  443. data/ext/pg_query/src_backend_utils_mb_mbutils.c +11 -18
  444. data/ext/pg_query/src_backend_utils_misc_guc_tables.c +16 -6
  445. data/ext/pg_query/src_backend_utils_mmgr_alignedalloc.c +8 -5
  446. data/ext/pg_query/src_backend_utils_mmgr_aset.c +308 -238
  447. data/ext/pg_query/src_backend_utils_mmgr_bump.c +728 -0
  448. data/ext/pg_query/src_backend_utils_mmgr_generation.c +273 -197
  449. data/ext/pg_query/src_backend_utils_mmgr_mcxt.c +270 -215
  450. data/ext/pg_query/src_backend_utils_mmgr_slab.c +154 -96
  451. data/ext/pg_query/src_common_encnames.c +43 -44
  452. data/ext/pg_query/src_common_hashfn.c +1 -1
  453. data/ext/pg_query/src_common_keywords.c +1 -1
  454. data/ext/pg_query/src_common_kwlist_d.h +511 -466
  455. data/ext/pg_query/src_common_kwlookup.c +1 -1
  456. data/ext/pg_query/src_common_psprintf.c +3 -3
  457. data/ext/pg_query/src_common_stringinfo.c +18 -1
  458. data/ext/pg_query/src_common_wchar.c +45 -108
  459. data/ext/pg_query/src_pl_plpgsql_src_pl_comp.c +99 -5
  460. data/ext/pg_query/src_pl_plpgsql_src_pl_funcs.c +1 -1
  461. data/ext/pg_query/src_pl_plpgsql_src_pl_gram.c +242 -143
  462. data/ext/pg_query/src_pl_plpgsql_src_pl_handler.c +1 -1
  463. data/ext/pg_query/src_pl_plpgsql_src_pl_reserved_kwlist_d.h +1 -1
  464. data/ext/pg_query/src_pl_plpgsql_src_pl_scanner.c +19 -1
  465. data/ext/pg_query/src_pl_plpgsql_src_pl_unreserved_kwlist_d.h +1 -1
  466. data/ext/pg_query/src_port_pg_bitutils.c +173 -28
  467. data/ext/pg_query/src_port_pgstrcasecmp.c +29 -1
  468. data/ext/pg_query/src_port_snprintf.c +1 -1
  469. data/ext/pg_query/src_port_strerror.c +1 -3
  470. data/ext/pg_query/src_port_strlcpy.c +1 -1
  471. data/lib/pg_query/param_refs.rb +1 -1
  472. data/lib/pg_query/pg_query_pb.rb +26 -3
  473. data/lib/pg_query/treewalker.rb +38 -11
  474. data/lib/pg_query/truncate.rb +1 -1
  475. data/lib/pg_query/version.rb +1 -1
  476. metadata +25 -11
  477. data/ext/pg_query/include/postgres/storage/backendid.h +0 -37
  478. data/ext/pg_query/include/postgres/storage/sinvaladt.h +0 -45
  479. data/ext/pg_query/src_backend_nodes_nodes.c +0 -38
@@ -12,7 +12,7 @@
12
12
  * kwlist_d.h
13
13
  * List of keywords represented as a ScanKeywordList.
14
14
  *
15
- * Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
15
+ * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
16
16
  * Portions Copyright (c) 1994, Regents of the University of California
17
17
  *
18
18
  * NOTES
@@ -99,6 +99,7 @@ static const char ScanKeywords_kw_string[] =
99
99
  "committed\0"
100
100
  "compression\0"
101
101
  "concurrently\0"
102
+ "conditional\0"
102
103
  "configuration\0"
103
104
  "conflict\0"
104
105
  "connection\0"
@@ -153,11 +154,13 @@ static const char ScanKeywords_kw_string[] =
153
154
  "drop\0"
154
155
  "each\0"
155
156
  "else\0"
157
+ "empty\0"
156
158
  "enable\0"
157
159
  "encoding\0"
158
160
  "encrypted\0"
159
161
  "end\0"
160
162
  "enum\0"
163
+ "error\0"
161
164
  "escape\0"
162
165
  "event\0"
163
166
  "except\0"
@@ -239,8 +242,15 @@ static const char ScanKeywords_kw_string[] =
239
242
  "json\0"
240
243
  "json_array\0"
241
244
  "json_arrayagg\0"
245
+ "json_exists\0"
242
246
  "json_object\0"
243
247
  "json_objectagg\0"
248
+ "json_query\0"
249
+ "json_scalar\0"
250
+ "json_serialize\0"
251
+ "json_table\0"
252
+ "json_value\0"
253
+ "keep\0"
244
254
  "key\0"
245
255
  "keys\0"
246
256
  "label\0"
@@ -270,6 +280,7 @@ static const char ScanKeywords_kw_string[] =
270
280
  "materialized\0"
271
281
  "maxvalue\0"
272
282
  "merge\0"
283
+ "merge_action\0"
273
284
  "method\0"
274
285
  "minute\0"
275
286
  "minvalue\0"
@@ -281,6 +292,7 @@ static const char ScanKeywords_kw_string[] =
281
292
  "national\0"
282
293
  "natural\0"
283
294
  "nchar\0"
295
+ "nested\0"
284
296
  "new\0"
285
297
  "next\0"
286
298
  "nfc\0"
@@ -306,6 +318,7 @@ static const char ScanKeywords_kw_string[] =
306
318
  "offset\0"
307
319
  "oids\0"
308
320
  "old\0"
321
+ "omit\0"
309
322
  "on\0"
310
323
  "only\0"
311
324
  "operator\0"
@@ -330,7 +343,9 @@ static const char ScanKeywords_kw_string[] =
330
343
  "partition\0"
331
344
  "passing\0"
332
345
  "password\0"
346
+ "path\0"
333
347
  "placing\0"
348
+ "plan\0"
334
349
  "plans\0"
335
350
  "policy\0"
336
351
  "position\0"
@@ -348,6 +363,7 @@ static const char ScanKeywords_kw_string[] =
348
363
  "program\0"
349
364
  "publication\0"
350
365
  "quote\0"
366
+ "quotes\0"
351
367
  "range\0"
352
368
  "read\0"
353
369
  "real\0"
@@ -407,6 +423,7 @@ static const char ScanKeywords_kw_string[] =
407
423
  "smallint\0"
408
424
  "snapshot\0"
409
425
  "some\0"
426
+ "source\0"
410
427
  "sql\0"
411
428
  "stable\0"
412
429
  "standalone\0"
@@ -418,6 +435,7 @@ static const char ScanKeywords_kw_string[] =
418
435
  "storage\0"
419
436
  "stored\0"
420
437
  "strict\0"
438
+ "string\0"
421
439
  "strip\0"
422
440
  "subscription\0"
423
441
  "substring\0"
@@ -430,6 +448,7 @@ static const char ScanKeywords_kw_string[] =
430
448
  "tables\0"
431
449
  "tablesample\0"
432
450
  "tablespace\0"
451
+ "target\0"
433
452
  "temp\0"
434
453
  "template\0"
435
454
  "temporary\0"
@@ -453,6 +472,7 @@ static const char ScanKeywords_kw_string[] =
453
472
  "uescape\0"
454
473
  "unbounded\0"
455
474
  "uncommitted\0"
475
+ "unconditional\0"
456
476
  "unencrypted\0"
457
477
  "union\0"
458
478
  "unique\0"
@@ -573,534 +593,559 @@ static const uint16 ScanKeywords_kw_offsets[] = {
573
593
  480,
574
594
  492,
575
595
  505,
576
- 519,
577
- 528,
578
- 539,
579
- 550,
596
+ 517,
597
+ 531,
598
+ 540,
599
+ 551,
580
600
  562,
581
- 570,
582
- 579,
583
- 590,
584
- 595,
585
- 600,
601
+ 574,
602
+ 582,
603
+ 591,
604
+ 602,
586
605
  607,
587
- 613,
588
- 617,
589
- 622,
590
- 630,
591
- 646,
592
- 659,
593
- 672,
594
- 687,
595
- 700,
596
- 718,
597
- 731,
598
- 738,
599
- 744,
600
- 749,
601
- 758,
602
- 762,
603
- 773,
604
- 777,
606
+ 612,
607
+ 619,
608
+ 625,
609
+ 629,
610
+ 634,
611
+ 642,
612
+ 658,
613
+ 671,
614
+ 684,
615
+ 699,
616
+ 712,
617
+ 730,
618
+ 743,
619
+ 750,
620
+ 756,
621
+ 761,
622
+ 770,
623
+ 774,
605
624
  785,
606
- 793,
607
- 801,
608
- 810,
609
- 821,
610
- 830,
611
- 838,
612
- 845,
613
- 855,
614
- 866,
615
- 874,
616
- 880,
617
- 885,
625
+ 789,
626
+ 797,
627
+ 805,
628
+ 813,
629
+ 822,
630
+ 833,
631
+ 842,
632
+ 850,
633
+ 857,
634
+ 867,
635
+ 878,
636
+ 886,
618
637
  892,
619
- 903,
620
- 911,
621
- 919,
622
- 928,
638
+ 897,
639
+ 904,
640
+ 915,
641
+ 923,
623
642
  931,
624
643
  940,
625
- 947,
626
- 954,
644
+ 943,
645
+ 952,
627
646
  959,
628
- 964,
629
- 969,
647
+ 966,
648
+ 971,
630
649
  976,
631
- 985,
632
- 995,
633
- 999,
634
- 1004,
635
- 1011,
650
+ 981,
651
+ 987,
652
+ 994,
653
+ 1003,
654
+ 1013,
636
655
  1017,
637
- 1024,
638
- 1032,
639
- 1042,
640
- 1052,
641
- 1060,
642
- 1067,
643
- 1075,
644
- 1086,
645
- 1096,
646
- 1105,
647
- 1113,
648
- 1119,
649
- 1126,
650
- 1132,
651
- 1139,
652
- 1148,
653
- 1154,
654
- 1160,
655
- 1170,
656
- 1174,
657
- 1180,
658
- 1188,
659
- 1195,
660
- 1203,
661
- 1210,
662
- 1215,
663
- 1220,
664
- 1229,
656
+ 1022,
657
+ 1028,
658
+ 1035,
659
+ 1041,
660
+ 1048,
661
+ 1056,
662
+ 1066,
663
+ 1076,
664
+ 1084,
665
+ 1091,
666
+ 1099,
667
+ 1110,
668
+ 1120,
669
+ 1129,
670
+ 1137,
671
+ 1143,
672
+ 1150,
673
+ 1156,
674
+ 1163,
675
+ 1172,
676
+ 1178,
677
+ 1184,
678
+ 1194,
679
+ 1198,
680
+ 1204,
681
+ 1212,
682
+ 1219,
683
+ 1227,
684
+ 1234,
665
685
  1239,
666
- 1249,
667
- 1256,
668
- 1262,
669
- 1270,
670
- 1279,
671
- 1285,
686
+ 1244,
687
+ 1253,
688
+ 1263,
689
+ 1273,
690
+ 1280,
691
+ 1286,
672
692
  1294,
673
- 1301,
693
+ 1303,
674
694
  1309,
675
- 1316,
676
- 1323,
677
- 1328,
695
+ 1318,
696
+ 1325,
678
697
  1333,
679
- 1342,
680
- 1345,
681
- 1351,
682
- 1361,
683
- 1371,
684
- 1380,
685
- 1387,
686
- 1390,
687
- 1398,
688
- 1408,
689
- 1418,
690
- 1425,
691
- 1431,
692
- 1439,
693
- 1447,
694
- 1456,
695
- 1466,
696
- 1473,
697
- 1479,
698
- 1485,
699
- 1491,
698
+ 1340,
699
+ 1347,
700
+ 1352,
701
+ 1357,
702
+ 1366,
703
+ 1369,
704
+ 1375,
705
+ 1385,
706
+ 1395,
707
+ 1404,
708
+ 1411,
709
+ 1414,
710
+ 1422,
711
+ 1432,
712
+ 1442,
713
+ 1449,
714
+ 1455,
715
+ 1463,
716
+ 1471,
717
+ 1480,
718
+ 1490,
719
+ 1497,
700
720
  1503,
701
- 1510,
702
- 1518,
703
- 1522,
704
- 1530,
705
- 1540,
706
- 1549,
721
+ 1509,
722
+ 1515,
723
+ 1527,
724
+ 1534,
725
+ 1542,
726
+ 1546,
707
727
  1554,
708
- 1562,
709
- 1565,
710
- 1572,
711
- 1582,
712
- 1587,
713
- 1592,
714
- 1603,
715
- 1617,
716
- 1629,
717
- 1644,
718
- 1648,
728
+ 1564,
729
+ 1573,
730
+ 1578,
731
+ 1586,
732
+ 1589,
733
+ 1596,
734
+ 1606,
735
+ 1611,
736
+ 1616,
737
+ 1627,
738
+ 1641,
719
739
  1653,
720
- 1659,
721
- 1668,
722
- 1674,
723
- 1679,
724
- 1687,
725
- 1695,
726
- 1705,
727
- 1711,
728
- 1716,
729
- 1722,
730
- 1727,
731
- 1733,
740
+ 1665,
741
+ 1680,
742
+ 1691,
743
+ 1703,
744
+ 1718,
745
+ 1729,
732
746
  1740,
733
747
  1745,
734
- 1751,
735
- 1761,
736
- 1776,
737
- 1785,
738
- 1790,
739
- 1797,
740
- 1804,
748
+ 1749,
749
+ 1754,
750
+ 1760,
751
+ 1769,
752
+ 1775,
753
+ 1780,
754
+ 1788,
755
+ 1796,
756
+ 1806,
741
757
  1812,
742
- 1818,
743
- 1826,
744
- 1839,
745
- 1848,
746
- 1854,
747
- 1861,
748
- 1868,
758
+ 1817,
759
+ 1823,
760
+ 1828,
761
+ 1834,
762
+ 1841,
763
+ 1846,
764
+ 1852,
765
+ 1862,
749
766
  1877,
750
- 1882,
751
- 1888,
752
- 1893,
767
+ 1886,
768
+ 1891,
753
769
  1898,
754
- 1904,
770
+ 1905,
755
771
  1913,
756
- 1921,
772
+ 1919,
757
773
  1927,
758
- 1931,
759
- 1936,
760
774
  1940,
761
- 1944,
762
775
  1949,
763
- 1954,
764
- 1957,
765
- 1962,
766
- 1972,
767
- 1983,
768
- 1987,
769
- 1995,
776
+ 1955,
777
+ 1968,
778
+ 1975,
779
+ 1982,
780
+ 1991,
781
+ 1996,
770
782
  2002,
771
- 2010,
772
- 2017,
773
- 2022,
774
- 2029,
783
+ 2007,
784
+ 2012,
785
+ 2018,
786
+ 2027,
775
787
  2035,
776
- 2043,
777
- 2050,
778
- 2053,
788
+ 2041,
789
+ 2048,
790
+ 2052,
779
791
  2057,
780
- 2064,
781
- 2069,
782
- 2073,
783
- 2076,
784
- 2081,
785
- 2090,
786
- 2097,
787
- 2105,
792
+ 2061,
793
+ 2065,
794
+ 2070,
795
+ 2075,
796
+ 2078,
797
+ 2083,
798
+ 2093,
799
+ 2104,
788
800
  2108,
789
- 2114,
790
- 2125,
791
- 2132,
792
- 2136,
793
- 2142,
794
- 2147,
801
+ 2116,
802
+ 2123,
803
+ 2131,
804
+ 2138,
805
+ 2143,
806
+ 2150,
795
807
  2156,
796
808
  2164,
797
- 2175,
798
- 2181,
799
- 2187,
800
- 2196,
801
- 2206,
802
- 2213,
803
- 2221,
809
+ 2171,
810
+ 2174,
811
+ 2178,
812
+ 2185,
813
+ 2190,
814
+ 2194,
815
+ 2199,
816
+ 2202,
817
+ 2207,
818
+ 2216,
819
+ 2223,
804
820
  2231,
805
- 2239,
806
- 2248,
807
- 2256,
821
+ 2234,
822
+ 2240,
823
+ 2251,
824
+ 2258,
808
825
  2262,
809
- 2269,
810
- 2278,
811
- 2288,
812
- 2298,
813
- 2306,
814
- 2315,
815
- 2324,
826
+ 2268,
827
+ 2273,
828
+ 2282,
829
+ 2290,
830
+ 2301,
831
+ 2307,
832
+ 2313,
833
+ 2322,
816
834
  2332,
817
- 2338,
818
- 2349,
819
- 2360,
820
- 2370,
821
- 2381,
822
- 2389,
823
- 2401,
824
- 2407,
825
- 2413,
826
- 2418,
827
- 2423,
828
- 2432,
829
- 2440,
830
- 2450,
831
- 2454,
832
- 2465,
833
- 2477,
835
+ 2339,
836
+ 2347,
837
+ 2357,
838
+ 2365,
839
+ 2374,
840
+ 2379,
841
+ 2387,
842
+ 2392,
843
+ 2398,
844
+ 2405,
845
+ 2414,
846
+ 2424,
847
+ 2434,
848
+ 2442,
849
+ 2451,
850
+ 2460,
851
+ 2468,
852
+ 2474,
834
853
  2485,
835
- 2493,
836
- 2502,
837
- 2510,
854
+ 2496,
855
+ 2506,
838
856
  2517,
839
- 2528,
840
- 2536,
841
- 2544,
857
+ 2525,
858
+ 2537,
859
+ 2543,
842
860
  2550,
843
- 2558,
844
- 2567,
845
- 2574,
846
- 2584,
847
- 2592,
848
- 2599,
849
- 2605,
850
- 2610,
851
- 2619,
852
- 2626,
853
- 2634,
854
- 2643,
855
- 2647,
856
- 2652,
857
- 2657,
858
- 2667,
859
- 2674,
860
- 2681,
861
- 2689,
862
- 2696,
863
- 2703,
861
+ 2556,
862
+ 2561,
863
+ 2566,
864
+ 2575,
865
+ 2583,
866
+ 2593,
867
+ 2597,
868
+ 2608,
869
+ 2620,
870
+ 2628,
871
+ 2636,
872
+ 2645,
873
+ 2653,
874
+ 2660,
875
+ 2671,
876
+ 2679,
877
+ 2687,
878
+ 2693,
879
+ 2701,
864
880
  2710,
865
- 2719,
866
- 2726,
881
+ 2717,
882
+ 2727,
867
883
  2735,
868
- 2745,
869
- 2758,
870
- 2765,
871
- 2773,
884
+ 2742,
885
+ 2748,
886
+ 2753,
887
+ 2762,
888
+ 2769,
889
+ 2777,
872
890
  2786,
873
891
  2790,
874
- 2796,
875
- 2801,
876
- 2807,
877
- 2812,
878
- 2820,
879
- 2827,
892
+ 2795,
893
+ 2800,
894
+ 2810,
895
+ 2817,
896
+ 2824,
880
897
  2832,
881
- 2841,
882
- 2850,
883
- 2855,
884
- 2859,
885
- 2866,
886
- 2877,
887
- 2883,
888
- 2893,
889
- 2904,
890
- 2910,
891
- 2917,
892
- 2925,
893
- 2932,
898
+ 2839,
899
+ 2846,
900
+ 2853,
901
+ 2862,
902
+ 2869,
903
+ 2878,
904
+ 2888,
905
+ 2901,
906
+ 2908,
907
+ 2916,
908
+ 2929,
909
+ 2933,
894
910
  2939,
895
- 2945,
896
- 2958,
897
- 2968,
898
- 2976,
899
- 2986,
900
- 2992,
901
- 2999,
902
- 3011,
903
- 3017,
904
- 3024,
905
- 3036,
906
- 3047,
907
- 3052,
908
- 3061,
909
- 3071,
910
- 3076,
911
- 3081,
912
- 3086,
913
- 3091,
914
- 3101,
915
- 3104,
916
- 3113,
911
+ 2944,
912
+ 2950,
913
+ 2955,
914
+ 2963,
915
+ 2970,
916
+ 2975,
917
+ 2984,
918
+ 2993,
919
+ 2998,
920
+ 3005,
921
+ 3009,
922
+ 3016,
923
+ 3027,
924
+ 3033,
925
+ 3043,
926
+ 3054,
927
+ 3060,
928
+ 3067,
929
+ 3075,
930
+ 3082,
931
+ 3089,
932
+ 3096,
933
+ 3102,
934
+ 3115,
917
935
  3125,
918
- 3135,
919
- 3141,
936
+ 3133,
937
+ 3143,
920
938
  3149,
921
- 3154,
922
- 3159,
939
+ 3156,
923
940
  3168,
924
- 3176,
941
+ 3174,
925
942
  3181,
926
- 3187,
927
- 3195,
928
- 3205,
929
- 3217,
930
- 3229,
943
+ 3193,
944
+ 3204,
945
+ 3211,
946
+ 3216,
947
+ 3225,
931
948
  3235,
932
- 3242,
949
+ 3240,
950
+ 3245,
933
951
  3250,
934
- 3259,
952
+ 3255,
953
+ 3265,
935
954
  3268,
936
- 3274,
937
- 3281,
938
- 3286,
939
- 3292,
955
+ 3277,
956
+ 3289,
940
957
  3299,
941
958
  3305,
942
- 3314,
943
- 3324,
944
- 3330,
945
- 3337,
959
+ 3313,
960
+ 3318,
961
+ 3323,
962
+ 3332,
963
+ 3340,
946
964
  3345,
947
- 3354,
948
- 3362,
949
- 3370,
950
- 3378,
951
- 3383,
952
- 3389,
953
- 3398,
954
- 3403,
955
- 3409,
965
+ 3351,
966
+ 3359,
967
+ 3369,
968
+ 3381,
969
+ 3395,
970
+ 3407,
971
+ 3413,
956
972
  3420,
957
- 3427,
958
- 3432,
959
- 3439,
960
- 3447,
973
+ 3428,
974
+ 3437,
975
+ 3446,
961
976
  3452,
962
- 3460,
963
- 3466,
977
+ 3459,
978
+ 3464,
964
979
  3470,
965
- 3484,
966
- 3494,
967
- 3505,
980
+ 3477,
981
+ 3483,
982
+ 3492,
983
+ 3502,
984
+ 3508,
968
985
  3515,
969
- 3525,
970
- 3539,
986
+ 3523,
987
+ 3532,
988
+ 3540,
971
989
  3548,
972
- 3554,
973
- 3562,
974
- 3575,
975
- 3584,
976
- 3589,
977
- 3593,
990
+ 3556,
991
+ 3561,
992
+ 3567,
993
+ 3576,
994
+ 3581,
995
+ 3587,
996
+ 3598,
997
+ 3605,
998
+ 3610,
999
+ 3617,
1000
+ 3625,
1001
+ 3630,
1002
+ 3638,
1003
+ 3644,
1004
+ 3648,
1005
+ 3662,
1006
+ 3672,
1007
+ 3683,
1008
+ 3693,
1009
+ 3703,
1010
+ 3717,
1011
+ 3726,
1012
+ 3732,
1013
+ 3740,
1014
+ 3753,
1015
+ 3762,
1016
+ 3767,
1017
+ 3771,
978
1018
  };
979
1019
 
980
- #define SCANKEYWORDS_NUM_KEYWORDS 471
1020
+ #define SCANKEYWORDS_NUM_KEYWORDS 491
981
1021
 
982
1022
  static int
983
1023
  ScanKeywords_hash_func(const void *key, size_t keylen)
984
1024
  {
985
- static const int16 h[943] = {
986
- 543, -186, 201, 0, 32767, 32767, 32767, 32767,
987
- 221, -207, 32767, 0, 135, 283, 32767, 454,
988
- 14, 79, 32767, 32767, 77, 32767, 102, 160,
989
- 0, 32767, 151, 32767, 30, 392, -322, 452,
990
- 32767, 0, 32767, 0, 0, 32767, 32767, 32767,
991
- 234, 32767, 0, 32767, 0, 631, 32767, 368,
992
- 80, 0, 0, -115, 32767, 285, 32767, 423,
993
- 0, 32767, 155, 229, 32767, 126, 291, 165,
994
- -22, 400, 327, 32767, 32767, 32767, 32767, -399,
995
- 0, 406, 32767, 210, 1102, -203, 32767, 32767,
996
- 32767, -944, 0, -188, 32767, 32767, 0, 347,
997
- 32767, 0, 559, 316, 133, 32767, 202, 32767,
998
- 305, 0, 32767, -94, 32767, 0, 32767, -222,
999
- 32767, 138, 32767, -52, 32767, 32767, 279, 69,
1000
- -136, 0, 32767, 32767, 189, 32767, 32767, 88,
1001
- 0, 32767, 32767, 274, 32767, 514, 769, 248,
1002
- 32767, 32767, 32767, 32767, 32767, 32767, 0, 81,
1003
- 8, -29, 32767, 32767, 32767, -174, 258, 0,
1004
- 465, 211, 32767, 0, -229, 32767, -191, 32767,
1005
- 1263, 48, 32767, 343, 0, 58, 0, 32767,
1006
- 32767, 855, 0, 415, 0, -217, 32767, 1195,
1007
- 32767, 32767, 166, 32767, 42, 262, -736, 0,
1008
- 32767, 32767, 418, 178, 122, 32767, 46, 32767,
1009
- 32767, 32767, 229, 443, 32767, 32767, 250, 32767,
1010
- -300, 0, 32767, 1153, 32767, 108, 32767, -462,
1011
- 266, 32767, 478, -220, 235, 32767, 32767, -127,
1012
- 32767, 32767, 32767, 427, -231, 156, 32767, 0,
1013
- 0, 148, -218, 142, 73, 420, 32767, 32767,
1014
- 523, 32767, -36, 32767, 32767, 467, 844, -415,
1015
- 32767, 32767, -148, 179, 361, 32767, 151, 0,
1016
- 0, 32767, 145, 32767, 248, 110, 29, 125,
1017
- 282, 32767, -36, 43, 32767, 1125, 32767, 530,
1018
- 251, 519, 191, 0, 32767, -34, -502, 313,
1019
- 462, 845, 32767, 32767, -255, 412, 32767, 78,
1020
- 0, 32767, 444, 161, 0, 32767, 308, 32767,
1021
- -273, 400, 32767, 296, 32767, 32767, 72, 32767,
1022
- 32767, 34, 32767, 364, 151, -63, 4, 229,
1023
- 0, -276, 32767, 32767, 32767, 32767, -406, 32767,
1024
- 203, 32767, 140, 187, 160, 32767, 286, 0,
1025
- 32767, 32767, -88, 0, 100, -361, 32767, 9,
1026
- 0, -456, 32767, -37, -404, 32767, -969, 32767,
1027
- 371, 95, 0, 703, -31, 263, 373, -745,
1028
- 507, 14, 32767, -159, 0, 32767, 47, 299,
1029
- -126, 0, 32767, 83, 32767, 32767, 420, 236,
1030
- 32767, 32767, 0, 310, 89, 233, 32767, 93,
1031
- 32767, 0, 816, 60, 301, 211, 193, 0,
1032
- 452, -107, -403, -242, 353, 18, 32767, 32767,
1033
- 32767, 243, 104, 32767, 32767, 32767, -305, 32767,
1034
- -1048, 54, 0, 383, 32767, 32767, 32767, 226,
1035
- 319, 0, 32767, 32767, 32767, -130, 537, 32767,
1036
- 0, -206, 240, 696, 121, 32767, 180, 164,
1037
- 32767, 390, 185, 32767, 220, 545, 29, 32767,
1038
- 0, 32767, 32767, 1120, -163, 32767, 32767, 32767,
1039
- -368, 136, 445, 171, 233, 32767, 73, 32767,
1040
- 92, 32767, 0, 32767, 0, 208, 354, 32767,
1041
- 54, 32767, 32767, -246, -93, 389, 32767, 32767,
1042
- 32767, 32767, 50, 32767, 32767, 308, 32767, -278,
1043
- 0, 32767, 32767, -1172, 32767, 8, 32767, 0,
1044
- 32767, 341, 304, 242, -174, -92, 76, 419,
1045
- 32767, 87, 32767, -262, 32767, 32767, 32767, 109,
1046
- 200, 0, 32767, 0, 85, 530, 32767, -316,
1047
- 32767, 0, -286, 32767, 193, 268, 32767, 32767,
1048
- 278, 32767, 32767, 155, 445, 95, -310, 32767,
1049
- 207, -56, 32767, 32767, 0, -127, 232, -283,
1050
- 103, 32767, 1, 0, 32767, 32767, -485, 350,
1051
- 79, -56, -354, 32767, 121, 24, 81, 20,
1052
- 325, 40, 248, 32767, 32767, 32767, 358, 32767,
1053
- -56, 32767, 0, 174, -28, -301, -92, 32767,
1054
- 114, 295, 32767, 363, -355, 32767, 290, 0,
1055
- 32767, 32767, 32767, 122, 55, -142, 32767, 50,
1056
- 32767, 32767, 152, 571, 1397, 0, 472, -448,
1057
- 185, 140, 228, 435, 0, 32767, 32767, 414,
1058
- 32767, 379, 92, 185, 23, 299, 32767, 32767,
1059
- 0, 32767, 32767, 32767, 306, 439, -198, 219,
1060
- 340, 32767, 416, 0, -123, 377, 32767, 32767,
1061
- 0, 32767, 670, -670, 339, 32767, 32767, 32767,
1062
- 0, -256, 70, 514, 331, 0, 302, 469,
1063
- 0, 370, 32767, 32767, 42, 255, 212, 0,
1064
- 322, 277, 32767, -163, 32767, 216, 32767, 32767,
1065
- 0, 32767, 190, 32767, 32767, 0, 32767, 0,
1066
- -409, 1366, 32767, 32767, 32767, 193, 32767, 325,
1067
- 32767, 0, 142, 466, 32767, 32767, 32767, 113,
1068
- 32767, 32767, 62, 0, -62, 113, -90, 34,
1069
- -256, 32767, 32767, -936, 32767, 32767, 32767, 0,
1070
- -64, 0, -34, 451, 290, 108, 32767, 276,
1071
- 842, 0, 556, -153, 32767, 412, -168, 32767,
1072
- 32767, 1331, 407, 234, -60, 115, 457, -73,
1073
- 502, 772, 32767, 33, 404, -925, 32767, 32767,
1074
- 421, -123, 32767, 32767, 32767, 0, 0, 32767,
1075
- 32767, 32767, 429, 0, 3, 769, -81, 306,
1076
- 64, 32767, 192, 96, 0, 63, 44, 32767,
1077
- 32767, 32767, 32767, 0, 284, 32767, 575, 32767,
1078
- 32767, 12, 32767, 516, 116, 32767, 32767, 150,
1079
- 442, 134, 32767, 198, -45, 249, 40, 373,
1080
- 32767, 0, 32767, 32767, 0, 0, 352, 32767,
1081
- 117, 32767, 426, 0, 0, 32767, 32767, 32767,
1082
- 32767, -92, 32767, -442, 32767, 269, 32767, 32767,
1083
- 32767, 429, 32767, 0, 32767, 0, 143, 32767,
1084
- 508, -66, 32767, 280, 32767, 39, 162, 32767,
1085
- 32767, 0, 32767, 31, 32767, 32767, 32767, 0,
1086
- 32767, 257, -90, -249, 224, 272, 32767, 32767,
1087
- 313, -467, 214, 0, -85, 32767, 48, 0,
1088
- 32767, -336, 202, 0, 447, 90, 264, 32767,
1089
- 32767, 0, 101, 32767, 32767, 32767, 0, 32767,
1090
- 32767, 227, -1093, 32767, 0, 32767, 27, 174,
1091
- 32767, 7, 32767, -621, 146, 32767, 32767, 32767,
1092
- 854, 0, 32767, 161, 0, 137, 32767, 32767,
1093
- 32767, 32767, 0, 391, 219, 276, 32767, 168,
1094
- 32767, 32767, 0, 32767, 32767, 32767, 1, -4,
1095
- 32767, 0, 293, 0, 374, 256, 0, 0,
1096
- 32767, 355, 212, 404, 0, 186, 32767, 0,
1097
- 359, 32767, 32767, 172, 32767, 32767, -131, 0,
1098
- 402, 0, 56, 32767, 462, 389, 82, 0,
1099
- 32767, 0, 32767, 0, 32767, 32767, 32767, 32767,
1100
- 106, 425, -160, 31, 32767, 55, 0, 0,
1101
- 32767, 32767, 430, 1224, 179, -179, 0, 397,
1102
- 32767, 0, 0, 0, -60, 47, 32767, 396,
1103
- 32767, 326, 383, 369, 32767, 368, 32767
1025
+ static const int16 h[983] = {
1026
+ 283, 32767, 500, 226, 291, 32767, 32767, 32767,
1027
+ 467, 152, 66, 291, -300, 32767, -427, -45,
1028
+ 0, 219, 224, 189, 32767, 195, 0, -507,
1029
+ 324, 32767, 300, 32767, 0, 32767, 161, 32767,
1030
+ 32767, 32767, 32767, 131, 32767, 101, 32767, 391,
1031
+ 32767, 32767, 32767, 0, 2, 32767, 128, 418,
1032
+ -291, 32767, 32767, -631, 32767, 250, 219, -142,
1033
+ 133, 334, 32767, 0, 170, 32767, 516, 32767,
1034
+ 307, 288, 391, 32767, 216, 319, 0, 32767,
1035
+ 152, 32767, 375, 444, 433, 32767, 242, 32767,
1036
+ 4, -119, 481, -13, 32767, 32767, -94, 0,
1037
+ 290, -113, 32767, 137, 122, 120, 32767, 32767,
1038
+ 32767, 414, -397, -45, -267, -5, 605, 32767,
1039
+ 453, 514, 32767, 400, 32767, 32767, 32767, 32767,
1040
+ 361, 150, 32767, 107, 172, -32, 81, -232,
1041
+ -15, 830, -46, 32767, 32767, 32767, 543, -341,
1042
+ 0, 32767, 288, 488, 32767, 43, 410, -99,
1043
+ 32767, 384, 32767, 32767, 315, 32767, -419, -458,
1044
+ 0, -459, 0, 232, 32767, 32767, 333, -413,
1045
+ 32767, 584, -76, 0, -6, 125, 32767, 421,
1046
+ 32767, 32767, -88, 128, -1, 15, 55, 32767,
1047
+ 214, 32767, 0, 0, 166, 348, -337, 32767,
1048
+ 260, 319, 32767, 180, 158, 0, 32767, 0,
1049
+ -226, 0, 129, 0, 378, 517, -293, 671,
1050
+ 32767, 32767, 0, 167, 305, -61, -229, 97,
1051
+ 164, 88, 380, 50, 32767, 71, -637, 106,
1052
+ 32767, 79, 0, 415, 32767, 0, 32767, 317,
1053
+ 379, 28, 431, 0, 32767, 32767, 301, 185,
1054
+ 196, 37, 32767, 142, 200, 32767, -211, -223,
1055
+ -392, 99, 32767, -366, 32767, 287, 32767, 0,
1056
+ -309, 0, 32767, -963, 32767, 222, 432, 32767,
1057
+ 32767, 0, 32767, 32767, 266, 56, 0, 32767,
1058
+ 391, 606, 32767, 32767, 360, 0, 60, 32767,
1059
+ 32767, 0, 32767, 0, 325, 32767, 333, 32767,
1060
+ -54, 399, 0, 28, 237, -648, 32767, 108,
1061
+ 438, 32767, 221, 390, 32767, 32767, 223, 687,
1062
+ 452, 125, 32767, -913, 186, 0, 32767, 32767,
1063
+ 32767, 32767, 0, 0, 32767, 32767, 32767, -27,
1064
+ 1087, 464, -305, 427, 898, 32767, 0, 32767,
1065
+ 0, 32767, 104, 32767, 32767, 260, 1065, 0,
1066
+ 703, 32767, 0, 337, 350, 767, 32767, -330,
1067
+ 379, 32767, 32767, 32767, 32767, 32767, 32767, 228,
1068
+ 32767, 32767, 32767, 0, -87, -48, 32767, -541,
1069
+ 415, 32767, 306, 32767, 32767, 32767, -117, 15,
1070
+ 0, 0, 32767, 412, -645, 223, -558, 32767,
1071
+ 32767, 32767, 32767, 32767, -254, 162, -372, 0,
1072
+ 0, 32767, 353, 0, 199, 32767, 664, 32767,
1073
+ 32767, 0, 32767, -148, 32767, -98, 32767, 449,
1074
+ 0, 32767, 383, -495, -295, 208, 0, 32767,
1075
+ 511, 17, 32767, 32767, 0, 387, 32767, 32767,
1076
+ 32767, 0, 32767, 32767, 2, -2, -177, 32767,
1077
+ 0, 32767, 150, 32767, -471, 32767, -282, 32767,
1078
+ 240, 183, 357, 423, 32767, 435, 32767, 284,
1079
+ 32767, 358, 298, 195, 72, 0, 421, 535,
1080
+ 32767, 426, -206, 222, 32767, 0, 466, 36,
1081
+ 426, 32767, 32767, 0, 32767, 0, 32767, 70,
1082
+ 479, 32767, 514, 32767, 32767, 697, 436, 43,
1083
+ 155, 32767, 32767, 0, 32767, -155, 32767, 11,
1084
+ 649, -376, 32767, 0, -683, -330, 361, 0,
1085
+ 57, 263, -43, 32767, 383, 0, 32767, 217,
1086
+ 32767, 0, 478, 32767, 0, 32767, 463, 32767,
1087
+ 501, 32767, 237, 301, 545, 302, 67, 311,
1088
+ 1135, 152, 0, 342, 32767, 350, 418, 32767,
1089
+ 0, 428, 0, 0, -353, 381, 790, 32767,
1090
+ 32767, -259, 32767, 32767, 32767, 229, 417, 0,
1091
+ 232, 32767, 0, 980, 32767, 0, 0, 275,
1092
+ -314, 0, 0, 32767, 32767, 32767, 32767, 32767,
1093
+ 0, 0, -89, 292, 1049, 32767, 32767, -284,
1094
+ 18, 32767, 175, 0, 732, 111, 32767, 428,
1095
+ -167, 92, -59, 199, 0, 793, 702, -231,
1096
+ 32767, 32767, 32767, 32767, 187, 549, 32767, 32767,
1097
+ 32767, 32767, 69, 480, 0, 490, 430, 32767,
1098
+ 32767, 32767, 32767, -2, 32767, 240, 32767, 471,
1099
+ 275, 32767, 524, 17, 0, 32767, 144, 0,
1100
+ 310, 371, 328, 1016, -639, 32767, 51, 32767,
1101
+ -982, 32767, 0, -727, 32767, 32767, -117, -115,
1102
+ 249, 32767, 32767, -6, 32767, 183, -350, 32767,
1103
+ 14, 32767, 32767, 118, -137, -321, 32767, 793,
1104
+ 32767, 32767, 32767, 0, 32767, 77, 204, 71,
1105
+ 32767, -228, -516, 32767, 790, 389, -1, 112,
1106
+ 366, 245, 32767, 0, 32767, 0, -625, 154,
1107
+ -211, 32767, 32767, 105, -253, 214, 0, 203,
1108
+ 392, 0, 32767, 32767, 62, 102, 32767, 32767,
1109
+ 29, 0, 0, 306, 32767, 32767, -29, 194,
1110
+ 0, -120, 32767, 32767, 32767, 376, 32767, 27,
1111
+ 32767, 356, 32767, 0, 32767, 75, 174, 32767,
1112
+ 32767, 32767, -37, 32767, 255, 124, 845, 32767,
1113
+ 0, 32767, 64, 32767, -472, -648, 32767, 584,
1114
+ 0, 32767, 19, 201, 32767, 0, 32767, 32767,
1115
+ -414, -171, -621, 32767, -134, 0, 515, 0,
1116
+ 767, 32767, 32767, 414, 32767, -88, -236, 32767,
1117
+ -52, 298, -254, 32767, 39, 0, 65, 118,
1118
+ 32767, 182, 32767, 134, 0, 32767, 32767, 400,
1119
+ 0, 32767, 32767, 705, 0, 32767, 32767, 269,
1120
+ 32767, 32767, 296, 290, 32767, 0, 0, 32767,
1121
+ 61, 32767, 299, 32767, -227, 240, 32767, 0,
1122
+ 32767, 32767, 32767, 129, 32767, 0, 252, 32767,
1123
+ 0, -487, 32767, 0, -127, 32767, 32767, 132,
1124
+ 18, 0, 32767, 32767, -154, 0, 946, 401,
1125
+ 264, 378, 0, 326, 32767, 0, 465, 233,
1126
+ 87, 32767, 47, 0, -357, 32767, 32767, 0,
1127
+ 0, -245, 835, 887, 32767, 32767, 32767, 32767,
1128
+ 32767, 334, 0, -56, 32767, -196, 0, 32767,
1129
+ 32767, 32767, 154, 32767, 20, -175, 63, 537,
1130
+ 32767, 358, 32767, 121, 32767, 32767, 754, 0,
1131
+ 32767, 0, -113, 0, 0, 207, 0, -256,
1132
+ 32767, 241, 32767, 257, 32767, 194, -595, 23,
1133
+ 19, 268, 666, 231, 0, 211, 32767, 32767,
1134
+ 32767, 32767, 0, 115, 136, 0, 32767, 32767,
1135
+ 404, -252, -432, 0, 0, 341, 32767, 410,
1136
+ 32767, -125, 9, 32767, 482, 727, 0, 32767,
1137
+ 252, 0, 32767, 32767, 147, 124, 270, 10,
1138
+ -124, 47, 0, 300, 445, -246, 32767, 111,
1139
+ 32767, 32767, 32767, -356, 103, 81, 32767, 32767,
1140
+ 32767, 32767, 280, 306, 0, 32767, 695, 32767,
1141
+ -768, 32767, 32767, 0, 32767, 0, 32767, 145,
1142
+ 44, 32767, 32767, 32767, 432, 136, 32767, 0,
1143
+ -903, 251, 32767, -222, 370, 405, 99, 17,
1144
+ 32767, 564, 32767, 32767, 32767, 0, 32767, 32767,
1145
+ 32767, 141, 0, 0, 32767, 32767, 32767, 344,
1146
+ 0, 464, 0, 0, 32767, 32767, 32767, 0,
1147
+ 463, 32767, 32767, 329, 32767, 32767, 422, 32767,
1148
+ 220, 32767, 347, 32767, -17, 253, 18
1104
1149
  };
1105
1150
 
1106
1151
  const unsigned char *k = (const unsigned char *) key;
@@ -1114,7 +1159,7 @@ ScanKeywords_hash_func(const void *key, size_t keylen)
1114
1159
  a = a * 257 + c;
1115
1160
  b = b * 31 + c;
1116
1161
  }
1117
- return h[a % 943] + h[b % 943];
1162
+ return h[a % 983] + h[b % 983];
1118
1163
  }
1119
1164
 
1120
1165
  const ScanKeywordList ScanKeywords = {