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
@@ -3,7 +3,7 @@
3
3
  * kwlist_d.h
4
4
  * List of keywords represented as a ScanKeywordList.
5
5
  *
6
- * Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
6
+ * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
7
7
  * Portions Copyright (c) 1994, Regents of the University of California
8
8
  *
9
9
  * NOTES
@@ -90,6 +90,7 @@ static const char ScanKeywords_kw_string[] =
90
90
  "committed\0"
91
91
  "compression\0"
92
92
  "concurrently\0"
93
+ "conditional\0"
93
94
  "configuration\0"
94
95
  "conflict\0"
95
96
  "connection\0"
@@ -144,11 +145,13 @@ static const char ScanKeywords_kw_string[] =
144
145
  "drop\0"
145
146
  "each\0"
146
147
  "else\0"
148
+ "empty\0"
147
149
  "enable\0"
148
150
  "encoding\0"
149
151
  "encrypted\0"
150
152
  "end\0"
151
153
  "enum\0"
154
+ "error\0"
152
155
  "escape\0"
153
156
  "event\0"
154
157
  "except\0"
@@ -230,8 +233,15 @@ static const char ScanKeywords_kw_string[] =
230
233
  "json\0"
231
234
  "json_array\0"
232
235
  "json_arrayagg\0"
236
+ "json_exists\0"
233
237
  "json_object\0"
234
238
  "json_objectagg\0"
239
+ "json_query\0"
240
+ "json_scalar\0"
241
+ "json_serialize\0"
242
+ "json_table\0"
243
+ "json_value\0"
244
+ "keep\0"
235
245
  "key\0"
236
246
  "keys\0"
237
247
  "label\0"
@@ -261,6 +271,7 @@ static const char ScanKeywords_kw_string[] =
261
271
  "materialized\0"
262
272
  "maxvalue\0"
263
273
  "merge\0"
274
+ "merge_action\0"
264
275
  "method\0"
265
276
  "minute\0"
266
277
  "minvalue\0"
@@ -272,6 +283,7 @@ static const char ScanKeywords_kw_string[] =
272
283
  "national\0"
273
284
  "natural\0"
274
285
  "nchar\0"
286
+ "nested\0"
275
287
  "new\0"
276
288
  "next\0"
277
289
  "nfc\0"
@@ -297,6 +309,7 @@ static const char ScanKeywords_kw_string[] =
297
309
  "offset\0"
298
310
  "oids\0"
299
311
  "old\0"
312
+ "omit\0"
300
313
  "on\0"
301
314
  "only\0"
302
315
  "operator\0"
@@ -321,7 +334,9 @@ static const char ScanKeywords_kw_string[] =
321
334
  "partition\0"
322
335
  "passing\0"
323
336
  "password\0"
337
+ "path\0"
324
338
  "placing\0"
339
+ "plan\0"
325
340
  "plans\0"
326
341
  "policy\0"
327
342
  "position\0"
@@ -339,6 +354,7 @@ static const char ScanKeywords_kw_string[] =
339
354
  "program\0"
340
355
  "publication\0"
341
356
  "quote\0"
357
+ "quotes\0"
342
358
  "range\0"
343
359
  "read\0"
344
360
  "real\0"
@@ -398,6 +414,7 @@ static const char ScanKeywords_kw_string[] =
398
414
  "smallint\0"
399
415
  "snapshot\0"
400
416
  "some\0"
417
+ "source\0"
401
418
  "sql\0"
402
419
  "stable\0"
403
420
  "standalone\0"
@@ -409,6 +426,7 @@ static const char ScanKeywords_kw_string[] =
409
426
  "storage\0"
410
427
  "stored\0"
411
428
  "strict\0"
429
+ "string\0"
412
430
  "strip\0"
413
431
  "subscription\0"
414
432
  "substring\0"
@@ -421,6 +439,7 @@ static const char ScanKeywords_kw_string[] =
421
439
  "tables\0"
422
440
  "tablesample\0"
423
441
  "tablespace\0"
442
+ "target\0"
424
443
  "temp\0"
425
444
  "template\0"
426
445
  "temporary\0"
@@ -444,6 +463,7 @@ static const char ScanKeywords_kw_string[] =
444
463
  "uescape\0"
445
464
  "unbounded\0"
446
465
  "uncommitted\0"
466
+ "unconditional\0"
447
467
  "unencrypted\0"
448
468
  "union\0"
449
469
  "unique\0"
