pg_query 2.0.0 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (375) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +6 -0
  3. data/ext/pg_query/include/access/amapi.h +246 -0
  4. data/ext/pg_query/include/access/attmap.h +52 -0
  5. data/ext/pg_query/include/access/attnum.h +64 -0
  6. data/ext/pg_query/include/access/clog.h +61 -0
  7. data/ext/pg_query/include/access/commit_ts.h +77 -0
  8. data/ext/pg_query/include/access/detoast.h +92 -0
  9. data/ext/pg_query/include/access/genam.h +228 -0
  10. data/ext/pg_query/include/access/gin.h +78 -0
  11. data/ext/pg_query/include/access/htup.h +89 -0
  12. data/ext/pg_query/include/access/htup_details.h +819 -0
  13. data/ext/pg_query/include/access/itup.h +161 -0
  14. data/ext/pg_query/include/access/parallel.h +82 -0
  15. data/ext/pg_query/include/access/printtup.h +35 -0
  16. data/ext/pg_query/include/access/relation.h +28 -0
  17. data/ext/pg_query/include/access/relscan.h +176 -0
  18. data/ext/pg_query/include/access/rmgr.h +35 -0
  19. data/ext/pg_query/include/access/rmgrlist.h +49 -0
  20. data/ext/pg_query/include/access/sdir.h +58 -0
  21. data/ext/pg_query/include/access/skey.h +151 -0
  22. data/ext/pg_query/include/access/stratnum.h +83 -0
  23. data/ext/pg_query/include/access/sysattr.h +29 -0
  24. data/ext/pg_query/include/access/table.h +27 -0
  25. data/ext/pg_query/include/access/tableam.h +1825 -0
  26. data/ext/pg_query/include/access/transam.h +265 -0
  27. data/ext/pg_query/include/access/tupconvert.h +51 -0
  28. data/ext/pg_query/include/access/tupdesc.h +154 -0
  29. data/ext/pg_query/include/access/tupmacs.h +247 -0
  30. data/ext/pg_query/include/access/twophase.h +61 -0
  31. data/ext/pg_query/include/access/xact.h +463 -0
  32. data/ext/pg_query/include/access/xlog.h +398 -0
  33. data/ext/pg_query/include/access/xlog_internal.h +330 -0
  34. data/ext/pg_query/include/access/xlogdefs.h +109 -0
  35. data/ext/pg_query/include/access/xloginsert.h +64 -0
  36. data/ext/pg_query/include/access/xlogreader.h +327 -0
  37. data/ext/pg_query/include/access/xlogrecord.h +227 -0
  38. data/ext/pg_query/include/bootstrap/bootstrap.h +62 -0
  39. data/ext/pg_query/include/c.h +1322 -0
  40. data/ext/pg_query/include/catalog/catalog.h +42 -0
  41. data/ext/pg_query/include/catalog/catversion.h +58 -0
  42. data/ext/pg_query/include/catalog/dependency.h +275 -0
  43. data/ext/pg_query/include/catalog/genbki.h +64 -0
  44. data/ext/pg_query/include/catalog/index.h +199 -0
  45. data/ext/pg_query/include/catalog/indexing.h +366 -0
  46. data/ext/pg_query/include/catalog/namespace.h +188 -0
  47. data/ext/pg_query/include/catalog/objectaccess.h +197 -0
  48. data/ext/pg_query/include/catalog/objectaddress.h +84 -0
  49. data/ext/pg_query/include/catalog/pg_aggregate.h +176 -0
  50. data/ext/pg_query/include/catalog/pg_aggregate_d.h +77 -0
  51. data/ext/pg_query/include/catalog/pg_am.h +60 -0
  52. data/ext/pg_query/include/catalog/pg_am_d.h +45 -0
  53. data/ext/pg_query/include/catalog/pg_attribute.h +204 -0
  54. data/ext/pg_query/include/catalog/pg_attribute_d.h +59 -0
  55. data/ext/pg_query/include/catalog/pg_authid.h +58 -0
  56. data/ext/pg_query/include/catalog/pg_authid_d.h +49 -0
  57. data/ext/pg_query/include/catalog/pg_class.h +200 -0
  58. data/ext/pg_query/include/catalog/pg_class_d.h +103 -0
  59. data/ext/pg_query/include/catalog/pg_collation.h +73 -0
  60. data/ext/pg_query/include/catalog/pg_collation_d.h +45 -0
  61. data/ext/pg_query/include/catalog/pg_constraint.h +247 -0
  62. data/ext/pg_query/include/catalog/pg_constraint_d.h +67 -0
  63. data/ext/pg_query/include/catalog/pg_control.h +250 -0
  64. data/ext/pg_query/include/catalog/pg_conversion.h +72 -0
  65. data/ext/pg_query/include/catalog/pg_conversion_d.h +35 -0
  66. data/ext/pg_query/include/catalog/pg_depend.h +73 -0
  67. data/ext/pg_query/include/catalog/pg_depend_d.h +34 -0
  68. data/ext/pg_query/include/catalog/pg_event_trigger.h +51 -0
  69. data/ext/pg_query/include/catalog/pg_event_trigger_d.h +34 -0
  70. data/ext/pg_query/include/catalog/pg_index.h +80 -0
  71. data/ext/pg_query/include/catalog/pg_index_d.h +56 -0
  72. data/ext/pg_query/include/catalog/pg_language.h +67 -0
  73. data/ext/pg_query/include/catalog/pg_language_d.h +39 -0
  74. data/ext/pg_query/include/catalog/pg_namespace.h +59 -0
  75. data/ext/pg_query/include/catalog/pg_namespace_d.h +34 -0
  76. data/ext/pg_query/include/catalog/pg_opclass.h +85 -0
  77. data/ext/pg_query/include/catalog/pg_opclass_d.h +49 -0
  78. data/ext/pg_query/include/catalog/pg_operator.h +102 -0
  79. data/ext/pg_query/include/catalog/pg_operator_d.h +106 -0
  80. data/ext/pg_query/include/catalog/pg_opfamily.h +60 -0
  81. data/ext/pg_query/include/catalog/pg_opfamily_d.h +47 -0
  82. data/ext/pg_query/include/catalog/pg_partitioned_table.h +63 -0
  83. data/ext/pg_query/include/catalog/pg_partitioned_table_d.h +35 -0
  84. data/ext/pg_query/include/catalog/pg_proc.h +211 -0
  85. data/ext/pg_query/include/catalog/pg_proc_d.h +99 -0
  86. data/ext/pg_query/include/catalog/pg_publication.h +115 -0
  87. data/ext/pg_query/include/catalog/pg_publication_d.h +36 -0
  88. data/ext/pg_query/include/catalog/pg_replication_origin.h +57 -0
  89. data/ext/pg_query/include/catalog/pg_replication_origin_d.h +29 -0
  90. data/ext/pg_query/include/catalog/pg_statistic.h +275 -0
  91. data/ext/pg_query/include/catalog/pg_statistic_d.h +194 -0
  92. data/ext/pg_query/include/catalog/pg_statistic_ext.h +74 -0
  93. data/ext/pg_query/include/catalog/pg_statistic_ext_d.h +40 -0
  94. data/ext/pg_query/include/catalog/pg_transform.h +45 -0
  95. data/ext/pg_query/include/catalog/pg_transform_d.h +32 -0
  96. data/ext/pg_query/include/catalog/pg_trigger.h +137 -0
  97. data/ext/pg_query/include/catalog/pg_trigger_d.h +106 -0
  98. data/ext/pg_query/include/catalog/pg_ts_config.h +50 -0
  99. data/ext/pg_query/include/catalog/pg_ts_config_d.h +32 -0
  100. data/ext/pg_query/include/catalog/pg_ts_dict.h +54 -0
  101. data/ext/pg_query/include/catalog/pg_ts_dict_d.h +33 -0
  102. data/ext/pg_query/include/catalog/pg_ts_parser.h +57 -0
  103. data/ext/pg_query/include/catalog/pg_ts_parser_d.h +35 -0
  104. data/ext/pg_query/include/catalog/pg_ts_template.h +48 -0
  105. data/ext/pg_query/include/catalog/pg_ts_template_d.h +32 -0
  106. data/ext/pg_query/include/catalog/pg_type.h +372 -0
  107. data/ext/pg_query/include/catalog/pg_type_d.h +285 -0
  108. data/ext/pg_query/include/catalog/storage.h +48 -0
  109. data/ext/pg_query/include/commands/async.h +54 -0
  110. data/ext/pg_query/include/commands/dbcommands.h +35 -0
  111. data/ext/pg_query/include/commands/defrem.h +173 -0
  112. data/ext/pg_query/include/commands/event_trigger.h +88 -0
  113. data/ext/pg_query/include/commands/explain.h +127 -0
  114. data/ext/pg_query/include/commands/prepare.h +61 -0
  115. data/ext/pg_query/include/commands/tablespace.h +67 -0
  116. data/ext/pg_query/include/commands/trigger.h +277 -0
  117. data/ext/pg_query/include/commands/user.h +37 -0
  118. data/ext/pg_query/include/commands/vacuum.h +293 -0
  119. data/ext/pg_query/include/commands/variable.h +38 -0
  120. data/ext/pg_query/include/common/file_perm.h +56 -0
  121. data/ext/pg_query/include/common/hashfn.h +104 -0
  122. data/ext/pg_query/include/common/ip.h +37 -0
  123. data/ext/pg_query/include/common/keywords.h +33 -0
  124. data/ext/pg_query/include/common/kwlookup.h +44 -0
  125. data/ext/pg_query/include/common/relpath.h +90 -0
  126. data/ext/pg_query/include/common/string.h +19 -0
  127. data/ext/pg_query/include/common/unicode_combining_table.h +196 -0
  128. data/ext/pg_query/include/datatype/timestamp.h +197 -0
  129. data/ext/pg_query/include/executor/execdesc.h +70 -0
  130. data/ext/pg_query/include/executor/executor.h +614 -0
  131. data/ext/pg_query/include/executor/functions.h +41 -0
  132. data/ext/pg_query/include/executor/instrument.h +101 -0
  133. data/ext/pg_query/include/executor/spi.h +175 -0
  134. data/ext/pg_query/include/executor/tablefunc.h +67 -0
  135. data/ext/pg_query/include/executor/tuptable.h +487 -0
  136. data/ext/pg_query/include/fmgr.h +775 -0
  137. data/ext/pg_query/include/funcapi.h +348 -0
  138. data/ext/pg_query/include/getaddrinfo.h +162 -0
  139. data/ext/pg_query/include/jit/jit.h +105 -0
  140. data/ext/pg_query/include/kwlist_d.h +1072 -0
  141. data/ext/pg_query/include/lib/ilist.h +727 -0
  142. data/ext/pg_query/include/lib/pairingheap.h +102 -0
  143. data/ext/pg_query/include/lib/simplehash.h +1059 -0
  144. data/ext/pg_query/include/lib/stringinfo.h +161 -0
  145. data/ext/pg_query/include/libpq/auth.h +29 -0
  146. data/ext/pg_query/include/libpq/crypt.h +46 -0
  147. data/ext/pg_query/include/libpq/hba.h +140 -0
  148. data/ext/pg_query/include/libpq/libpq-be.h +326 -0
  149. data/ext/pg_query/include/libpq/libpq.h +133 -0
  150. data/ext/pg_query/include/libpq/pqcomm.h +208 -0
  151. data/ext/pg_query/include/libpq/pqformat.h +210 -0
  152. data/ext/pg_query/include/libpq/pqsignal.h +42 -0
  153. data/ext/pg_query/include/mb/pg_wchar.h +672 -0
  154. data/ext/pg_query/include/mb/stringinfo_mb.h +24 -0
  155. data/ext/pg_query/include/miscadmin.h +476 -0
  156. data/ext/pg_query/include/nodes/bitmapset.h +122 -0
  157. data/ext/pg_query/include/nodes/execnodes.h +2520 -0
  158. data/ext/pg_query/include/nodes/extensible.h +160 -0
  159. data/ext/pg_query/include/nodes/lockoptions.h +61 -0
  160. data/ext/pg_query/include/nodes/makefuncs.h +108 -0
  161. data/ext/pg_query/include/nodes/memnodes.h +108 -0
  162. data/ext/pg_query/include/nodes/nodeFuncs.h +162 -0
  163. data/ext/pg_query/include/nodes/nodes.h +842 -0
  164. data/ext/pg_query/include/nodes/params.h +170 -0
  165. data/ext/pg_query/include/nodes/parsenodes.h +3579 -0
  166. data/ext/pg_query/include/nodes/pathnodes.h +2556 -0
  167. data/ext/pg_query/include/nodes/pg_list.h +605 -0
  168. data/ext/pg_query/include/nodes/plannodes.h +1251 -0
  169. data/ext/pg_query/include/nodes/primnodes.h +1541 -0
  170. data/ext/pg_query/include/nodes/print.h +34 -0
  171. data/ext/pg_query/include/nodes/tidbitmap.h +75 -0
  172. data/ext/pg_query/include/nodes/value.h +61 -0
  173. data/ext/pg_query/include/optimizer/cost.h +206 -0
  174. data/ext/pg_query/include/optimizer/geqo.h +88 -0
  175. data/ext/pg_query/include/optimizer/geqo_gene.h +45 -0
  176. data/ext/pg_query/include/optimizer/optimizer.h +199 -0
  177. data/ext/pg_query/include/optimizer/paths.h +249 -0
  178. data/ext/pg_query/include/optimizer/planmain.h +119 -0
  179. data/ext/pg_query/include/parser/analyze.h +49 -0
  180. data/ext/pg_query/include/parser/gram.h +1067 -0
  181. data/ext/pg_query/include/parser/gramparse.h +75 -0
  182. data/ext/pg_query/include/parser/kwlist.h +477 -0
  183. data/ext/pg_query/include/parser/parse_agg.h +68 -0
  184. data/ext/pg_query/include/parser/parse_clause.h +54 -0
  185. data/ext/pg_query/include/parser/parse_coerce.h +97 -0
  186. data/ext/pg_query/include/parser/parse_collate.h +27 -0
  187. data/ext/pg_query/include/parser/parse_expr.h +26 -0
  188. data/ext/pg_query/include/parser/parse_func.h +73 -0
  189. data/ext/pg_query/include/parser/parse_node.h +327 -0
  190. data/ext/pg_query/include/parser/parse_oper.h +67 -0
  191. data/ext/pg_query/include/parser/parse_relation.h +123 -0
  192. data/ext/pg_query/include/parser/parse_target.h +46 -0
  193. data/ext/pg_query/include/parser/parse_type.h +60 -0
  194. data/ext/pg_query/include/parser/parser.h +41 -0
  195. data/ext/pg_query/include/parser/parsetree.h +61 -0
  196. data/ext/pg_query/include/parser/scanner.h +152 -0
  197. data/ext/pg_query/include/parser/scansup.h +30 -0
  198. data/ext/pg_query/include/partitioning/partdefs.h +26 -0
  199. data/ext/pg_query/include/pg_config.h +988 -0
  200. data/ext/pg_query/include/pg_config_ext.h +8 -0
  201. data/ext/pg_query/include/pg_config_manual.h +350 -0
  202. data/ext/pg_query/include/pg_config_os.h +8 -0
  203. data/ext/pg_query/include/pg_getopt.h +56 -0
  204. data/ext/pg_query/include/pg_query.h +121 -0
  205. data/ext/pg_query/include/pg_query_enum_defs.c +2454 -0
  206. data/ext/pg_query/include/pg_query_fingerprint_conds.c +875 -0
  207. data/ext/pg_query/include/pg_query_fingerprint_defs.c +12413 -0
  208. data/ext/pg_query/include/pg_query_json_helper.c +61 -0
  209. data/ext/pg_query/include/pg_query_outfuncs_conds.c +686 -0
  210. data/ext/pg_query/include/pg_query_outfuncs_defs.c +2437 -0
  211. data/ext/pg_query/include/pg_query_readfuncs_conds.c +222 -0
  212. data/ext/pg_query/include/pg_query_readfuncs_defs.c +2878 -0
  213. data/ext/pg_query/include/pg_trace.h +17 -0
  214. data/ext/pg_query/include/pgstat.h +1487 -0
  215. data/ext/pg_query/include/pgtime.h +84 -0
  216. data/ext/pg_query/include/pl_gram.h +385 -0
  217. data/ext/pg_query/include/pl_reserved_kwlist.h +52 -0
  218. data/ext/pg_query/include/pl_reserved_kwlist_d.h +114 -0
  219. data/ext/pg_query/include/pl_unreserved_kwlist.h +112 -0
  220. data/ext/pg_query/include/pl_unreserved_kwlist_d.h +246 -0
  221. data/ext/pg_query/include/plerrcodes.h +990 -0
  222. data/ext/pg_query/include/plpgsql.h +1347 -0
  223. data/ext/pg_query/include/port.h +524 -0
  224. data/ext/pg_query/include/port/atomics.h +524 -0
  225. data/ext/pg_query/include/port/atomics/arch-arm.h +26 -0
  226. data/ext/pg_query/include/port/atomics/arch-ppc.h +254 -0
  227. data/ext/pg_query/include/port/atomics/arch-x86.h +252 -0
  228. data/ext/pg_query/include/port/atomics/fallback.h +170 -0
  229. data/ext/pg_query/include/port/atomics/generic-gcc.h +286 -0
  230. data/ext/pg_query/include/port/atomics/generic.h +401 -0
  231. data/ext/pg_query/include/port/pg_bitutils.h +226 -0
  232. data/ext/pg_query/include/port/pg_bswap.h +161 -0
  233. data/ext/pg_query/include/port/pg_crc32c.h +101 -0
  234. data/ext/pg_query/include/portability/instr_time.h +256 -0
  235. data/ext/pg_query/include/postgres.h +764 -0
  236. data/ext/pg_query/include/postgres_ext.h +74 -0
  237. data/ext/pg_query/include/postmaster/autovacuum.h +83 -0
  238. data/ext/pg_query/include/postmaster/bgworker.h +161 -0
  239. data/ext/pg_query/include/postmaster/bgworker_internals.h +64 -0
  240. data/ext/pg_query/include/postmaster/bgwriter.h +45 -0
  241. data/ext/pg_query/include/postmaster/fork_process.h +17 -0
  242. data/ext/pg_query/include/postmaster/interrupt.h +32 -0
  243. data/ext/pg_query/include/postmaster/pgarch.h +39 -0
  244. data/ext/pg_query/include/postmaster/postmaster.h +77 -0
  245. data/ext/pg_query/include/postmaster/syslogger.h +98 -0
  246. data/ext/pg_query/include/postmaster/walwriter.h +21 -0
  247. data/ext/pg_query/include/protobuf-c.h +1106 -0
  248. data/ext/pg_query/include/protobuf-c/protobuf-c.h +1106 -0
  249. data/ext/pg_query/include/protobuf/pg_query.pb-c.h +10846 -0
  250. data/ext/pg_query/include/protobuf/pg_query.pb.h +124718 -0
  251. data/ext/pg_query/include/regex/regex.h +184 -0
  252. data/ext/pg_query/include/replication/logicallauncher.h +31 -0
  253. data/ext/pg_query/include/replication/logicalproto.h +110 -0
  254. data/ext/pg_query/include/replication/logicalworker.h +19 -0
  255. data/ext/pg_query/include/replication/origin.h +73 -0
  256. data/ext/pg_query/include/replication/reorderbuffer.h +467 -0
  257. data/ext/pg_query/include/replication/slot.h +219 -0
  258. data/ext/pg_query/include/replication/syncrep.h +115 -0
  259. data/ext/pg_query/include/replication/walreceiver.h +340 -0
  260. data/ext/pg_query/include/replication/walsender.h +74 -0
  261. data/ext/pg_query/include/rewrite/prs2lock.h +46 -0
  262. data/ext/pg_query/include/rewrite/rewriteHandler.h +40 -0
  263. data/ext/pg_query/include/rewrite/rewriteManip.h +87 -0
  264. data/ext/pg_query/include/rewrite/rewriteSupport.h +26 -0
  265. data/ext/pg_query/include/storage/backendid.h +37 -0
  266. data/ext/pg_query/include/storage/block.h +121 -0
  267. data/ext/pg_query/include/storage/buf.h +46 -0
  268. data/ext/pg_query/include/storage/bufmgr.h +292 -0
  269. data/ext/pg_query/include/storage/bufpage.h +459 -0
  270. data/ext/pg_query/include/storage/condition_variable.h +62 -0
  271. data/ext/pg_query/include/storage/dsm.h +61 -0
  272. data/ext/pg_query/include/storage/dsm_impl.h +75 -0
  273. data/ext/pg_query/include/storage/fd.h +168 -0
  274. data/ext/pg_query/include/storage/ipc.h +81 -0
  275. data/ext/pg_query/include/storage/item.h +19 -0
  276. data/ext/pg_query/include/storage/itemid.h +184 -0
  277. data/ext/pg_query/include/storage/itemptr.h +206 -0
  278. data/ext/pg_query/include/storage/large_object.h +100 -0
  279. data/ext/pg_query/include/storage/latch.h +190 -0
  280. data/ext/pg_query/include/storage/lmgr.h +114 -0
  281. data/ext/pg_query/include/storage/lock.h +612 -0
  282. data/ext/pg_query/include/storage/lockdefs.h +59 -0
  283. data/ext/pg_query/include/storage/lwlock.h +232 -0
  284. data/ext/pg_query/include/storage/lwlocknames.h +51 -0
  285. data/ext/pg_query/include/storage/off.h +57 -0
  286. data/ext/pg_query/include/storage/pg_sema.h +61 -0
  287. data/ext/pg_query/include/storage/pg_shmem.h +90 -0
  288. data/ext/pg_query/include/storage/pmsignal.h +94 -0
  289. data/ext/pg_query/include/storage/predicate.h +87 -0
  290. data/ext/pg_query/include/storage/proc.h +333 -0
  291. data/ext/pg_query/include/storage/proclist_types.h +51 -0
  292. data/ext/pg_query/include/storage/procsignal.h +75 -0
  293. data/ext/pg_query/include/storage/relfilenode.h +99 -0
  294. data/ext/pg_query/include/storage/s_lock.h +1047 -0
  295. data/ext/pg_query/include/storage/sharedfileset.h +45 -0
  296. data/ext/pg_query/include/storage/shm_mq.h +85 -0
  297. data/ext/pg_query/include/storage/shm_toc.h +58 -0
  298. data/ext/pg_query/include/storage/shmem.h +81 -0
  299. data/ext/pg_query/include/storage/sinval.h +153 -0
  300. data/ext/pg_query/include/storage/sinvaladt.h +43 -0
  301. data/ext/pg_query/include/storage/smgr.h +109 -0
  302. data/ext/pg_query/include/storage/spin.h +77 -0
  303. data/ext/pg_query/include/storage/standby.h +91 -0
  304. data/ext/pg_query/include/storage/standbydefs.h +74 -0
  305. data/ext/pg_query/include/storage/sync.h +62 -0
  306. data/ext/pg_query/include/tcop/cmdtag.h +58 -0
  307. data/ext/pg_query/include/tcop/cmdtaglist.h +217 -0
  308. data/ext/pg_query/include/tcop/deparse_utility.h +108 -0
  309. data/ext/pg_query/include/tcop/dest.h +149 -0
  310. data/ext/pg_query/include/tcop/fastpath.h +21 -0
  311. data/ext/pg_query/include/tcop/pquery.h +45 -0
  312. data/ext/pg_query/include/tcop/tcopprot.h +89 -0
  313. data/ext/pg_query/include/tcop/utility.h +108 -0
  314. data/ext/pg_query/include/tsearch/ts_cache.h +98 -0
  315. data/ext/pg_query/include/utils/acl.h +312 -0
  316. data/ext/pg_query/include/utils/aclchk_internal.h +45 -0
  317. data/ext/pg_query/include/utils/array.h +458 -0
  318. data/ext/pg_query/include/utils/builtins.h +127 -0
  319. data/ext/pg_query/include/utils/bytea.h +27 -0
  320. data/ext/pg_query/include/utils/catcache.h +231 -0
  321. data/ext/pg_query/include/utils/date.h +90 -0
  322. data/ext/pg_query/include/utils/datetime.h +343 -0
  323. data/ext/pg_query/include/utils/datum.h +68 -0
  324. data/ext/pg_query/include/utils/dsa.h +123 -0
  325. data/ext/pg_query/include/utils/dynahash.h +19 -0
  326. data/ext/pg_query/include/utils/elog.h +439 -0
  327. data/ext/pg_query/include/utils/errcodes.h +352 -0
  328. data/ext/pg_query/include/utils/expandeddatum.h +159 -0
  329. data/ext/pg_query/include/utils/expandedrecord.h +231 -0
  330. data/ext/pg_query/include/utils/float.h +356 -0
  331. data/ext/pg_query/include/utils/fmgroids.h +2657 -0
  332. data/ext/pg_query/include/utils/fmgrprotos.h +2646 -0
  333. data/ext/pg_query/include/utils/fmgrtab.h +48 -0
  334. data/ext/pg_query/include/utils/guc.h +443 -0
  335. data/ext/pg_query/include/utils/guc_tables.h +272 -0
  336. data/ext/pg_query/include/utils/hsearch.h +149 -0
  337. data/ext/pg_query/include/utils/inval.h +64 -0
  338. data/ext/pg_query/include/utils/lsyscache.h +197 -0
  339. data/ext/pg_query/include/utils/memdebug.h +82 -0
  340. data/ext/pg_query/include/utils/memutils.h +225 -0
  341. data/ext/pg_query/include/utils/numeric.h +76 -0
  342. data/ext/pg_query/include/utils/palloc.h +136 -0
  343. data/ext/pg_query/include/utils/partcache.h +102 -0
  344. data/ext/pg_query/include/utils/pg_locale.h +119 -0
  345. data/ext/pg_query/include/utils/pg_lsn.h +29 -0
  346. data/ext/pg_query/include/utils/pidfile.h +56 -0
  347. data/ext/pg_query/include/utils/plancache.h +235 -0
  348. data/ext/pg_query/include/utils/portal.h +241 -0
  349. data/ext/pg_query/include/utils/probes.h +114 -0
  350. data/ext/pg_query/include/utils/ps_status.h +25 -0
  351. data/ext/pg_query/include/utils/queryenvironment.h +74 -0
  352. data/ext/pg_query/include/utils/regproc.h +28 -0
  353. data/ext/pg_query/include/utils/rel.h +644 -0
  354. data/ext/pg_query/include/utils/relcache.h +151 -0
  355. data/ext/pg_query/include/utils/reltrigger.h +81 -0
  356. data/ext/pg_query/include/utils/resowner.h +86 -0
  357. data/ext/pg_query/include/utils/rls.h +50 -0
  358. data/ext/pg_query/include/utils/ruleutils.h +44 -0
  359. data/ext/pg_query/include/utils/sharedtuplestore.h +61 -0
  360. data/ext/pg_query/include/utils/snapmgr.h +158 -0
  361. data/ext/pg_query/include/utils/snapshot.h +206 -0
  362. data/ext/pg_query/include/utils/sortsupport.h +276 -0
  363. data/ext/pg_query/include/utils/syscache.h +219 -0
  364. data/ext/pg_query/include/utils/timeout.h +88 -0
  365. data/ext/pg_query/include/utils/timestamp.h +116 -0
  366. data/ext/pg_query/include/utils/tuplesort.h +277 -0
  367. data/ext/pg_query/include/utils/tuplestore.h +91 -0
  368. data/ext/pg_query/include/utils/typcache.h +202 -0
  369. data/ext/pg_query/include/utils/tzparser.h +39 -0
  370. data/ext/pg_query/include/utils/varlena.h +39 -0
  371. data/ext/pg_query/include/utils/xml.h +84 -0
  372. data/ext/pg_query/include/xxhash.h +5445 -0
  373. data/ext/pg_query/include/xxhash/xxhash.h +5445 -0
  374. data/lib/pg_query/version.rb +1 -1
  375. metadata +372 -1