@@ -564,534 +584,559 @@ static const uint16 ScanKeywords_kw_offsets[] = {
564
584
  480,
565
585
  492,
566
586
  505,
567
- 519,
568
- 528,
569
- 539,
570
- 550,
587
+ 517,
588
+ 531,
589
+ 540,
590
+ 551,
571
591
  562,
572
- 570,
573
- 579,
574
- 590,
575
- 595,
576
- 600,
592
+ 574,
593
+ 582,
594
+ 591,
595
+ 602,
577
596
  607,
578
- 613,
579
- 617,
580
- 622,
581
- 630,
582
- 646,
583
- 659,
584
- 672,
585
- 687,
586
- 700,
587
- 718,
588
- 731,
589
- 738,
590
- 744,
591
- 749,
592
- 758,
593
- 762,
594
- 773,
595
- 777,
597
+ 612,
598
+ 619,
599
+ 625,
600
+ 629,
601
+ 634,
602
+ 642,
603
+ 658,
604
+ 671,
605
+ 684,
606
+ 699,
607
+ 712,
608
+ 730,
609
+ 743,
610
+ 750,
611
+ 756,
612
+ 761,
613
+ 770,
614
+ 774,
596
615
  785,
597
- 793,
598
- 801,
599
- 810,
600
- 821,
601
- 830,
602
- 838,
603
- 845,
604
- 855,
605
- 866,
606
- 874,
607
- 880,
608
- 885,
616
+ 789,
617
+ 797,
618
+ 805,
619
+ 813,
620
+ 822,
621
+ 833,
622
+ 842,
623
+ 850,
624
+ 857,
625
+ 867,
626
+ 878,
627
+ 886,
609
628
  892,
610
- 903,
611
- 911,
612
- 919,
613
- 928,
629
+ 897,
630
+ 904,
631
+ 915,
632
+ 923,
614
633
  931,
615
634
  940,
616
- 947,
617
- 954,
635
+ 943,
636
+ 952,
618
637
  959,
619
- 964,
620
- 969,
638
+ 966,
639
+ 971,
621
640
  976,
622
- 985,
623
- 995,
624
- 999,
625
- 1004,
626
- 1011,
641
+ 981,
642
+ 987,
643
+ 994,
644
+ 1003,
645
+ 1013,
627
646
  1017,
628
- 1024,
629
- 1032,
630
- 1042,
631
- 1052,
632
- 1060,
633
- 1067,
634
- 1075,
635
- 1086,
636
- 1096,
637
- 1105,
638
- 1113,
639
- 1119,
640
- 1126,
641
- 1132,
642
- 1139,
643
- 1148,
644
- 1154,
645
- 1160,
646
- 1170,
647
- 1174,
648
- 1180,
649
- 1188,
650
- 1195,
651
- 1203,
652
- 1210,
653
- 1215,
654
- 1220,
655
- 1229,
647
+ 1022,
648
+ 1028,
649
+ 1035,
650
+ 1041,
651
+ 1048,
652
+ 1056,
653
+ 1066,
654
+ 1076,
655
+ 1084,
656
+ 1091,
657
+ 1099,
658
+ 1110,
659
+ 1120,
660
+ 1129,
661
+ 1137,
662
+ 1143,
663
+ 1150,
664
+ 1156,
665
+ 1163,
666
+ 1172,
667
+ 1178,
668
+ 1184,
669
+ 1194,
670
+ 1198,
671
+ 1204,
672
+ 1212,
673
+ 1219,
674
+ 1227,
675
+ 1234,
656
676
  1239,
657
- 1249,
658
- 1256,
659
- 1262,
660
- 1270,
661
- 1279,
662
- 1285,
677
+ 1244,
678
+ 1253,
679
+ 1263,
680
+ 1273,
681
+ 1280,
682
+ 1286,
663
683
  1294,
664
- 1301,
684
+ 1303,
665
685
  1309,
666
- 1316,
667
- 1323,
668
- 1328,
686
+ 1318,
687
+ 1325,
669
688
  1333,
670
- 1342,
671
- 1345,
672
- 1351,
673
- 1361,
674
- 1371,
675
- 1380,
676
- 1387,
677
- 1390,
678
- 1398,
679
- 1408,
680
- 1418,
681
- 1425,
682
- 1431,
683
- 1439,
684
- 1447,
685
- 1456,
686
- 1466,
687
- 1473,
688
- 1479,
689
- 1485,
690
- 1491,
689
+ 1340,
690
+ 1347,
691
+ 1352,
692
+ 1357,
693
+ 1366,
694
+ 1369,
695
+ 1375,
696
+ 1385,
697
+ 1395,
698
+ 1404,
699
+ 1411,
700
+ 1414,
701
+ 1422,
702
+ 1432,
703
+ 1442,
704
+ 1449,
705
+ 1455,
706
+ 1463,
707
+ 1471,
708
+ 1480,
709
+ 1490,
710
+ 1497,
691
711
  1503,
692
- 1510,
693
- 1518,
694
- 1522,
695
- 1530,
696
- 1540,
697
- 1549,
712
+ 1509,
713
+ 1515,
714
+ 1527,
715
+ 1534,
716
+ 1542,
717
+ 1546,
698
718
  1554,
699
- 1562,
700
- 1565,
701
- 1572,
702
- 1582,
703
- 1587,
704
- 1592,
705
- 1603,
706
- 1617,
707
- 1629,
708
- 1644,
709
- 1648,
719
+ 1564,
720
+ 1573,
721
+ 1578,
722
+ 1586,
723
+ 1589,
724
+ 1596,
725
+ 1606,
726
+ 1611,
727
+ 1616,
728
+ 1627,
729
+ 1641,
710
730
  1653,
711
- 1659,
712
- 1668,
713
- 1674,
714
- 1679,
715
- 1687,
716
- 1695,
717
- 1705,
718
- 1711,
719
- 1716,
720
- 1722,
721
- 1727,
722
- 1733,
731
+ 1665,
732
+ 1680,
733
+ 1691,
734
+ 1703,
735
+ 1718,
736
+ 1729,
723
737
  1740,
724
738
  1745,
725
- 1751,
726
- 1761,
727
- 1776,
728
- 1785,
729
- 1790,
730
- 1797,
731
- 1804,
739
+ 1749,
740
+ 1754,
741
+ 1760,
742
+ 1769,
743
+ 1775,
744
+ 1780,
745
+ 1788,
746
+ 1796,
747
+ 1806,
732
748
  1812,
733
- 1818,
734
- 1826,
735
- 1839,
736
- 1848,
737
- 1854,
738
- 1861,
739
- 1868,
749
+ 1817,
750
+ 1823,
751
+ 1828,
752
+ 1834,
753
+ 1841,
754
+ 1846,
755
+ 1852,
756
+ 1862,
740
757
  1877,
741
- 1882,
742
- 1888,
743
- 1893,
758
+ 1886,
759
+ 1891,
744
760
  1898,
745
- 1904,
761
+ 1905,
746
762
  1913,
747
- 1921,
763
+ 1919,
748
764
  1927,
749
- 1931,
750
- 1936,
751
765
  1940,
752
- 1944,
753
766
  1949,
754
- 1954,
755
- 1957,
756
- 1962,
757
- 1972,
758
- 1983,
759
- 1987,
760
- 1995,
767
+ 1955,
768
+ 1968,
769
+ 1975,
770
+ 1982,
771
+ 1991,
772
+ 1996,
761
773
  2002,
762
- 2010,
763
- 2017,
764
- 2022,
765
- 2029,
774
+ 2007,
775
+ 2012,
776
+ 2018,
777
+ 2027,
766
778
  2035,
767
- 2043,
768
- 2050,
769
- 2053,
779
+ 2041,
780
+ 2048,
781
+ 2052,
770
782
  2057,
771
- 2064,
772
- 2069,
773
- 2073,
774
- 2076,
775
- 2081,
776
- 2090,
777
- 2097,
778
- 2105,
783
+ 2061,
784
+ 2065,
785
+ 2070,
786
+ 2075,
787
+ 2078,
788
+ 2083,
789
+ 2093,
790
+ 2104,
779
791
  2108,
780
- 2114,
781
- 2125,
782
- 2132,
783
- 2136,
784
- 2142,
785
- 2147,
792
+ 2116,
793
+ 2123,
794
+ 2131,
795
+ 2138,
796
+ 2143,
797
+ 2150,
786
798
  2156,
787
799
  2164,
788
- 2175,
789
- 2181,
790
- 2187,
791
- 2196,
792
- 2206,
793
- 2213,
794
- 2221,
800
+ 2171,
801
+ 2174,
802
+ 2178,
803
+ 2185,
804
+ 2190,
805
+ 2194,
806
+ 2199,
807
+ 2202,
808
+ 2207,
809
+ 2216,
810
+ 2223,
795
811
  2231,
796
- 2239,
797
- 2248,
798
- 2256,
812
+ 2234,
813
+ 2240,
814
+ 2251,
815
+ 2258,
799
816
  2262,
800
- 2269,
801
- 2278,
802
- 2288,
803
- 2298,
804
- 2306,
805
- 2315,
806
- 2324,
817
+ 2268,
818
+ 2273,
819
+ 2282,
820
+ 2290,
821
+ 2301,
822
+ 2307,
823
+ 2313,
824
+ 2322,
807
825
  2332,
808
- 2338,
809
- 2349,
810
- 2360,
811
- 2370,
812
- 2381,
813
- 2389,
814
- 2401,
815
- 2407,
816
- 2413,
817
- 2418,
818
- 2423,
819
- 2432,
820
- 2440,
821
- 2450,
822
- 2454,
823
- 2465,
824
- 2477,
826
+ 2339,
827
+ 2347,
828
+ 2357,
829
+ 2365,
830
+ 2374,
831
+ 2379,
832
+ 2387,
833
+ 2392,
834
+ 2398,
835
+ 2405,
836
+ 2414,
837
+ 2424,
838
+ 2434,
839
+ 2442,
840
+ 2451,
841
+ 2460,
842
+ 2468,
843
+ 2474,
825
844
  2485,
826
- 2493,
827
- 2502,
828
- 2510,
845
+ 2496,
846
+ 2506,
829
847
  2517,
830
- 2528,
831
- 2536,
832
- 2544,
848
+ 2525,
849
+ 2537,
850
+ 2543,
833
851
  2550,
834
- 2558,
835
- 2567,
836
- 2574,
837
- 2584,
838
- 2592,
839
- 2599,
840
- 2605,
841
- 2610,
842
- 2619,
843
- 2626,
844
- 2634,
845
- 2643,
846
- 2647,
847
- 2652,
848
- 2657,
849
- 2667,
850
- 2674,
851
- 2681,
852
- 2689,
853
- 2696,
854
- 2703,
852
+ 2556,
853
+ 2561,
854
+ 2566,
855
+ 2575,
856
+ 2583,
857
+ 2593,
858
+ 2597,
859
+ 2608,
860
+ 2620,
861
+ 2628,
862
+ 2636,
863
+ 2645,
864
+ 2653,
865
+ 2660,
866
+ 2671,
867
+ 2679,
868
+ 2687,
869
+ 2693,
870
+ 2701,
855
871
  2710,
856
- 2719,
857
- 2726,
872
+ 2717,
873
+ 2727,
858
874
  2735,
859
- 2745,
860
- 2758,
861
- 2765,
862
- 2773,
875
+ 2742,
876
+ 2748,
877
+ 2753,
878
+ 2762,
879
+ 2769,
880
+ 2777,
863
881
  2786,
864
882
  2790,
865
- 2796,
866
- 2801,
867
- 2807,
868
- 2812,
869
- 2820,
870
- 2827,
883
+ 2795,
884
+ 2800,
885
+ 2810,
886
+ 2817,
887
+ 2824,
871
888
  2832,
872
- 2841,
873
- 2850,
874
- 2855,
875
- 2859,
876
- 2866,
877
- 2877,
878
- 2883,
879
- 2893,
880
- 2904,
881
- 2910,
882
- 2917,
883
- 2925,
884
- 2932,
889
+ 2839,
890
+ 2846,
891
+ 2853,
892
+ 2862,
893
+ 2869,
894
+ 2878,
895
+ 2888,
896
+ 2901,
897
+ 2908,
898
+ 2916,
899
+ 2929,
900
+ 2933,
885
901
  2939,
886
- 2945,
887
- 2958,
888
- 2968,
889
- 2976,
890
- 2986,
891
- 2992,
892
- 2999,
893
- 3011,
894
- 3017,
895
- 3024,
896
- 3036,
897
- 3047,
898
- 3052,
899
- 3061,
900
- 3071,
901
- 3076,
902
- 3081,
903
- 3086,
904
- 3091,
905
- 3101,
906
- 3104,
907
- 3113,
902
+ 2944,
903
+ 2950,
904
+ 2955,
905
+ 2963,
906
+ 2970,
907
+ 2975,
908
+ 2984,
909
+ 2993,
910
+ 2998,
911
+ 3005,
912
+ 3009,
913
+ 3016,
914
+ 3027,
915
+ 3033,
916
+ 3043,
917
+ 3054,
918
+ 3060,
919
+ 3067,
920
+ 3075,
921
+ 3082,
922
+ 3089,
923
+ 3096,
924
+ 3102,
925
+ 3115,
908
926
  3125,
909
- 3135,
910
- 3141,
927
+ 3133,
928
+ 3143,
911
929
  3149,
912
- 3154,
913
- 3159,
930
+ 3156,
914
931
  3168,
915
- 3176,
932
+ 3174,
916
933
  3181,
917
- 3187,
918
- 3195,
919
- 3205,
920
- 3217,
921
- 3229,
934
+ 3193,
935
+ 3204,
936
+ 3211,
937
+ 3216,
938
+ 3225,
922
939
  3235,
923
- 3242,
940
+ 3240,
941
+ 3245,
924
942
  3250,
925
- 3259,
943
+ 3255,
944
+ 3265,
926
945
  3268,
927
- 3274,
928
- 3281,
929
- 3286,
930
- 3292,
946
+ 3277,
947
+ 3289,
931
948
  3299,
932
949
  3305,
933
- 3314,
934
- 3324,
935
- 3330,
936
- 3337,
950
+ 3313,
951
+ 3318,
952
+ 3323,
953
+ 3332,
954
+ 3340,
937
955
  3345,
938
- 3354,
939
- 3362,
940
- 3370,
941
- 3378,
942
- 3383,
943
- 3389,
944
- 3398,
945
- 3403,
946
- 3409,
956
+ 3351,
957
+ 3359,
958
+ 3369,
959
+ 3381,
960
+ 3395,
961
+ 3407,
962
+ 3413,
947
963
  3420,
948
- 3427,
949
- 3432,
950
- 3439,
951
- 3447,
964
+ 3428,
965
+ 3437,
966
+ 3446,
952
967
  3452,
953
- 3460,
954
- 3466,
968
+ 3459,
969
+ 3464,
955
970
  3470,
956
- 3484,
957
- 3494,
958
- 3505,
971
+ 3477,
972
+ 3483,
973
+ 3492,
974
+ 3502,
975
+ 3508,
959
976
  3515,
960
- 3525,
961
- 3539,
977
+ 3523,
978
+ 3532,
979
+ 3540,
962
980
  3548,
963
- 3554,
964
- 3562,
965
- 3575,
966
- 3584,
967
- 3589,
968
- 3593,
981
+ 3556,
982
+ 3561,
983
+ 3567,
984
+ 3576,
985
+ 3581,
986
+ 3587,
987
+ 3598,
988
+ 3605,
989
+ 3610,
990
+ 3617,
991
+ 3625,
992
+ 3630,
993
+ 3638,
994
+ 3644,
995
+ 3648,
996
+ 3662,
997
+ 3672,
998
+ 3683,
999
+ 3693,
1000
+ 3703,
1001
+ 3717,
1002
+ 3726,
1003
+ 3732,
1004
+ 3740,
1005
+ 3753,
1006
+ 3762,
1007
+ 3767,
1008
+ 3771,
969
1009
  };
970
1010
 
971
- #define SCANKEYWORDS_NUM_KEYWORDS 471
1011
+ #define SCANKEYWORDS_NUM_KEYWORDS 491
972
1012
 
973
1013
  static int
974
1014
  ScanKeywords_hash_func(const void *key, size_t keylen)
975
1015
  {
976
- static const int16 h[943] = {
977
- 543, -186, 201, 0, 32767, 32767, 32767, 32767,
978
- 221, -207, 32767, 0, 135, 283, 32767, 454,
979
- 14, 79, 32767, 32767, 77, 32767, 102, 160,
980
- 0, 32767, 151, 32767, 30, 392, -322, 452,
981
- 32767, 0, 32767, 0, 0, 32767, 32767, 32767,
982
- 234, 32767, 0, 32767, 0, 631, 32767, 368,
983
- 80, 0, 0, -115, 32767, 285, 32767, 423,
984
- 0, 32767, 155, 229, 32767, 126, 291, 165,
985
- -22, 400, 327, 32767, 32767, 32767, 32767, -399,
986
- 0, 406, 32767, 210, 1102, -203, 32767, 32767,
987
- 32767, -944, 0, -188, 32767, 32767, 0, 347,
988
- 32767, 0, 559, 316, 133, 32767, 202, 32767,
989
- 305, 0, 32767, -94, 32767, 0, 32767, -222,
990
- 32767, 138, 32767, -52, 32767, 32767, 279, 69,
991
- -136, 0, 32767, 32767, 189, 32767, 32767, 88,
992
- 0, 32767, 32767, 274, 32767, 514, 769, 248,
993
- 32767, 32767, 32767, 32767, 32767, 32767, 0, 81,
994
- 8, -29, 32767, 32767, 32767, -174, 258, 0,
995
- 465, 211, 32767, 0, -229, 32767, -191, 32767,
996
- 1263, 48, 32767, 343, 0, 58, 0, 32767,
997
- 32767, 855, 0, 415, 0, -217, 32767, 1195,
998
- 32767, 32767, 166, 32767, 42, 262, -736, 0,
999
- 32767, 32767, 418, 178, 122, 32767, 46, 32767,
1000
- 32767, 32767, 229, 443, 32767, 32767, 250, 32767,
1001
- -300, 0, 32767, 1153, 32767, 108, 32767, -462,
1002
- 266, 32767, 478, -220, 235, 32767, 32767, -127,
1003
- 32767, 32767, 32767, 427, -231, 156, 32767, 0,
1004
- 0, 148, -218, 142, 73, 420, 32767, 32767,
1005
- 523, 32767, -36, 32767, 32767, 467, 844, -415,
1006
- 32767, 32767, -148, 179, 361, 32767, 151, 0,
1007
- 0, 32767, 145, 32767, 248, 110, 29, 125,
1008
- 282, 32767, -36, 43, 32767, 1125, 32767, 530,
1009
- 251, 519, 191, 0, 32767, -34, -502, 313,
1010
- 462, 845, 32767, 32767, -255, 412, 32767, 78,
1011
- 0, 32767, 444, 161, 0, 32767, 308, 32767,
1012
- -273, 400, 32767, 296, 32767, 32767, 72, 32767,
1013
- 32767, 34, 32767, 364, 151, -63, 4, 229,
1014
- 0, -276, 32767, 32767, 32767, 32767, -406, 32767,
1015
- 203, 32767, 140, 187, 160, 32767, 286, 0,
1016
- 32767, 32767, -88, 0, 100, -361, 32767, 9,
1017
- 0, -456, 32767, -37, -404, 32767, -969, 32767,
1018
- 371, 95, 0, 703, -31, 263, 373, -745,
1019
- 507, 14, 32767, -159, 0, 32767, 47, 299,
1020
- -126, 0, 32767, 83, 32767, 32767, 420, 236,
1021
- 32767, 32767, 0, 310, 89, 233, 32767, 93,
1022
- 32767, 0, 816, 60, 301, 211, 193, 0,
1023
- 452, -107, -403, -242, 353, 18, 32767, 32767,
1024
- 32767, 243, 104, 32767, 32767, 32767, -305, 32767,
1025
- -1048, 54, 0, 383, 32767, 32767, 32767, 226,
1026
- 319, 0, 32767, 32767, 32767, -130, 537, 32767,
1027
- 0, -206, 240, 696, 121, 32767, 180, 164,
1028
- 32767, 390, 185, 32767, 220, 545, 29, 32767,
1029
- 0, 32767, 32767, 1120, -163, 32767, 32767, 32767,
1030
- -368, 136, 445, 171, 233, 32767, 73, 32767,
1031
- 92, 32767, 0, 32767, 0, 208, 354, 32767,
1032
- 54, 32767, 32767, -246, -93, 389, 32767, 32767,
1033
- 32767, 32767, 50, 32767, 32767, 308, 32767, -278,
1034
- 0, 32767, 32767, -1172, 32767, 8, 32767, 0,
1035
- 32767, 341, 304, 242, -174, -92, 76, 419,
1036
- 32767, 87, 32767, -262, 32767, 32767, 32767, 109,
1037
- 200, 0, 32767, 0, 85, 530, 32767, -316,
1038
- 32767, 0, -286, 32767, 193, 268, 32767, 32767,
1039
- 278, 32767, 32767, 155, 445, 95, -310, 32767,
1040
- 207, -56, 32767, 32767, 0, -127, 232, -283,
1041
- 103, 32767, 1, 0, 32767, 32767, -485, 350,
1042
- 79, -56, -354, 32767, 121, 24, 81, 20,
1043
- 325, 40, 248, 32767, 32767, 32767, 358, 32767,
1044
- -56, 32767, 0, 174, -28, -301, -92, 32767,
1045
- 114, 295, 32767, 363, -355, 32767, 290, 0,
1046
- 32767, 32767, 32767, 122, 55, -142, 32767, 50,
1047
- 32767, 32767, 152, 571, 1397, 0, 472, -448,
1048
- 185, 140, 228, 435, 0, 32767, 32767, 414,
1049
- 32767, 379, 92, 185, 23, 299, 32767, 32767,
1050
- 0, 32767, 32767, 32767, 306, 439, -198, 219,
1051
- 340, 32767, 416, 0, -123, 377, 32767, 32767,
1052
- 0, 32767, 670, -670, 339, 32767, 32767, 32767,
1053
- 0, -256, 70, 514, 331, 0, 302, 469,
1054
- 0, 370, 32767, 32767, 42, 255, 212, 0,
1055
- 322, 277, 32767, -163, 32767, 216, 32767, 32767,
1056
- 0, 32767, 190, 32767, 32767, 0, 32767, 0,
1057
- -409, 1366, 32767, 32767, 32767, 193, 32767, 325,
1058
- 32767, 0, 142, 466, 32767, 32767, 32767, 113,
1059
- 32767, 32767, 62, 0, -62, 113, -90, 34,
1060
- -256, 32767, 32767, -936, 32767, 32767, 32767, 0,
1061
- -64, 0, -34, 451, 290, 108, 32767, 276,
1062
- 842, 0, 556, -153, 32767, 412, -168, 32767,
1063
- 32767, 1331, 407, 234, -60, 115, 457, -73,
1064
- 502, 772, 32767, 33, 404, -925, 32767, 32767,
1065
- 421, -123, 32767, 32767, 32767, 0, 0, 32767,
1066
- 32767, 32767, 429, 0, 3, 769, -81, 306,
1067
- 64, 32767, 192, 96, 0, 63, 44, 32767,
1068
- 32767, 32767, 32767, 0, 284, 32767, 575, 32767,
1069
- 32767, 12, 32767, 516, 116, 32767, 32767, 150,
1070
- 442, 134, 32767, 198, -45, 249, 40, 373,
1071
- 32767, 0, 32767, 32767, 0, 0, 352, 32767,
1072
- 117, 32767, 426, 0, 0, 32767, 32767, 32767,
1073
- 32767, -92, 32767, -442, 32767, 269, 32767, 32767,
1074
- 32767, 429, 32767, 0, 32767, 0, 143, 32767,
1075
- 508, -66, 32767, 280, 32767, 39, 162, 32767,
1076
- 32767, 0, 32767, 31, 32767, 32767, 32767, 0,
1077
- 32767, 257, -90, -249, 224, 272, 32767, 32767,
1078
- 313, -467, 214, 0, -85, 32767, 48, 0,
1079
- 32767, -336, 202, 0, 447, 90, 264, 32767,
1080
- 32767, 0, 101, 32767, 32767, 32767, 0, 32767,
1081
- 32767, 227, -1093, 32767, 0, 32767, 27, 174,
1082
- 32767, 7, 32767, -621, 146, 32767, 32767, 32767,
1083
- 854, 0, 32767, 161, 0, 137, 32767, 32767,
1084
- 32767, 32767, 0, 391, 219, 276, 32767, 168,
1085
- 32767, 32767, 0, 32767, 32767, 32767, 1, -4,
1086
- 32767, 0, 293, 0, 374, 256, 0, 0,
1087
- 32767, 355, 212, 404, 0, 186, 32767, 0,
1088
- 359, 32767, 32767, 172, 32767, 32767, -131, 0,
1089
- 402, 0, 56, 32767, 462, 389, 82, 0,
1090
- 32767, 0, 32767, 0, 32767, 32767, 32767, 32767,
1091
- 106, 425, -160, 31, 32767, 55, 0, 0,
1092
- 32767, 32767, 430, 1224, 179, -179, 0, 397,
1093
- 32767, 0, 0, 0, -60, 47, 32767, 396,
1094
- 32767, 326, 383, 369, 32767, 368, 32767
1016
+ static const int16 h[983] = {
1017
+ 283, 32767, 500, 226, 291, 32767, 32767, 32767,
1018
+ 467, 152, 66, 291, -300, 32767, -427, -45,
1019
+ 0, 219, 224, 189, 32767, 195, 0, -507,
1020
+ 324, 32767, 300, 32767, 0, 32767, 161, 32767,
1021
+ 32767, 32767, 32767, 131, 32767, 101, 32767, 391,
1022
+ 32767, 32767, 32767, 0, 2, 32767, 128, 418,
1023
+ -291, 32767, 32767, -631, 32767, 250, 219, -142,
1024
+ 133, 334, 32767, 0, 170, 32767, 516, 32767,
1025
+ 307, 288, 391, 32767, 216, 319, 0, 32767,
1026
+ 152, 32767, 375, 444, 433, 32767, 242, 32767,
1027
+ 4, -119, 481, -13, 32767, 32767, -94, 0,
1028
+ 290, -113, 32767, 137, 122, 120, 32767, 32767,
1029
+ 32767, 414, -397, -45, -267, -5, 605, 32767,
1030
+ 453, 514, 32767, 400, 32767, 32767, 32767, 32767,
1031
+ 361, 150, 32767, 107, 172, -32, 81, -232,
1032
+ -15, 830, -46, 32767, 32767, 32767, 543, -341,
1033
+ 0, 32767, 288, 488, 32767, 43, 410, -99,
1034
+ 32767, 384, 32767, 32767, 315, 32767, -419, -458,
1035
+ 0, -459, 0, 232, 32767, 32767, 333, -413,
1036
+ 32767, 584, -76, 0, -6, 125, 32767, 421,
1037
+ 32767, 32767, -88, 128, -1, 15, 55, 32767,
1038
+ 214, 32767, 0, 0, 166, 348, -337, 32767,
1039
+ 260, 319, 32767, 180, 158, 0, 32767, 0,
1040
+ -226, 0, 129, 0, 378, 517, -293, 671,
1041
+ 32767, 32767, 0, 167, 305, -61, -229, 97,
1042
+ 164, 88, 380, 50, 32767, 71, -637, 106,
1043
+ 32767, 79, 0, 415, 32767, 0, 32767, 317,
1044
+ 379, 28, 431, 0, 32767, 32767, 301, 185,
1045
+ 196, 37, 32767, 142, 200, 32767, -211, -223,
1046
+ -392, 99, 32767, -366, 32767, 287, 32767, 0,
1047
+ -309, 0, 32767, -963, 32767, 222, 432, 32767,
1048
+ 32767, 0, 32767, 32767, 266, 56, 0, 32767,
1049
+ 391, 606, 32767, 32767, 360, 0, 60, 32767,
1050
+ 32767, 0, 32767, 0, 325, 32767, 333, 32767,
1051
+ -54, 399, 0, 28, 237, -648, 32767, 108,
1052
+ 438, 32767, 221, 390, 32767, 32767, 223, 687,
1053
+ 452, 125, 32767, -913, 186, 0, 32767, 32767,
1054
+ 32767, 32767, 0, 0, 32767, 32767, 32767, -27,
1055
+ 1087, 464, -305, 427, 898, 32767, 0, 32767,
1056
+ 0, 32767, 104, 32767, 32767, 260, 1065, 0,
1057
+ 703, 32767, 0, 337, 350, 767, 32767, -330,
1058
+ 379, 32767, 32767, 32767, 32767, 32767, 32767, 228,
1059
+ 32767, 32767, 32767, 0, -87, -48, 32767, -541,
1060
+ 415, 32767, 306, 32767, 32767, 32767, -117, 15,
1061
+ 0, 0, 32767, 412, -645, 223, -558, 32767,
1062
+ 32767, 32767, 32767, 32767, -254, 162, -372, 0,
1063
+ 0, 32767, 353, 0, 199, 32767, 664, 32767,
1064
+ 32767, 0, 32767, -148, 32767, -98, 32767, 449,
1065
+ 0, 32767, 383, -495, -295, 208, 0, 32767,
1066
+ 511, 17, 32767, 32767, 0, 387, 32767, 32767,
1067
+ 32767, 0, 32767, 32767, 2, -2, -177, 32767,
1068
+ 0, 32767, 150, 32767, -471, 32767, -282, 32767,
1069
+ 240, 183, 357, 423, 32767, 435, 32767, 284,
1070
+ 32767, 358, 298, 195, 72, 0, 421, 535,
1071
+ 32767, 426, -206, 222, 32767, 0, 466, 36,
1072
+ 426, 32767, 32767, 0, 32767, 0, 32767, 70,
1073
+ 479, 32767, 514, 32767, 32767, 697, 436, 43,
1074
+ 155, 32767, 32767, 0, 32767, -155, 32767, 11,
1075
+ 649, -376, 32767, 0, -683, -330, 361, 0,
1076
+ 57, 263, -43, 32767, 383, 0, 32767, 217,
1077
+ 32767, 0, 478, 32767, 0, 32767, 463, 32767,
1078
+ 501, 32767, 237, 301, 545, 302, 67, 311,
1079
+ 1135, 152, 0, 342, 32767, 350, 418, 32767,
1080
+ 0, 428, 0, 0, -353, 381, 790, 32767,
1081
+ 32767, -259, 32767, 32767, 32767, 229, 417, 0,
1082
+ 232, 32767, 0, 980, 32767, 0, 0, 275,
1083
+ -314, 0, 0, 32767, 32767, 32767, 32767, 32767,
1084
+ 0, 0, -89, 292, 1049, 32767, 32767, -284,
1085
+ 18, 32767, 175, 0, 732, 111, 32767, 428,
1086
+ -167, 92, -59, 199, 0, 793, 702, -231,
1087
+ 32767, 32767, 32767, 32767, 187, 549, 32767, 32767,
1088
+ 32767, 32767, 69, 480, 0, 490, 430, 32767,
1089
+ 32767, 32767, 32767, -2, 32767, 240, 32767, 471,
1090
+ 275, 32767, 524, 17, 0, 32767, 144, 0,
1091
+ 310, 371, 328, 1016, -639, 32767, 51, 32767,
1092
+ -982, 32767, 0, -727, 32767, 32767, -117, -115,
1093
+ 249, 32767, 32767, -6, 32767, 183, -350, 32767,
1094
+ 14, 32767, 32767, 118, -137, -321, 32767, 793,
1095
+ 32767, 32767, 32767, 0, 32767, 77, 204, 71,
1096
+ 32767, -228, -516, 32767, 790, 389, -1, 112,
1097
+ 366, 245, 32767, 0, 32767, 0, -625, 154,
1098
+ -211, 32767, 32767, 105, -253, 214, 0, 203,
1099
+ 392, 0, 32767, 32767, 62, 102, 32767, 32767,
1100
+ 29, 0, 0, 306, 32767, 32767, -29, 194,
1101
+ 0, -120, 32767, 32767, 32767, 376, 32767, 27,
1102
+ 32767, 356, 32767, 0, 32767, 75, 174, 32767,
1103
+ 32767, 32767, -37, 32767, 255, 124, 845, 32767,
1104
+ 0, 32767, 64, 32767, -472, -648, 32767, 584,
1105
+ 0, 32767, 19, 201, 32767, 0, 32767, 32767,
1106
+ -414, -171, -621, 32767, -134, 0, 515, 0,
1107
+ 767, 32767, 32767, 414, 32767, -88, -236, 32767,
1108
+ -52, 298, -254, 32767, 39, 0, 65, 118,
1109
+ 32767, 182, 32767, 134, 0, 32767, 32767, 400,
1110
+ 0, 32767, 32767, 705, 0, 32767, 32767, 269,
1111
+ 32767, 32767, 296, 290, 32767, 0, 0, 32767,
1112
+ 61, 32767, 299, 32767, -227, 240, 32767, 0,
1113
+ 32767, 32767, 32767, 129, 32767, 0, 252, 32767,
1114
+ 0, -487, 32767, 0, -127, 32767, 32767, 132,
1115
+ 18, 0, 32767, 32767, -154, 0, 946, 401,
1116
+ 264, 378, 0, 326, 32767, 0, 465, 233,
1117
+ 87, 32767, 47, 0, -357, 32767, 32767, 0,
1118
+ 0, -245, 835, 887, 32767, 32767, 32767, 32767,
1119
+ 32767, 334, 0, -56, 32767, -196, 0, 32767,
1120
+ 32767, 32767, 154, 32767, 20, -175, 63, 537,
1121
+ 32767, 358, 32767, 121, 32767, 32767, 754, 0,
1122
+ 32767, 0, -113, 0, 0, 207, 0, -256,
1123
+ 32767, 241, 32767, 257, 32767, 194, -595, 23,
1124
+ 19, 268, 666, 231, 0, 211, 32767, 32767,
1125
+ 32767, 32767, 0, 115, 136, 0, 32767, 32767,
1126
+ 404, -252, -432, 0, 0, 341, 32767, 410,
1127
+ 32767, -125, 9, 32767, 482, 727, 0, 32767,
1128
+ 252, 0, 32767, 32767, 147, 124, 270, 10,
1129
+ -124, 47, 0, 300, 445, -246, 32767, 111,
1130
+ 32767, 32767, 32767, -356, 103, 81, 32767, 32767,
1131
+ 32767, 32767, 280, 306, 0, 32767, 695, 32767,
1132
+ -768, 32767, 32767, 0, 32767, 0, 32767, 145,
1133
+ 44, 32767, 32767, 32767, 432, 136, 32767, 0,
1134
+ -903, 251, 32767, -222, 370, 405, 99, 17,
1135
+ 32767, 564, 32767, 32767, 32767, 0, 32767, 32767,
1136
+ 32767, 141, 0, 0, 32767, 32767, 32767, 344,
1137
+ 0, 464, 0, 0, 32767, 32767, 32767, 0,
1138
+ 463, 32767, 32767, 329, 32767, 32767, 422, 32767,
1139
+ 220, 32767, 347, 32767, -17, 253, 18
1095
1140
  };
1096
1141
 
1097
1142
  const unsigned char *k = (const unsigned char *) key;
@@ -1105,7 +1150,7 @@ ScanKeywords_hash_func(const void *key, size_t keylen)
1105
1150
  a = a * 257 + c;
1106
1151
  b = b * 31 + c;
1107
1152
  }
1108
- return h[a % 943] + h[b % 943];
1153
+ return h[a % 983] + h[b % 983];
1109
1154
  }
1110
1155
 
1111
1156
  const ScanKeywordList ScanKeywords = {