@@ -0,0 +1,105 @@
1
+ /*-------------------------------------------------------------------------
2
+ * jit.h
3
+ * Provider independent JIT infrastructure.
4
+ *
5
+ * Copyright (c) 2016-2020, PostgreSQL Global Development Group
6
+ *
7
+ * src/include/jit/jit.h
8
+ *
9
+ *-------------------------------------------------------------------------
10
+ */
11
+ #ifndef JIT_H
12
+ #define JIT_H
13
+
14
+ #include "executor/instrument.h"
15
+ #include "utils/resowner.h"
16
+
17
+
18
+ /* Flags determining what kind of JIT operations to perform */
19
+ #define PGJIT_NONE 0
20
+ #define PGJIT_PERFORM (1 << 0)
21
+ #define PGJIT_OPT3 (1 << 1)
22
+ #define PGJIT_INLINE (1 << 2)
23
+ #define PGJIT_EXPR (1 << 3)
24
+ #define PGJIT_DEFORM (1 << 4)
25
+
26
+
27
+ typedef struct JitInstrumentation
28
+ {
29
+ /* number of emitted functions */
30
+ size_t created_functions;
31
+
32
+ /* accumulated time to generate code */
33
+ instr_time generation_counter;
34
+
35
+ /* accumulated time for inlining */
36
+ instr_time inlining_counter;
37
+
38
+ /* accumulated time for optimization */
39
+ instr_time optimization_counter;
40
+
41
+ /* accumulated time for code emission */
42
+ instr_time emission_counter;
43
+ } JitInstrumentation;
44
+
45
+ /*
46
+ * DSM structure for accumulating jit instrumentation of all workers.
47
+ */
48
+ typedef struct SharedJitInstrumentation
49
+ {
50
+ int num_workers;
51
+ JitInstrumentation jit_instr[FLEXIBLE_ARRAY_MEMBER];
52
+ } SharedJitInstrumentation;
53
+
54
+ typedef struct JitContext
55
+ {
56
+ /* see PGJIT_* above */
57
+ int flags;
58
+
59
+ ResourceOwner resowner;
60
+
61
+ JitInstrumentation instr;
62
+ } JitContext;
63
+
64
+ typedef struct JitProviderCallbacks JitProviderCallbacks;
65
+
66
+ extern void _PG_jit_provider_init(JitProviderCallbacks *cb);
67
+ typedef void (*JitProviderInit) (JitProviderCallbacks *cb);
68
+ typedef void (*JitProviderResetAfterErrorCB) (void);
69
+ typedef void (*JitProviderReleaseContextCB) (JitContext *context);
70
+ struct ExprState;
71
+ typedef bool (*JitProviderCompileExprCB) (struct ExprState *state);
72
+
73
+ struct JitProviderCallbacks
74
+ {
75
+ JitProviderResetAfterErrorCB reset_after_error;
76
+ JitProviderReleaseContextCB release_context;
77
+ JitProviderCompileExprCB compile_expr;
78
+ };
79
+
80
+
81
+ /* GUCs */
82
+ extern bool jit_enabled;
83
+ extern char *jit_provider;
84
+ extern bool jit_debugging_support;
85
+ extern bool jit_dump_bitcode;
86
+ extern bool jit_expressions;
87
+ extern bool jit_profiling_support;
88
+ extern bool jit_tuple_deforming;
89
+ extern double jit_above_cost;
90
+ extern double jit_inline_above_cost;
91
+ extern double jit_optimize_above_cost;
92
+
93
+
94
+ extern void jit_reset_after_error(void);
95
+ extern void jit_release_context(JitContext *context);
96
+
97
+ /*
98
+ * Functions for attempting to JIT code. Callers must accept that these might
99
+ * not be able to perform JIT (i.e. return false).
100
+ */
101
+ extern bool jit_compile_expr(struct ExprState *state);
102
+ extern void InstrJitAgg(JitInstrumentation *dst, JitInstrumentation *add);
103
+
104
+
105
+ #endif /* JIT_H */
@@ -0,0 +1,1072 @@
1
+ /*-------------------------------------------------------------------------
2
+ *
3
+ * kwlist_d.h
4
+ * List of keywords represented as a ScanKeywordList.
5
+ *
6
+ * Portions Copyright (c) 1996-2020, PostgreSQL Global Development Group
7
+ * Portions Copyright (c) 1994, Regents of the University of California
8
+ *
9
+ * NOTES
10
+ * ******************************
11
+ * *** DO NOT EDIT THIS FILE! ***
12
+ * ******************************
13
+ *
14
+ * It has been GENERATED by src/tools/gen_keywordlist.pl
15
+ *
16
+ *-------------------------------------------------------------------------
17
+ */
18
+
19
+ #ifndef KWLIST_D_H
20
+ #define KWLIST_D_H
21
+
22
+ #include "common/kwlookup.h"
23
+
24
+ static const char ScanKeywords_kw_string[] =
25
+ "abort\0"
26
+ "absolute\0"
27
+ "access\0"
28
+ "action\0"
29
+ "add\0"
30
+ "admin\0"
31
+ "after\0"
32
+ "aggregate\0"
33
+ "all\0"
34
+ "also\0"
35
+ "alter\0"
36
+ "always\0"
37
+ "analyse\0"
38
+ "analyze\0"
39
+ "and\0"
40
+ "any\0"
41
+ "array\0"
42
+ "as\0"
43
+ "asc\0"
44
+ "assertion\0"
45
+ "assignment\0"
46
+ "asymmetric\0"
47
+ "at\0"
48
+ "attach\0"
49
+ "attribute\0"
50
+ "authorization\0"
51
+ "backward\0"
52
+ "before\0"
53
+ "begin\0"
54
+ "between\0"
55
+ "bigint\0"
56
+ "binary\0"
57
+ "bit\0"
58
+ "boolean\0"
59
+ "both\0"
60
+ "by\0"
61
+ "cache\0"
62
+ "call\0"
63
+ "called\0"
64
+ "cascade\0"
65
+ "cascaded\0"
66
+ "case\0"
67
+ "cast\0"
68
+ "catalog\0"
69
+ "chain\0"
70
+ "char\0"
71
+ "character\0"
72
+ "characteristics\0"
73
+ "check\0"
74
+ "checkpoint\0"
75
+ "class\0"
76
+ "close\0"
77
+ "cluster\0"
78
+ "coalesce\0"
79
+ "collate\0"
80
+ "collation\0"
81
+ "column\0"
82
+ "columns\0"
83
+ "comment\0"
84
+ "comments\0"
85
+ "commit\0"
86
+ "committed\0"
87
+ "concurrently\0"
88
+ "configuration\0"
89
+ "conflict\0"
90
+ "connection\0"
91
+ "constraint\0"
92
+ "constraints\0"
93
+ "content\0"
94
+ "continue\0"
95
+ "conversion\0"
96
+ "copy\0"
97
+ "cost\0"
98
+ "create\0"
99
+ "cross\0"
100
+ "csv\0"
101
+ "cube\0"
102
+ "current\0"
103
+ "current_catalog\0"
104
+ "current_date\0"
105
+ "current_role\0"
106
+ "current_schema\0"
107
+ "current_time\0"
108
+ "current_timestamp\0"
109
+ "current_user\0"
110
+ "cursor\0"
111
+ "cycle\0"
112
+ "data\0"
113
+ "database\0"
114
+ "day\0"
115
+ "deallocate\0"
116
+ "dec\0"
117
+ "decimal\0"
118
+ "declare\0"
119
+ "default\0"
120
+ "defaults\0"
121
+ "deferrable\0"
122
+ "deferred\0"
123
+ "definer\0"
124
+ "delete\0"
125
+ "delimiter\0"
126
+ "delimiters\0"
127
+ "depends\0"
128
+ "desc\0"
129
+ "detach\0"
130
+ "dictionary\0"
131
+ "disable\0"
132
+ "discard\0"
133
+ "distinct\0"
134
+ "do\0"
135
+ "document\0"
136
+ "domain\0"
137
+ "double\0"
138
+ "drop\0"
139
+ "each\0"
140
+ "else\0"
141
+ "enable\0"
142
+ "encoding\0"
143
+ "encrypted\0"
144
+ "end\0"
145
+ "enum\0"
146
+ "escape\0"
147
+ "event\0"
148
+ "except\0"
149
+ "exclude\0"
150
+ "excluding\0"
151
+ "exclusive\0"
152
+ "execute\0"
153
+ "exists\0"
154
+ "explain\0"
155
+ "expression\0"
156
+ "extension\0"
157
+ "external\0"
158
+ "extract\0"
159
+ "false\0"
160
+ "family\0"
161
+ "fetch\0"
162
+ "filter\0"
163
+ "first\0"
164
+ "float\0"
165
+ "following\0"
166
+ "for\0"
167
+ "force\0"
168
+ "foreign\0"
169
+ "forward\0"
170
+ "freeze\0"
171
+ "from\0"
172
+ "full\0"
173
+ "function\0"
174
+ "functions\0"
175
+ "generated\0"
176
+ "global\0"
177
+ "grant\0"
178
+ "granted\0"
179
+ "greatest\0"
180
+ "group\0"
181
+ "grouping\0"
182
+ "groups\0"
183
+ "handler\0"
184
+ "having\0"
185
+ "header\0"
186
+ "hold\0"
187
+ "hour\0"
188
+ "identity\0"
189
+ "if\0"
190
+ "ilike\0"
191
+ "immediate\0"
192
+ "immutable\0"
193
+ "implicit\0"
194
+ "import\0"
195
+ "in\0"
196
+ "include\0"
197
+ "including\0"
198
+ "increment\0"
199
+ "index\0"
200
+ "indexes\0"
201
+ "inherit\0"
202
+ "inherits\0"
203
+ "initially\0"
204
+ "inline\0"
205
+ "inner\0"
206
+ "inout\0"
207
+ "input\0"
208
+ "insensitive\0"
209
+ "insert\0"
210
+ "instead\0"
211
+ "int\0"
212
+ "integer\0"
213
+ "intersect\0"
214
+ "interval\0"
215
+ "into\0"
216
+ "invoker\0"
217
+ "is\0"
218
+ "isnull\0"
219
+ "isolation\0"
220
+ "join\0"
221
+ "key\0"
222
+ "label\0"
223
+ "language\0"
224
+ "large\0"
225
+ "last\0"
226
+ "lateral\0"
227
+ "leading\0"
228
+ "leakproof\0"
229
+ "least\0"
230
+ "left\0"
231
+ "level\0"
232
+ "like\0"
233
+ "limit\0"
234
+ "listen\0"
235
+ "load\0"
236
+ "local\0"
237
+ "localtime\0"
238
+ "localtimestamp\0"
239
+ "location\0"
240
+ "lock\0"
241
+ "locked\0"
242
+ "logged\0"
243
+ "mapping\0"
244
+ "match\0"
245
+ "materialized\0"
246
+ "maxvalue\0"
247
+ "method\0"
248
+ "minute\0"
249
+ "minvalue\0"
250
+ "mode\0"
251
+ "month\0"
252
+ "move\0"
253
+ "name\0"
254
+ "names\0"
255
+ "national\0"
256
+ "natural\0"
257
+ "nchar\0"
258
+ "new\0"
259
+ "next\0"
260
+ "nfc\0"
261
+ "nfd\0"
262
+ "nfkc\0"
263
+ "nfkd\0"
264
+ "no\0"
265
+ "none\0"
266
+ "normalize\0"
267
+ "normalized\0"
268
+ "not\0"
269
+ "nothing\0"
270
+ "notify\0"
271
+ "notnull\0"
272
+ "nowait\0"
273
+ "null\0"
274
+ "nullif\0"
275
+ "nulls\0"
276
+ "numeric\0"
277
+ "object\0"
278
+ "of\0"
279
+ "off\0"
280
+ "offset\0"
281
+ "oids\0"
282
+ "old\0"
283
+ "on\0"
284
+ "only\0"
285
+ "operator\0"
286
+ "option\0"
287
+ "options\0"
288
+ "or\0"
289
+ "order\0"
290
+ "ordinality\0"
291
+ "others\0"
292
+ "out\0"
293
+ "outer\0"
294
+ "over\0"
295
+ "overlaps\0"
296
+ "overlay\0"
297
+ "overriding\0"
298
+ "owned\0"
299
+ "owner\0"
300
+ "parallel\0"
301
+ "parser\0"
302
+ "partial\0"
303
+ "partition\0"
304
+ "passing\0"
305
+ "password\0"
306
+ "placing\0"
307
+ "plans\0"
308
+ "policy\0"
309
+ "position\0"
310
+ "preceding\0"
311
+ "precision\0"
312
+ "prepare\0"
313
+ "prepared\0"
314
+ "preserve\0"
315
+ "primary\0"
316
+ "prior\0"
317
+ "privileges\0"
318
+ "procedural\0"
319
+ "procedure\0"
320
+ "procedures\0"
321
+ "program\0"
322
+ "publication\0"
323
+ "quote\0"
324
+ "range\0"
325
+ "read\0"
326
+ "real\0"
327
+ "reassign\0"
328
+ "recheck\0"
329
+ "recursive\0"
330
+ "ref\0"
331
+ "references\0"
332
+ "referencing\0"
333
+ "refresh\0"
334
+ "reindex\0"
335
+ "relative\0"
336
+ "release\0"
337
+ "rename\0"
338
+ "repeatable\0"
339
+ "replace\0"
340
+ "replica\0"
341
+ "reset\0"
342
+ "restart\0"
343
+ "restrict\0"
344
+ "returning\0"
345
+ "returns\0"
346
+ "revoke\0"
347
+ "right\0"
348
+ "role\0"
349
+ "rollback\0"
350
+ "rollup\0"
351
+ "routine\0"
352
+ "routines\0"
353
+ "row\0"
354
+ "rows\0"
355
+ "rule\0"
356
+ "savepoint\0"
357
+ "schema\0"
358
+ "schemas\0"
359
+ "scroll\0"
360
+ "search\0"
361
+ "second\0"
362
+ "security\0"
363
+ "select\0"
364
+ "sequence\0"
365
+ "sequences\0"
366
+ "serializable\0"
367
+ "server\0"
368
+ "session\0"
369
+ "session_user\0"
370
+ "set\0"
371
+ "setof\0"
372
+ "sets\0"
373
+ "share\0"
374
+ "show\0"
375
+ "similar\0"
376
+ "simple\0"
377
+ "skip\0"
378
+ "smallint\0"
379
+ "snapshot\0"
380
+ "some\0"
381
+ "sql\0"
382
+ "stable\0"
383
+ "standalone\0"
384
+ "start\0"
385
+ "statement\0"
386
+ "statistics\0"
387
+ "stdin\0"
388
+ "stdout\0"
389
+ "storage\0"
390
+ "stored\0"
391
+ "strict\0"
392
+ "strip\0"
393
+ "subscription\0"
394
+ "substring\0"
395
+ "support\0"
396
+ "symmetric\0"
397
+ "sysid\0"
398
+ "system\0"
399
+ "table\0"
400
+ "tables\0"
401
+ "tablesample\0"
402
+ "tablespace\0"
403
+ "temp\0"
404
+ "template\0"
405
+ "temporary\0"
406
+ "text\0"
407
+ "then\0"
408
+ "ties\0"
409
+ "time\0"
410
+ "timestamp\0"
411
+ "to\0"
412
+ "trailing\0"
413
+ "transaction\0"
414
+ "transform\0"
415
+ "treat\0"
416
+ "trigger\0"
417
+ "trim\0"
418
+ "true\0"
419
+ "truncate\0"
420
+ "trusted\0"
421
+ "type\0"
422
+ "types\0"
423
+ "uescape\0"
424
+ "unbounded\0"
425
+ "uncommitted\0"
426
+ "unencrypted\0"
427
+ "union\0"
428
+ "unique\0"
429
+ "unknown\0"
430
+ "unlisten\0"
431
+ "unlogged\0"
432
+ "until\0"
433
+ "update\0"
434
+ "user\0"
435
+ "using\0"
436
+ "vacuum\0"
437
+ "valid\0"
438
+ "validate\0"
439
+ "validator\0"
440
+ "value\0"
441
+ "values\0"
442
+ "varchar\0"
443
+ "variadic\0"
444
+ "varying\0"
445
+ "verbose\0"
446
+ "version\0"
447
+ "view\0"
448
+ "views\0"
449
+ "volatile\0"
450
+ "when\0"
451
+ "where\0"
452
+ "whitespace\0"
453
+ "window\0"
454
+ "with\0"
455
+ "within\0"
456
+ "without\0"
457
+ "work\0"
458
+ "wrapper\0"
459
+ "write\0"
460
+ "xml\0"
461
+ "xmlattributes\0"
462
+ "xmlconcat\0"
463
+ "xmlelement\0"
464
+ "xmlexists\0"
465
+ "xmlforest\0"
466
+ "xmlnamespaces\0"
467
+ "xmlparse\0"
468
+ "xmlpi\0"
469
+ "xmlroot\0"
470
+ "xmlserialize\0"
471
+ "xmltable\0"
472
+ "year\0"
473
+ "yes\0"
474
+ "zone";
475
+
476
+ static const uint16 ScanKeywords_kw_offsets[] = {
477
+ 0,
478
+ 6,
479
+ 15,
480
+ 22,
481
+ 29,
482
+ 33,
483
+ 39,
484
+ 45,
485
+ 55,
486
+ 59,
487
+ 64,
488
+ 70,
489
+ 77,
490
+ 85,
491
+ 93,
492
+ 97,
493
+ 101,
494
+ 107,
495
+ 110,
496
+ 114,
497
+ 124,
498
+ 135,
499
+ 146,
500
+ 149,
501
+ 156,
502
+ 166,
503
+ 180,
504
+ 189,
505
+ 196,
506
+ 202,
507
+ 210,
508
+ 217,
509
+ 224,
510
+ 228,
511
+ 236,
512
+ 241,
513
+ 244,
514
+ 250,
515
+ 255,
516
+ 262,
517
+ 270,
518
+ 279,
519
+ 284,
520
+ 289,
521
+ 297,
522
+ 303,
523
+ 308,
524
+ 318,
525
+ 334,
526
+ 340,
527
+ 351,
528
+ 357,
529
+ 363,
530
+ 371,
531
+ 380,
532
+ 388,
533
+ 398,
534
+ 405,
535
+ 413,
536
+ 421,
537
+ 430,
538
+ 437,
539
+ 447,
540
+ 460,
541
+ 474,
542
+ 483,
543
+ 494,
544
+ 505,
545
+ 517,
546
+ 525,
547
+ 534,
548
+ 545,
549
+ 550,
550
+ 555,
551
+ 562,
552
+ 568,
553
+ 572,
554
+ 577,
555
+ 585,
556
+ 601,
557
+ 614,
558
+ 627,
559
+ 642,
560
+ 655,
561
+ 673,
562
+ 686,
563
+ 693,
564
+ 699,
565
+ 704,
566
+ 713,
567
+ 717,
568
+ 728,
569
+ 732,
570
+ 740,
571
+ 748,
572
+ 756,
573
+ 765,
574
+ 776,
575
+ 785,
576
+ 793,
577
+ 800,
578
+ 810,
579
+ 821,
580
+ 829,
581
+ 834,
582
+ 841,
583
+ 852,
584
+ 860,
585
+ 868,
586
+ 877,
587
+ 880,
588
+ 889,
589
+ 896,
590
+ 903,
591
+ 908,
592
+ 913,
593
+ 918,
594
+ 925,
595
+ 934,
596
+ 944,
597
+ 948,
598
+ 953,
599
+ 960,
600
+ 966,
601
+ 973,
602
+ 981,
603
+ 991,
604
+ 1001,
605
+ 1009,
606
+ 1016,
607
+ 1024,
608
+ 1035,
609
+ 1045,
610
+ 1054,
611
+ 1062,
612
+ 1068,
613
+ 1075,
614
+ 1081,
615
+ 1088,
616
+ 1094,
617
+ 1100,
618
+ 1110,
619
+ 1114,
620
+ 1120,
621
+ 1128,
622
+ 1136,
623
+ 1143,
624
+ 1148,
625
+ 1153,
626
+ 1162,
627
+ 1172,
628
+ 1182,
629
+ 1189,
630
+ 1195,
631
+ 1203,
632
+ 1212,
633
+ 1218,
634
+ 1227,
635
+ 1234,
636
+ 1242,
637
+ 1249,
638
+ 1256,
639
+ 1261,
640
+ 1266,
641
+ 1275,
642
+ 1278,
643
+ 1284,
644
+ 1294,
645
+ 1304,
646
+ 1313,
647
+ 1320,
648
+ 1323,
649
+ 1331,
650
+ 1341,
651
+ 1351,
652
+ 1357,
653
+ 1365,
654
+ 1373,
655
+ 1382,
656
+ 1392,
657
+ 1399,
658
+ 1405,
659
+ 1411,
660
+ 1417,
661
+ 1429,
662
+ 1436,
663
+ 1444,
664
+ 1448,
665
+ 1456,
666
+ 1466,
667
+ 1475,
668
+ 1480,
669
+ 1488,
670
+ 1491,
671
+ 1498,
672
+ 1508,
673
+ 1513,
674
+ 1517,
675
+ 1523,
676
+ 1532,
677
+ 1538,
678
+ 1543,
679
+ 1551,
680
+ 1559,
681
+ 1569,
682
+ 1575,
683
+ 1580,
684
+ 1586,
685
+ 1591,
686
+ 1597,
687
+ 1604,
688
+ 1609,
689
+ 1615,
690
+ 1625,
691
+ 1640,
692
+ 1649,
693
+ 1654,
694
+ 1661,
695
+ 1668,
696
+ 1676,
697
+ 1682,
698
+ 1695,
699
+ 1704,
700
+ 1711,
701
+ 1718,
702
+ 1727,
703
+ 1732,
704
+ 1738,
705
+ 1743,
706
+ 1748,
707
+ 1754,
708
+ 1763,
709
+ 1771,
710
+ 1777,
711
+ 1781,
712
+ 1786,
713
+ 1790,
714
+ 1794,
715
+ 1799,
716
+ 1804,
717
+ 1807,
718
+ 1812,
719
+ 1822,
720
+ 1833,
721
+ 1837,
722
+ 1845,
723
+ 1852,
724
+ 1860,
725
+ 1867,
726
+ 1872,
727
+ 1879,
728
+ 1885,
729
+ 1893,
730
+ 1900,
731
+ 1903,
732
+ 1907,
733
+ 1914,
734
+ 1919,
735
+ 1923,
736
+ 1926,
737
+ 1931,
738
+ 1940,
739
+ 1947,
740
+ 1955,
741
+ 1958,
742
+ 1964,
743
+ 1975,
744
+ 1982,
745
+ 1986,
746
+ 1992,
747
+ 1997,
748
+ 2006,
749
+ 2014,
750
+ 2025,
751
+ 2031,
752
+ 2037,
753
+ 2046,
754
+ 2053,
755
+ 2061,
756
+ 2071,
757
+ 2079,
758
+ 2088,
759
+ 2096,
760
+ 2102,
761
+ 2109,
762
+ 2118,
763
+ 2128,
764
+ 2138,
765
+ 2146,
766
+ 2155,
767
+ 2164,
768
+ 2172,
769
+ 2178,
770
+ 2189,
771
+ 2200,
772
+ 2210,
773
+ 2221,
774
+ 2229,
775
+ 2241,
776
+ 2247,
777
+ 2253,
778
+ 2258,
779
+ 2263,
780
+ 2272,
781
+ 2280,
782
+ 2290,
783
+ 2294,
784
+ 2305,
785
+ 2317,
786
+ 2325,
787
+ 2333,
788
+ 2342,
789
+ 2350,
790
+ 2357,
791
+ 2368,
792
+ 2376,
793
+ 2384,
794
+ 2390,
795
+ 2398,
796
+ 2407,
797
+ 2417,
798
+ 2425,
799
+ 2432,
800
+ 2438,
801
+ 2443,
802
+ 2452,
803
+ 2459,
804
+ 2467,
805
+ 2476,
806
+ 2480,
807
+ 2485,
808
+ 2490,
809
+ 2500,
810
+ 2507,
811
+ 2515,
812
+ 2522,
813
+ 2529,
814
+ 2536,
815
+ 2545,
816
+ 2552,
817
+ 2561,
818
+ 2571,
819
+ 2584,
820
+ 2591,
821
+ 2599,
822
+ 2612,
823
+ 2616,
824
+ 2622,
825
+ 2627,
826
+ 2633,
827
+ 2638,
828
+ 2646,
829
+ 2653,
830
+ 2658,
831
+ 2667,
832
+ 2676,
833
+ 2681,
834
+ 2685,
835
+ 2692,
836
+ 2703,
837
+ 2709,
838
+ 2719,
839
+ 2730,
840
+ 2736,
841
+ 2743,
842
+ 2751,
843
+ 2758,
844
+ 2765,
845
+ 2771,
846
+ 2784,
847
+ 2794,
848
+ 2802,
849
+ 2812,
850
+ 2818,
851
+ 2825,
852
+ 2831,
853
+ 2838,
854
+ 2850,
855
+ 2861,
856
+ 2866,
857
+ 2875,
858
+ 2885,
859
+ 2890,
860
+ 2895,
861
+ 2900,
862
+ 2905,
863
+ 2915,
864
+ 2918,
865
+ 2927,
866
+ 2939,
867
+ 2949,
868
+ 2955,
869
+ 2963,
870
+ 2968,
871
+ 2973,
872
+ 2982,
873
+ 2990,
874
+ 2995,
875
+ 3001,
876
+ 3009,
877
+ 3019,
878
+ 3031,
879
+ 3043,
880
+ 3049,
881
+ 3056,
882
+ 3064,
883
+ 3073,
884
+ 3082,
885
+ 3088,
886
+ 3095,
887
+ 3100,
888
+ 3106,
889
+ 3113,
890
+ 3119,
891
+ 3128,
892
+ 3138,
893
+ 3144,
894
+ 3151,
895
+ 3159,
896
+ 3168,
897
+ 3176,
898
+ 3184,
899
+ 3192,
900
+ 3197,
901
+ 3203,
902
+ 3212,
903
+ 3217,
904
+ 3223,
905
+ 3234,
906
+ 3241,
907
+ 3246,
908
+ 3253,
909
+ 3261,
910
+ 3266,
911
+ 3274,
912
+ 3280,
913
+ 3284,
914
+ 3298,
915
+ 3308,
916
+ 3319,
917
+ 3329,
918
+ 3339,
919
+ 3353,
920
+ 3362,
921
+ 3368,
922
+ 3376,
923
+ 3389,
924
+ 3398,
925
+ 3403,
926
+ 3407,
927
+ };
928
+
929
+ #define SCANKEYWORDS_NUM_KEYWORDS 450
930
+
931
+ static int
932
+ ScanKeywords_hash_func(const void *key, size_t keylen)
933
+ {
934
+ static const int16 h[901] = {
935
+ -172, 32767, 32767, 32767, 0, 56, 362, 32767,
936
+ 0, 90, -251, 332, 32767, 66, 298, 0,
937
+ 32767, 88, 27, 22, -125, 317, 0, 32767,
938
+ -35, 0, 32767, 32767, 32767, 52, 32767, 275,
939
+ 32767, -277, 32767, 32767, 316, 177, 32767, 0,
940
+ 398, 58, 272, -88, 0, -147, 242, 143,
941
+ 401, 0, 32767, 0, 293, 355, 0, 0,
942
+ 303, 32767, 225, 580, 0, 378, 0, 0,
943
+ 32767, -25, -312, 32767, -210, 0, 32767, -19,
944
+ 32767, 91, 307, 354, 32767, 32767, -18, 36,
945
+ 32767, 32767, 402, 292, 165, 274, 0, 32767,
946
+ 10, -20, 32767, 294, 32767, -622, 326, 32767,
947
+ -128, 0, 33, 32767, 32767, 325, 32767, 276,
948
+ 343, 32767, 96, 173, 32767, 32767, 32767, 0,
949
+ 32767, 320, -128, 32767, 357, 24, -9, 427,
950
+ 32767, 32767, 0, 32767, 0, 0, 32767, 32767,
951
+ 405, 32767, 125, 32767, 0, 32767, -40, 32767,
952
+ 0, 80, 0, 32767, 0, 95, -146, 0,
953
+ 32767, 26, 165, 32767, 41, 32767, 418, 32767,
954
+ 32767, 40, 32767, 147, 32767, 32767, 32767, 91,
955
+ 110, 9, 305, -340, 32767, 103, 32767, 0,
956
+ 329, 32767, 32767, 310, 32767, 32767, 147, -262,
957
+ 422, 393, 382, 136, 32767, 177, 0, 32767,
958
+ 32767, 102, 0, 32767, 83, 141, 28, 167,
959
+ -421, 32767, 38, 111, 0, 479, 32767, 32767,
960
+ 29, 439, 32767, 427, -6, 182, 32767, 74,
961
+ 32767, 360, 236, 32767, 32767, 327, -63, 162,
962
+ 154, 184, 90, 263, 115, 127, 539, 347,
963
+ -72, 32767, -159, 32767, -249, 152, 32767, 357,
964
+ 404, -110, 32767, 404, 345, 32767, 80, 352,
965
+ 422, 61, 32767, 32767, 32767, 243, 126, 117,
966
+ 32767, 0, 32767, 32767, 208, 32767, 32767, -20,
967
+ 430, -195, 32767, 32767, 32767, 118, -62, 32767,
968
+ 32767, 98, 136, 0, 0, 32767, 261, 32767,
969
+ 0, 32767, 230, 37, 750, 154, 32767, -86,
970
+ 87, 32767, 6, 61, 32767, 205, 32767, 517,
971
+ 107, 66, 304, 32767, 0, 32767, 32767, 32767,
972
+ 333, 32767, 357, 239, 32767, 32767, 437, -26,
973
+ 32767, 210, 0, 20, 369, 10, 32767, -78,
974
+ 616, 70, 0, 32767, 86, 32767, 0, 32767,
975
+ 14, 60, 32, 32767, 373, 32767, -218, 320,
976
+ 32767, 268, 32767, 32767, 425, -67, 0, 32767,
977
+ 252, 32767, -93, 193, -362, -140, 32767, -328,
978
+ 32767, 0, 319, 336, 32767, 121, 0, 32767,
979
+ 207, 32767, 481, -176, 276, 47, 235, 32767,
980
+ 0, 221, 32767, 228, 32767, 84, 32767, 32767,
981
+ 32767, 32767, 32767, 32767, 290, 32767, 32767, 84,
982
+ -170, 82, 246, -43, 201, 155, -7, 299,
983
+ 32767, 32767, 241, 32767, -418, 32767, 32767, -303,
984
+ 32767, 32767, -40, 308, 32767, 0, 178, -67,
985
+ 32767, 273, 32767, 0, 32767, 69, 387, 32767,
986
+ 341, 0, 0, -19, 324, -88, 166, 32767,
987
+ 6, 20, 32767, 17, 22, 359, 32767, 32767,
988
+ 172, 0, 32767, 0, 206, 88, 0, 32767,
989
+ 35, 0, 275, 114, 339, 32767, 32767, 32767,
990
+ 32767, 32767, 524, 0, -52, 191, -115, 9,
991
+ 200, 102, 0, 32767, 3, 0, 0, 0,
992
+ -288, 0, -132, 32767, 0, 32767, 300, 0,
993
+ 0, 0, 212, 32767, 260, 32767, -279, 104,
994
+ 506, 0, 640, 38, 268, 32767, 131, 32767,
995
+ 32767, 32767, 32767, 0, 0, 32767, 32767, 18,
996
+ 100, 44, 67, 270, 245, 283, 224, -66,
997
+ 32767, 32767, 32767, -67, 32767, 389, 32767, 0,
998
+ 125, 354, 32767, 32767, -21, 124, 0, 204,
999
+ 32767, 0, 99, 32767, 267, 32767, 0, 32767,
1000
+ 32767, 231, 32767, -129, -113, 108, 23, 0,
1001
+ 0, 32767, 32767, 0, 32767, 269, 32767, 32767,
1002
+ -133, 32767, -384, 32767, 32767, 0, 32767, 32767,
1003
+ 32767, 0, 32767, 32767, 32767, 0, 322, 424,
1004
+ 117, -29, 32767, 32767, 145, 0, 0, 323,
1005
+ 119, 32767, 32767, 32767, 392, -164, -143, -25,
1006
+ -106, 0, 97, 32767, 32767, 235, 32767, 0,
1007
+ 32767, 411, 363, 32767, 31, 32767, 443, 32767,
1008
+ 76, 29, 32767, 323, 32767, 142, 32767, 0,
1009
+ 244, 0, 32767, 28, 32767, 0, 377, -8,
1010
+ -45, 32767, 37, 0, 350, 0, 32767, 32767,
1011
+ 38, 416, 32767, 265, -78, -308, -51, 705,
1012
+ 32767, 32767, 0, 66, 0, 32767, 32767, 32767,
1013
+ 81, -250, 32767, 1, 421, 32767, 32767, 0,
1014
+ 32767, 401, 198, 32767, 256, 290, 210, 32767,
1015
+ 32767, 32767, 32767, 0, 444, 211, -99, 220,
1016
+ 64, 32767, 32767, 32767, 32767, 190, 19, 0,
1017
+ 216, 32767, 262, 32767, 404, 562, -222, 0,
1018
+ 0, -162, 32767, 192, 65, 32767, 150, 191,
1019
+ 0, 218, 267, 32767, 32767, 32767, 399, 189,
1020
+ 356, 532, 0, 32767, 429, 32767, 32767, 54,
1021
+ 279, 151, 0, 353, 394, 176, 215, 32767,
1022
+ 15, 153, 137, 92, 420, 47, 253, 0,
1023
+ 298, 32767, 32767, 32767, 234, 164, 241, 32767,
1024
+ 0, 409, 0, 32767, 0, 32767, 0, 70,
1025
+ 32767, 32767, 32767, 0, 32767, 32767, 32767, -138,
1026
+ 32767, 32767, -46, 32767, 97, 32767, 0, -126,
1027
+ 32767, 169, 322, 392, 32767, 0, 32767, 32767,
1028
+ 0, 282, 296, 32767, 0, 403, 32767, -24,
1029
+ 32767, -34, 32767, 32767, 32767, 418, 32767, 0,
1030
+ 97, 238, 32767, 144, 428, 32767, 2, 32767,
1031
+ 32767, 32767, 194, -182, 12, 32767, 391, 32767,
1032
+ 880, 32767, 32767, 50, 331, 0, 0, 358,
1033
+ 20, 32767, 32767, 222, 317, 32767, 0, 125,
1034
+ 32767, 0, 32767, 284, 32767, 32767, 197, 0,
1035
+ 63, 32767, 0, 188, 32767, 32767, 147, 190,
1036
+ 344, 32767, -42, 32767, 0, 187, 32767, 32767,
1037
+ 350, 32767, 0, 0, 127, 32767, 32767, 161,
1038
+ 32767, 0, 0, 382, 32767, 32767, 316, 130,
1039
+ 32767, 379, 32767, 383, 368, 93, -195, 0,
1040
+ 233, 73, 32767, 100, 32767, 338, 90, 32767,
1041
+ 258, 32767, 32767, 235, 175, 32767, 32767, 0,
1042
+ -9, 0, 0, 32767, 32767, 111, 417, 330,
1043
+ 0, 0, 225, 32767, 0, 0, 32767, 0,
1044
+ 64, 32767, 32767, 16, 113, 29, 0, 32767,
1045
+ 32767, 0, 43, 0, 365, -41, -284, 0,
1046
+ 0, 0, 61, 314, 255, 0, 32767, 145,
1047
+ 32767, -445, 32767, 32767, 154,
1048
+ };
1049
+
1050
+ const unsigned char *k = (const unsigned char *) key;
1051
+ uint32 a = 0;
1052
+ uint32 b = 3;
1053
+
1054
+ while (keylen--)
1055
+ {
1056
+ unsigned char c = *k++ | 0x20;
1057
+
1058
+ a = a * 31 + c;
1059
+ b = b * 127 + c;
1060
+ }
1061
+ return h[a % 901] + h[b % 901];
1062
+ }
1063
+
1064
+ const ScanKeywordList ScanKeywords = {
1065
+ ScanKeywords_kw_string,
1066
+ ScanKeywords_kw_offsets,
1067
+ ScanKeywords_hash_func,
1068
+ SCANKEYWORDS_NUM_KEYWORDS,
1069
+ 17
1070
+ };
1071
+
1072
+ #endif /* KWLIST_D_H */