alf 0.10.1 → 0.11.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (682) hide show
  1. data/CHANGELOG.md +25 -0
  2. data/Gemfile +8 -8
  3. data/Gemfile.lock +22 -20
  4. data/Rakefile +1 -1
  5. data/alf.gemspec +31 -30
  6. data/alf.noespec +11 -9
  7. data/bin/alf +1 -1
  8. data/lib/alf/aggregator/avg.rb +39 -0
  9. data/lib/alf/aggregator/class_methods.rb +32 -14
  10. data/lib/alf/aggregator/collect.rb +32 -0
  11. data/lib/alf/aggregator/concat.rb +47 -0
  12. data/lib/alf/aggregator/count.rb +32 -0
  13. data/lib/alf/aggregator/{base.rb → instance_methods.rb} +54 -30
  14. data/lib/alf/aggregator/max.rb +32 -0
  15. data/lib/alf/aggregator/min.rb +32 -0
  16. data/lib/alf/aggregator/stddev.rb +25 -0
  17. data/lib/alf/aggregator/sum.rb +32 -0
  18. data/lib/alf/aggregator/variance.rb +45 -0
  19. data/lib/alf/aggregator.rb +51 -0
  20. data/lib/alf/environment/class_methods.rb +37 -35
  21. data/lib/alf/environment/folder.rb +26 -28
  22. data/lib/alf/environment/{base.rb → instance_methods.rb} +8 -19
  23. data/lib/alf/environment.rb +34 -0
  24. data/lib/alf/errors.rb +1 -0
  25. data/lib/alf/iterator/class_methods.rb +0 -2
  26. data/lib/alf/iterator/proxy.rb +7 -13
  27. data/lib/alf/iterator.rb +27 -0
  28. data/lib/alf/lispy/instance_methods.rb +14 -14
  29. data/lib/alf/lispy.rb +24 -0
  30. data/lib/alf/loader.rb +1 -1
  31. data/lib/alf/operator/binary.rb +4 -15
  32. data/lib/alf/operator/class_methods.rb +33 -83
  33. data/lib/alf/operator/instance_methods.rb +29 -0
  34. data/lib/alf/operator/non_relational/autonum.rb +17 -22
  35. data/lib/alf/operator/non_relational/clip.rb +18 -18
  36. data/lib/alf/operator/non_relational/coerce.rb +17 -19
  37. data/lib/alf/operator/non_relational/compact.rb +13 -57
  38. data/lib/alf/operator/non_relational/defaults.rb +20 -23
  39. data/lib/alf/operator/non_relational/generator.rb +14 -32
  40. data/lib/alf/operator/non_relational/sort.rb +16 -20
  41. data/lib/alf/operator/nullary.rb +0 -9
  42. data/lib/alf/operator/relational/extend.rb +17 -22
  43. data/lib/alf/operator/relational/group.rb +16 -27
  44. data/lib/alf/operator/relational/heading.rb +15 -25
  45. data/lib/alf/operator/relational/intersect.rb +14 -33
  46. data/lib/alf/operator/relational/join.rb +15 -103
  47. data/lib/alf/operator/relational/matching.rb +15 -42
  48. data/lib/alf/operator/relational/minus.rb +14 -33
  49. data/lib/alf/operator/relational/not_matching.rb +15 -42
  50. data/lib/alf/operator/relational/project.rb +20 -20
  51. data/lib/alf/operator/relational/quota.rb +19 -47
  52. data/lib/alf/operator/relational/rank.rb +19 -52
  53. data/lib/alf/operator/relational/rename.rb +16 -17
  54. data/lib/alf/operator/relational/restrict.rb +16 -18
  55. data/lib/alf/operator/relational/summarize.rb +19 -75
  56. data/lib/alf/operator/relational/ungroup.rb +16 -22
  57. data/lib/alf/operator/relational/union.rb +17 -29
  58. data/lib/alf/operator/relational/unwrap.rb +17 -19
  59. data/lib/alf/operator/relational/wrap.rb +18 -20
  60. data/lib/alf/operator/signature.rb +67 -96
  61. data/lib/alf/operator/unary.rb +4 -26
  62. data/lib/alf/operator.rb +68 -0
  63. data/lib/alf/reader/alf_file.rb +5 -5
  64. data/lib/alf/reader/class_methods.rb +47 -38
  65. data/lib/alf/reader/{base.rb → instance_methods.rb} +18 -40
  66. data/lib/alf/reader/rash.rb +3 -3
  67. data/lib/alf/reader.rb +37 -0
  68. data/lib/alf/relation/instance_methods.rb +17 -37
  69. data/lib/alf/relation.rb +28 -0
  70. data/lib/alf/renderer/{base.rb → instance_methods.rb} +13 -30
  71. data/lib/alf/renderer.rb +32 -0
  72. data/lib/alf/tools/coerce.rb +18 -7
  73. data/lib/alf/tools/miscellaneous.rb +56 -29
  74. data/lib/alf/tools/to_lispy.rb +37 -40
  75. data/lib/alf/tools/to_ruby_literal.rb +24 -7
  76. data/lib/alf/tools/tuple_handle.rb +27 -17
  77. data/lib/alf/tools.rb +14 -0
  78. data/lib/alf/types/attr_list.rb +135 -31
  79. data/lib/alf/types/attr_name.rb +56 -18
  80. data/lib/alf/types/boolean.rb +18 -5
  81. data/lib/alf/types/heading.rb +83 -59
  82. data/lib/alf/types/ordering.rb +117 -64
  83. data/lib/alf/types/renaming.rb +73 -33
  84. data/lib/alf/types/size.rb +57 -0
  85. data/lib/alf/types/summarization.rb +105 -43
  86. data/lib/alf/types/tuple_computation.rb +113 -38
  87. data/lib/alf/types/tuple_expression.rb +122 -31
  88. data/lib/alf/types/tuple_predicate.rb +64 -40
  89. data/lib/alf/types.rb +49 -0
  90. data/lib/alf/version.rb +6 -6
  91. data/lib/alf-csv/alf/csv/commons.rb +36 -0
  92. data/lib/alf-csv/alf/csv/reader.rb +33 -0
  93. data/lib/alf-csv/alf/csv/renderer.rb +38 -0
  94. data/lib/alf-csv/alf/csv.rb +3 -0
  95. data/lib/alf-engine/alf/engine/aggregate.rb +44 -0
  96. data/lib/alf-engine/alf/engine/autonum.rb +45 -0
  97. data/lib/{alf/operator → alf-engine/alf/engine}/cesure.rb +13 -13
  98. data/lib/alf-engine/alf/engine/clip.rb +53 -0
  99. data/lib/alf-engine/alf/engine/coerce.rb +46 -0
  100. data/lib/alf-engine/alf/engine/cog.rb +7 -0
  101. data/lib/alf-engine/alf/engine/compact/set.rb +23 -0
  102. data/lib/alf-engine/alf/engine/compact/uniq.rb +23 -0
  103. data/lib/alf-engine/alf/engine/compact.rb +26 -0
  104. data/lib/alf-engine/alf/engine/concat.rb +25 -0
  105. data/lib/alf-engine/alf/engine/defaults.rb +43 -0
  106. data/lib/alf-engine/alf/engine/filter.rb +41 -0
  107. data/lib/alf-engine/alf/engine/generator.rb +50 -0
  108. data/lib/alf-engine/alf/engine/group/hash.rb +40 -0
  109. data/lib/alf-engine/alf/engine/group.rb +7 -0
  110. data/lib/alf-engine/alf/engine/join/hash.rb +35 -0
  111. data/lib/alf-engine/alf/engine/join.rb +7 -0
  112. data/lib/alf-engine/alf/engine/materialize/array.rb +78 -0
  113. data/lib/alf-engine/alf/engine/materialize/hash.rb +122 -0
  114. data/lib/alf-engine/alf/engine/materialize.rb +8 -0
  115. data/lib/alf-engine/alf/engine/quota/cesure.rb +46 -0
  116. data/lib/alf-engine/alf/engine/quota.rb +7 -0
  117. data/lib/alf-engine/alf/engine/rank/cesure.rb +48 -0
  118. data/lib/alf-engine/alf/engine/rank.rb +7 -0
  119. data/lib/alf-engine/alf/engine/rename.rb +39 -0
  120. data/lib/alf-engine/alf/engine/semi/hash.rb +39 -0
  121. data/lib/alf-engine/alf/engine/semi.rb +7 -0
  122. data/lib/alf-engine/alf/engine/set_attr.rb +46 -0
  123. data/lib/alf-engine/alf/engine/sort/in_memory.rb +39 -0
  124. data/lib/alf-engine/alf/engine/sort.rb +28 -0
  125. data/lib/alf-engine/alf/engine/summarize/cesure.rb +51 -0
  126. data/lib/alf-engine/alf/engine/summarize/hash.rb +35 -0
  127. data/lib/alf-engine/alf/engine/summarize.rb +8 -0
  128. data/lib/alf-engine/alf/engine/ungroup.rb +29 -0
  129. data/lib/alf-engine/alf/engine/unwrap.rb +31 -0
  130. data/lib/alf-engine/alf/engine/wrap.rb +39 -0
  131. data/lib/alf-engine/alf/engine.rb +25 -0
  132. data/lib/{alf/extra/logs.rb → alf-logs/alf/logs/reader.rb} +14 -16
  133. data/lib/alf-logs/alf/logs.rb +1 -0
  134. data/lib/alf-sequel/alf/sequel/environment.rb +57 -0
  135. data/lib/alf-sequel/alf/sequel/iterator.rb +21 -0
  136. data/lib/alf-sequel/alf/sequel.rb +2 -0
  137. data/lib/{alf → alf-shell/alf/shell}/command/exec.rb +3 -4
  138. data/lib/{alf → alf-shell/alf/shell}/command/help.rb +3 -4
  139. data/lib/alf-shell/alf/shell/command/main/class_methods.rb +46 -0
  140. data/lib/{alf → alf-shell/alf/shell}/command/main.rb +9 -51
  141. data/lib/{alf → alf-shell/alf/shell}/command/show.rb +5 -7
  142. data/lib/alf-shell/alf/shell/command.rb +26 -0
  143. data/lib/{alf/command → alf-shell/alf/shell}/doc_manager.rb +3 -3
  144. data/lib/alf-shell/alf/shell/operator.rb +86 -0
  145. data/lib/alf-shell/alf/shell.rb +40 -0
  146. data/lib/{alf/extra/yaml.rb → alf-yaml/alf/yaml/renderer.rb} +5 -7
  147. data/lib/alf-yaml/alf/yaml.rb +1 -0
  148. data/lib/alf.rb +17 -358
  149. data/spec/{unit → integration}/lispy/test_relation.rb +0 -0
  150. data/spec/{unit → integration}/lispy/test_run.rb +0 -0
  151. data/spec/{unit → integration}/lispy/test_tuple.rb +0 -0
  152. data/spec/integration/{command → shell}/alf/alf.db +0 -0
  153. data/spec/integration/{command → shell}/alf/alf_e.cmd +0 -0
  154. data/spec/integration/{command → shell}/alf/alf_e.stdout +0 -0
  155. data/spec/integration/shell/alf/alf_env.cmd +1 -0
  156. data/spec/integration/{command → shell}/alf/alf_env.stdout +0 -0
  157. data/spec/integration/shell/alf/alf_env_sqlite.cmd +1 -0
  158. data/spec/integration/{command → shell}/alf/alf_env_sqlite.stdout +0 -0
  159. data/spec/integration/{command → shell}/alf/alf_help.cmd +0 -0
  160. data/spec/integration/{command → shell}/alf/alf_help.stdout +0 -0
  161. data/spec/integration/{command → shell}/alf/alf_implicit.alf +0 -0
  162. data/spec/integration/shell/alf/alf_implicit_exec.cmd +1 -0
  163. data/spec/integration/{command → shell}/alf/alf_implicit_exec.stdout +0 -0
  164. data/spec/integration/{command → shell}/alf/alf_r.cmd +0 -0
  165. data/spec/integration/{command → shell}/alf/alf_r.stdout +0 -0
  166. data/spec/integration/{command → shell}/alf/alf_version.cmd +0 -0
  167. data/spec/integration/{command → shell}/alf/alf_version.stdout +0 -0
  168. data/spec/integration/{command → shell}/alf/alf_yaml.cmd +0 -0
  169. data/spec/integration/{command → shell}/alf/alf_yaml.stdout +0 -0
  170. data/spec/integration/{command → shell}/alf/rel.rash +0 -0
  171. data/spec/integration/{command → shell}/autonum/autonum_0.cmd +0 -0
  172. data/spec/integration/{command → shell}/autonum/autonum_0.stdout +0 -0
  173. data/spec/integration/shell/autonum/autonum_1.cmd +1 -0
  174. data/spec/integration/{command → shell}/autonum/autonum_1.stdout +0 -0
  175. data/spec/integration/shell/clip/clip_0.cmd +1 -0
  176. data/spec/integration/{command → shell}/clip/clip_0.stdout +0 -0
  177. data/spec/integration/shell/clip/clip_1.cmd +1 -0
  178. data/spec/integration/{command → shell}/clip/clip_1.stdout +0 -0
  179. data/spec/integration/{command → shell}/coerce/coerce_1.cmd +0 -0
  180. data/spec/integration/{command → shell}/coerce/coerce_1.stdout +0 -0
  181. data/spec/integration/{command → shell}/compact/compact_0.cmd +0 -0
  182. data/spec/integration/{command → shell}/compact/compact_0.stdout +0 -0
  183. data/spec/integration/{command → shell}/defaults/defaults_0.cmd +0 -0
  184. data/spec/integration/{command → shell}/defaults/defaults_0.stdout +0 -0
  185. data/spec/integration/{command → shell}/defaults/defaults_1.cmd +0 -0
  186. data/spec/integration/{command → shell}/defaults/defaults_1.stdout +0 -0
  187. data/spec/integration/{command → shell}/defaults/defaults_2.cmd +0 -0
  188. data/spec/integration/{command → shell}/defaults/defaults_2.stdout +0 -0
  189. data/spec/integration/{command → shell}/extend/extend_0.cmd +0 -0
  190. data/spec/integration/{command → shell}/extend/extend_0.stdout +0 -0
  191. data/spec/integration/{command → shell}/generator/generator_1.cmd +0 -0
  192. data/spec/integration/{command → shell}/generator/generator_1.stdout +0 -0
  193. data/spec/integration/{command → shell}/generator/generator_2.cmd +0 -0
  194. data/spec/integration/{command → shell}/generator/generator_2.stdout +0 -0
  195. data/spec/integration/{command → shell}/generator/generator_3.cmd +0 -0
  196. data/spec/integration/{command → shell}/generator/generator_3.stdout +0 -0
  197. data/spec/integration/{command → shell}/group/group_0.cmd +0 -0
  198. data/spec/integration/{command → shell}/group/group_0.stdout +0 -0
  199. data/spec/integration/{command → shell}/group/group_1.cmd +0 -0
  200. data/spec/integration/{command → shell}/group/group_1.stdout +0 -0
  201. data/spec/integration/{command → shell}/help/help_1.cmd +0 -0
  202. data/spec/integration/{command → shell}/help/help_1.stdout +0 -0
  203. data/spec/integration/{command → shell}/intersect/intersect_0.cmd +0 -0
  204. data/spec/integration/{command → shell}/intersect/intersect_0.stdout +0 -0
  205. data/spec/integration/{command → shell}/join/join_0.cmd +0 -0
  206. data/spec/integration/{command → shell}/join/join_0.stdout +0 -0
  207. data/spec/integration/{command → shell}/matching/matching_0.cmd +0 -0
  208. data/spec/integration/{command → shell}/matching/matching_0.stdout +0 -0
  209. data/spec/integration/{command → shell}/minus/minus_0.cmd +0 -0
  210. data/spec/integration/{command → shell}/minus/minus_0.stdout +0 -0
  211. data/spec/integration/{command → shell}/not-matching/not-matching_0.cmd +0 -0
  212. data/spec/integration/{command → shell}/not-matching/not-matching_0.stdout +0 -0
  213. data/spec/integration/{command → shell}/project/project_0.cmd +0 -0
  214. data/spec/integration/{command → shell}/project/project_0.stdout +0 -0
  215. data/spec/integration/{command → shell}/project/project_1.cmd +0 -0
  216. data/spec/integration/{command → shell}/project/project_1.stdout +0 -0
  217. data/spec/integration/{command → shell}/quota/quota_0.cmd +0 -0
  218. data/spec/integration/{command → shell}/quota/quota_0.stdout +0 -0
  219. data/spec/integration/{command → shell}/rank/rank_1.cmd +0 -0
  220. data/spec/integration/{command → shell}/rank/rank_1.stdout +1 -1
  221. data/spec/integration/{command → shell}/rank/rank_2.cmd +0 -0
  222. data/spec/integration/{command → shell}/rank/rank_2.stdout +1 -1
  223. data/spec/integration/{command → shell}/rank/rank_3.cmd +0 -0
  224. data/spec/integration/{command → shell}/rank/rank_3.stdout +0 -0
  225. data/spec/integration/{command → shell}/rank/rank_4.cmd +0 -0
  226. data/spec/integration/{command → shell}/rank/rank_4.stdout +0 -0
  227. data/spec/integration/{command → shell}/rank/rank_5.cmd +0 -0
  228. data/spec/integration/{command → shell}/rank/rank_5.stdout +0 -0
  229. data/spec/integration/{command → shell}/rename/rename_0.cmd +0 -0
  230. data/spec/integration/{command → shell}/rename/rename_0.stdout +0 -0
  231. data/spec/integration/{command → shell}/restrict/restrict_0.cmd +0 -0
  232. data/spec/integration/{command → shell}/restrict/restrict_0.stdout +0 -0
  233. data/spec/integration/{command → shell}/restrict/restrict_1.cmd +0 -0
  234. data/spec/integration/{command → shell}/restrict/restrict_1.stdout +0 -0
  235. data/spec/integration/{command → shell}/show/show_base.cmd +0 -0
  236. data/spec/integration/{command → shell}/show/show_base.stdout +0 -0
  237. data/spec/integration/{command → shell}/show/show_base_sort_1.cmd +0 -0
  238. data/spec/integration/{command → shell}/show/show_base_sort_1.stdout +0 -0
  239. data/spec/integration/{command → shell}/show/show_base_sort_2.cmd +0 -0
  240. data/spec/integration/{command → shell}/show/show_base_sort_2.stdout +0 -0
  241. data/spec/integration/{command → shell}/show/show_conflictual.cmd +0 -0
  242. data/spec/integration/{command → shell}/show/show_conflictual.stdout +0 -0
  243. data/spec/integration/{command → shell}/show/show_csv.cmd +0 -0
  244. data/spec/integration/{command → shell}/show/show_csv.stdout +0 -0
  245. data/spec/integration/{command → shell}/show/show_ff.cmd +0 -0
  246. data/spec/integration/{command → shell}/show/show_ff.stdout +0 -0
  247. data/spec/integration/{command → shell}/show/show_rash.cmd +0 -0
  248. data/spec/integration/{command → shell}/show/show_rash.stdout +0 -0
  249. data/spec/integration/{command → shell}/show/show_rash_pretty.cmd +0 -0
  250. data/spec/integration/{command → shell}/show/show_rash_pretty.stdout +0 -0
  251. data/spec/integration/{command → shell}/show/show_yaml.cmd +0 -0
  252. data/spec/integration/{command → shell}/show/show_yaml.stdout +0 -0
  253. data/spec/integration/{command → shell}/sort/sort_0.cmd +0 -0
  254. data/spec/integration/{command → shell}/sort/sort_0.stdout +0 -0
  255. data/spec/integration/{command → shell}/sort/sort_1.cmd +0 -0
  256. data/spec/integration/{command → shell}/sort/sort_1.stdout +0 -0
  257. data/spec/integration/{command → shell}/sort/sort_2.cmd +0 -0
  258. data/spec/integration/{command → shell}/sort/sort_2.stdout +0 -0
  259. data/spec/integration/{command → shell}/sort/sort_3.cmd +0 -0
  260. data/spec/integration/{command → shell}/sort/sort_3.stdout +0 -0
  261. data/spec/integration/{command → shell}/summarize/summarize_0.cmd +0 -0
  262. data/spec/integration/{command → shell}/summarize/summarize_0.stdout +0 -0
  263. data/spec/integration/{command → shell}/ungroup/ungroup_0.cmd +0 -0
  264. data/spec/integration/{command → shell}/ungroup/ungroup_0.stdout +0 -0
  265. data/spec/integration/{command → shell}/union/union_0.cmd +0 -0
  266. data/spec/integration/{command → shell}/union/union_0.stdout +0 -0
  267. data/spec/integration/{command → shell}/unwrap/unwrap_0.cmd +0 -0
  268. data/spec/integration/{command → shell}/unwrap/unwrap_0.stdout +0 -0
  269. data/spec/integration/{command → shell}/wrap/wrap_0.cmd +0 -0
  270. data/spec/integration/{command → shell}/wrap/wrap_0.stdout +0 -0
  271. data/spec/{unit → integration}/test_lispy.rb +0 -0
  272. data/spec/integration/{test_command.rb → test_shell.rb} +3 -3
  273. data/spec/regression/heading/test_heading_with_date.rb +1 -1
  274. data/spec/shared/a_valid_type_implementation.rb +47 -0
  275. data/spec/shared/an_operator_class.rb +2 -6
  276. data/spec/spec_helper.rb +9 -1
  277. data/spec/unit/alf-core/aggregator/test_avg.rb +22 -0
  278. data/spec/unit/alf-core/aggregator/test_collect.rb +25 -0
  279. data/spec/unit/alf-core/aggregator/test_concat.rb +31 -0
  280. data/spec/unit/alf-core/aggregator/test_count.rb +17 -0
  281. data/spec/unit/alf-core/aggregator/test_max.rb +23 -0
  282. data/spec/unit/alf-core/aggregator/test_min.rb +23 -0
  283. data/spec/unit/alf-core/aggregator/test_stddev.rb +27 -0
  284. data/spec/unit/alf-core/aggregator/test_sum.rb +23 -0
  285. data/spec/unit/alf-core/aggregator/test_variance.rb +29 -0
  286. data/spec/unit/{assumptions → alf-core/assumptions}/test_file.rb +0 -0
  287. data/spec/unit/{assumptions → alf-core/assumptions}/test_instance_eval.rb +0 -0
  288. data/spec/unit/{assumptions → alf-core/assumptions}/test_scoping.rb +0 -0
  289. data/spec/unit/{assumptions → alf-core/assumptions}/test_set.rb +0 -0
  290. data/spec/unit/{environment → alf-core/environment}/examples/suppliers.rash +0 -0
  291. data/spec/unit/alf-core/environment/test_folder.rb +53 -0
  292. data/spec/unit/{operator → alf-core/operator}/non_relational/test_autonum.rb +18 -31
  293. data/spec/unit/alf-core/operator/non_relational/test_clip.rb +35 -0
  294. data/spec/unit/{operator → alf-core/operator}/non_relational/test_coerce.rb +11 -17
  295. data/spec/unit/{operator/non_relational/compact/test_sort_based.rb → alf-core/operator/non_relational/test_compact.rb} +16 -14
  296. data/spec/unit/{operator → alf-core/operator}/non_relational/test_defaults.rb +17 -32
  297. data/spec/unit/{operator → alf-core/operator}/non_relational/test_generator.rb +21 -39
  298. data/spec/unit/{operator → alf-core/operator}/non_relational/test_sort.rb +20 -26
  299. data/spec/unit/{operator → alf-core/operator}/relational/test_extend.rb +8 -14
  300. data/spec/unit/{operator → alf-core/operator}/relational/test_group.rb +12 -28
  301. data/spec/unit/alf-core/operator/relational/test_heading.rb +27 -0
  302. data/spec/unit/{operator → alf-core/operator}/relational/test_intersect.rb +22 -22
  303. data/spec/unit/{operator → alf-core/operator}/relational/test_join.rb +7 -7
  304. data/spec/unit/{operator → alf-core/operator}/relational/test_minus.rb +23 -23
  305. data/spec/unit/alf-core/operator/relational/test_project.rb +62 -0
  306. data/spec/unit/{operator → alf-core/operator}/relational/test_quota.rb +8 -15
  307. data/spec/unit/alf-core/operator/relational/test_rank.rb +48 -0
  308. data/spec/unit/{operator → alf-core/operator}/relational/test_rename.rb +8 -14
  309. data/spec/unit/alf-core/operator/relational/test_restrict.rb +45 -0
  310. data/spec/unit/{operator → alf-core/operator}/relational/test_summarize.rb +13 -31
  311. data/spec/unit/{operator → alf-core/operator}/relational/test_ungroup.rb +9 -15
  312. data/spec/unit/{operator → alf-core/operator}/relational/test_union.rb +11 -11
  313. data/spec/unit/{operator → alf-core/operator}/relational/test_unwrap.rb +10 -16
  314. data/spec/unit/{operator → alf-core/operator}/relational/test_wrap.rb +10 -16
  315. data/spec/unit/alf-core/operator/signature/test_argv2args.rb +82 -0
  316. data/spec/unit/alf-core/operator/signature/test_collect_on.rb +38 -0
  317. data/spec/unit/{operator → alf-core/operator}/signature/test_initialize.rb +0 -0
  318. data/spec/unit/{operator → alf-core/operator}/signature/test_install.rb +0 -0
  319. data/spec/unit/{operator → alf-core/operator}/signature/test_option_parser.rb +0 -0
  320. data/spec/unit/alf-core/operator/signature/test_parse_args.rb +90 -0
  321. data/spec/unit/{operator → alf-core/operator}/signature/test_to_lispy.rb +0 -0
  322. data/spec/unit/{operator → alf-core/operator}/signature/test_to_shell.rb +0 -0
  323. data/spec/unit/{operator → alf-core/operator}/test_non_relational.rb +0 -0
  324. data/spec/unit/{operator → alf-core/operator}/test_relational.rb +0 -0
  325. data/spec/unit/{reader → alf-core/reader}/input.rb +0 -0
  326. data/spec/unit/{reader → alf-core/reader}/test_alf_file.rb +0 -0
  327. data/spec/unit/{reader → alf-core/reader}/test_initialize.rb +0 -0
  328. data/spec/unit/alf-core/reader/test_looks_a_path.rb +20 -0
  329. data/spec/unit/{reader → alf-core/reader}/test_rash.rb +0 -0
  330. data/spec/unit/{relation → alf-core/relation}/test_coerce.rb +0 -0
  331. data/spec/unit/{relation → alf-core/relation}/test_inspect.rb +0 -0
  332. data/spec/unit/{relation → alf-core/relation}/test_relops.rb +0 -0
  333. data/spec/unit/{relation → alf-core/relation}/test_to_a.rb +0 -0
  334. data/spec/unit/{renderer → alf-core/renderer}/test_initialize.rb +0 -0
  335. data/spec/unit/alf-core/test_aggregator.rb +58 -0
  336. data/spec/unit/{test_environment.rb → alf-core/test_environment.rb} +8 -21
  337. data/spec/unit/{test_operator.rb → alf-core/test_operator.rb} +0 -0
  338. data/spec/unit/{test_reader.rb → alf-core/test_reader.rb} +0 -0
  339. data/spec/unit/{test_relation.rb → alf-core/test_relation.rb} +0 -0
  340. data/spec/unit/{test_renderer.rb → alf-core/test_renderer.rb} +0 -0
  341. data/spec/unit/{text → alf-core/text}/test_cell.rb +0 -0
  342. data/spec/unit/{text → alf-core/text}/test_row.rb +0 -0
  343. data/spec/unit/{text → alf-core/text}/test_table.rb +0 -0
  344. data/spec/unit/alf-core/tools/test_class_name.rb +16 -0
  345. data/spec/unit/{tools → alf-core/tools}/test_coalesce.rb +6 -2
  346. data/spec/unit/alf-core/tools/test_coerce.rb +16 -0
  347. data/spec/unit/alf-core/tools/test_ruby_case.rb +16 -0
  348. data/spec/unit/{tools → alf-core/tools}/test_to_lispy.rb +14 -7
  349. data/spec/unit/{tools → alf-core/tools}/test_to_ruby_literal.rb +5 -5
  350. data/spec/unit/{tools → alf-core/tools}/test_tuple_handle.rb +14 -14
  351. data/spec/unit/alf-core/tools/test_tuple_heading.rb +15 -0
  352. data/spec/unit/{tools → alf-core/tools}/test_varargs.rb +9 -6
  353. data/spec/unit/alf-core/types/test_attr_list.rb +188 -0
  354. data/spec/unit/alf-core/types/test_attr_name.rb +78 -0
  355. data/spec/unit/{types/test_attr_name.rb → alf-core/types/test_boolean.rb} +18 -28
  356. data/spec/unit/alf-core/types/test_class_methods.rb +24 -0
  357. data/spec/unit/alf-core/types/test_heading.rb +146 -0
  358. data/spec/unit/alf-core/types/test_ordering.rb +185 -0
  359. data/spec/unit/alf-core/types/test_renaming.rb +72 -0
  360. data/spec/unit/alf-core/types/test_size.rb +74 -0
  361. data/spec/unit/{types → alf-core/types}/test_summarization.rb +46 -14
  362. data/spec/unit/{types → alf-core/types}/test_tuple_computation.rb +46 -10
  363. data/spec/unit/alf-core/types/test_tuple_expression.rb +122 -0
  364. data/spec/unit/{types → alf-core/types}/test_tuple_predicate.rb +51 -22
  365. data/spec/unit/{csv → alf-csv}/input.csv +0 -0
  366. data/spec/unit/{csv → alf-csv}/test_reader.rb +0 -0
  367. data/spec/unit/{csv → alf-csv}/test_renderer.rb +1 -1
  368. data/spec/unit/alf-engine/compact/test_set.rb +33 -0
  369. data/spec/unit/alf-engine/compact/test_uniq.rb +33 -0
  370. data/spec/unit/alf-engine/group/test_hash.rb +34 -0
  371. data/spec/unit/{operator/relational/join/test_hash_based.rb → alf-engine/join/test_hash.rb} +21 -29
  372. data/spec/unit/alf-engine/materialize/test_array.rb +28 -0
  373. data/spec/unit/alf-engine/materialize/test_hash.rb +76 -0
  374. data/spec/unit/alf-engine/quota/test_cesure.rb +34 -0
  375. data/spec/unit/{operator/relational/test_rank.rb → alf-engine/rank/test_cesure.rb} +21 -24
  376. data/spec/unit/alf-engine/semi/test_hash.rb +58 -0
  377. data/spec/unit/alf-engine/sort/test_in_memory.rb +32 -0
  378. data/spec/unit/{operator/relational/summarize/test_hash_based.rb → alf-engine/summarize/test_cesure.rb} +15 -21
  379. data/spec/unit/{operator/relational/summarize/test_sort_based.rb → alf-engine/summarize/test_hash.rb} +15 -21
  380. data/spec/unit/alf-engine/test_aggregate.rb +26 -0
  381. data/spec/unit/alf-engine/test_autonum.rb +24 -0
  382. data/spec/unit/alf-engine/test_clip.rb +34 -0
  383. data/spec/unit/alf-engine/test_coerce.rb +35 -0
  384. data/spec/unit/alf-engine/test_compact.rb +33 -0
  385. data/spec/unit/alf-engine/test_concat.rb +38 -0
  386. data/spec/unit/alf-engine/test_defaults.rb +37 -0
  387. data/spec/unit/alf-engine/test_filter.rb +23 -0
  388. data/spec/unit/alf-engine/test_generator.rb +25 -0
  389. data/spec/unit/alf-engine/test_rename.rb +24 -0
  390. data/spec/unit/alf-engine/test_set_attr.rb +38 -0
  391. data/spec/unit/alf-engine/test_sort.rb +32 -0
  392. data/spec/unit/alf-engine/test_ungroup.rb +28 -0
  393. data/spec/unit/alf-engine/test_unwrap.rb +20 -0
  394. data/spec/unit/alf-engine/test_wrap.rb +26 -0
  395. data/spec/unit/{logs → alf-logs}/apache_combined.log +0 -0
  396. data/spec/unit/{logs → alf-logs}/postgresql.log +0 -0
  397. data/spec/unit/{logs → alf-logs}/test_reader.rb +15 -16
  398. data/spec/unit/{sequel → alf-sequel}/alf.db +0 -0
  399. data/spec/unit/alf-sequel/test_environment.rb +69 -0
  400. data/spec/unit/{command → alf-shell}/doc_manager/dynamic.md +0 -0
  401. data/spec/unit/{command → alf-shell}/doc_manager/example.md +0 -0
  402. data/spec/unit/{command → alf-shell}/doc_manager/example_1.txt +0 -0
  403. data/spec/unit/{command → alf-shell}/doc_manager/static.md +0 -0
  404. data/spec/unit/{command → alf-shell}/doc_manager/test_call.rb +2 -3
  405. data/spec/unit/alf-shell/main/test_class_methods.rb +44 -0
  406. data/spec/unit/alf-shell/operator/test_autonum.rb +28 -0
  407. data/spec/unit/alf-shell/operator/test_clip.rb +29 -0
  408. data/spec/unit/alf-shell/operator/test_coerce.rb +21 -0
  409. data/spec/unit/alf-shell/operator/test_compact.rb +16 -0
  410. data/spec/unit/alf-shell/operator/test_defaults.rb +29 -0
  411. data/spec/unit/alf-shell/operator/test_extend.rb +21 -0
  412. data/spec/unit/alf-shell/operator/test_generator.rb +37 -0
  413. data/spec/unit/alf-shell/operator/test_group.rb +32 -0
  414. data/spec/unit/alf-shell/operator/test_heading.rb +16 -0
  415. data/spec/unit/alf-shell/operator/test_intersect.rb +18 -0
  416. data/spec/unit/alf-shell/operator/test_join.rb +18 -0
  417. data/spec/unit/alf-shell/operator/test_matching.rb +18 -0
  418. data/spec/unit/alf-shell/operator/test_minus.rb +18 -0
  419. data/spec/unit/alf-shell/operator/test_not_matching.rb +18 -0
  420. data/spec/unit/alf-shell/operator/test_project.rb +38 -0
  421. data/spec/unit/alf-shell/operator/test_quota.rb +23 -0
  422. data/spec/unit/alf-shell/operator/test_rank.rb +30 -0
  423. data/spec/unit/alf-shell/operator/test_rename.rb +21 -0
  424. data/spec/unit/alf-shell/operator/test_restrict.rb +35 -0
  425. data/spec/unit/alf-shell/operator/test_sort.rb +49 -0
  426. data/spec/unit/alf-shell/operator/test_summarize.rb +30 -0
  427. data/spec/unit/alf-shell/operator/test_ungroup.rb +28 -0
  428. data/spec/unit/alf-shell/operator/test_union.rb +18 -0
  429. data/spec/unit/alf-shell/operator/test_unwrap.rb +28 -0
  430. data/spec/unit/alf-shell/operator/test_wrap.rb +30 -0
  431. data/tasks/debug_mail.rake +42 -45
  432. data/tasks/gem.rake +13 -13
  433. data/tasks/gh-pages.rake +11 -6
  434. data/tasks/integration_test.rake +0 -8
  435. data/tasks/regression_test.rake +0 -8
  436. data/tasks/unit_test.rake +0 -8
  437. data/tasks/yard.rake +13 -13
  438. metadata +909 -1107
  439. data/examples/hitradio/compact.rb +0 -48
  440. data/examples/hitradio/compare1.rb +0 -28
  441. data/examples/hitradio/gz_reader.rb +0 -23
  442. data/examples/hitradio/hitradio-1.alf +0 -1
  443. data/examples/hitradio/hitradio.log +0 -25080
  444. data/examples/hitradio/hitradio.mar +0 -25081
  445. data/examples/hitradio/hitradio.mar.gz +0 -0
  446. data/examples/hitradio/hitradio.rash +0 -25080
  447. data/examples/hitradio/mar_reader.rb +0 -18
  448. data/examples/northwind/customers.csv +0 -92
  449. data/examples/northwind/northwind.db +0 -0
  450. data/examples/northwind/orders.csv +0 -831
  451. data/lib/alf/aggregator/aggregators.rb +0 -105
  452. data/lib/alf/aggregator/aggregators.rbc +0 -2640
  453. data/lib/alf/aggregator/base.rbc +0 -1055
  454. data/lib/alf/aggregator/class_methods.rbc +0 -830
  455. data/lib/alf/buffer/sorted.rb +0 -48
  456. data/lib/alf/buffer/sorted.rbc +0 -715
  457. data/lib/alf/command/class_methods.rb +0 -27
  458. data/lib/alf/command/class_methods.rbc +0 -453
  459. data/lib/alf/command/doc_manager.rbc +0 -1604
  460. data/lib/alf/command/exec.rbc +0 -408
  461. data/lib/alf/command/help.rbc +0 -764
  462. data/lib/alf/command/main.rbc +0 -3612
  463. data/lib/alf/command/show.rbc +0 -1327
  464. data/lib/alf/environment/base.rbc +0 -459
  465. data/lib/alf/environment/class_methods.rbc +0 -1110
  466. data/lib/alf/environment/explicit.rb +0 -38
  467. data/lib/alf/environment/explicit.rbc +0 -601
  468. data/lib/alf/environment/folder.rbc +0 -942
  469. data/lib/alf/errors.rbc +0 -155
  470. data/lib/alf/extra/csv.rb +0 -107
  471. data/lib/alf/extra/csv.rbc +0 -2021
  472. data/lib/alf/extra/logs.rbc +0 -1957
  473. data/lib/alf/extra/sequel.rb +0 -77
  474. data/lib/alf/extra/sequel.rbc +0 -1417
  475. data/lib/alf/extra/yaml.rbc +0 -435
  476. data/lib/alf/extra.rb +0 -5
  477. data/lib/alf/extra.rbc +0 -101
  478. data/lib/alf/iterator/base.rb +0 -38
  479. data/lib/alf/iterator/base.rbc +0 -437
  480. data/lib/alf/iterator/class_methods.rbc +0 -518
  481. data/lib/alf/iterator/proxy.rbc +0 -599
  482. data/lib/alf/lispy/instance_methods.rbc +0 -2535
  483. data/lib/alf/loader.rbc +0 -85
  484. data/lib/alf/operator/base.rb +0 -74
  485. data/lib/alf/operator/base.rbc +0 -860
  486. data/lib/alf/operator/binary.rbc +0 -595
  487. data/lib/alf/operator/cesure.rbc +0 -883
  488. data/lib/alf/operator/class_methods.rbc +0 -1915
  489. data/lib/alf/operator/experimental.rbc +0 -200
  490. data/lib/alf/operator/non_relational/autonum.rbc +0 -587
  491. data/lib/alf/operator/non_relational/clip.rbc +0 -522
  492. data/lib/alf/operator/non_relational/coerce.rbc +0 -596
  493. data/lib/alf/operator/non_relational/compact.rbc +0 -1283
  494. data/lib/alf/operator/non_relational/defaults.rbc +0 -733
  495. data/lib/alf/operator/non_relational/generator.rbc +0 -1015
  496. data/lib/alf/operator/non_relational/sort.rbc +0 -665
  497. data/lib/alf/operator/nullary.rbc +0 -404
  498. data/lib/alf/operator/relational/extend.rbc +0 -616
  499. data/lib/alf/operator/relational/group.rbc +0 -968
  500. data/lib/alf/operator/relational/heading.rbc +0 -657
  501. data/lib/alf/operator/relational/intersect.rbc +0 -969
  502. data/lib/alf/operator/relational/join.rbc +0 -1708
  503. data/lib/alf/operator/relational/matching.rbc +0 -1047
  504. data/lib/alf/operator/relational/minus.rbc +0 -965
  505. data/lib/alf/operator/relational/not_matching.rbc +0 -1047
  506. data/lib/alf/operator/relational/project.rbc +0 -669
  507. data/lib/alf/operator/relational/quota.rbc +0 -1193
  508. data/lib/alf/operator/relational/rank.rbc +0 -1217
  509. data/lib/alf/operator/relational/rename.rbc +0 -496
  510. data/lib/alf/operator/relational/restrict.rbc +0 -611
  511. data/lib/alf/operator/relational/summarize.rbc +0 -1922
  512. data/lib/alf/operator/relational/ungroup.rbc +0 -643
  513. data/lib/alf/operator/relational/union.rbc +0 -846
  514. data/lib/alf/operator/relational/unwrap.rbc +0 -540
  515. data/lib/alf/operator/relational/wrap.rbc +0 -560
  516. data/lib/alf/operator/shortcut.rb +0 -53
  517. data/lib/alf/operator/shortcut.rbc +0 -809
  518. data/lib/alf/operator/signature.rbc +0 -4640
  519. data/lib/alf/operator/transform.rb +0 -27
  520. data/lib/alf/operator/transform.rbc +0 -484
  521. data/lib/alf/operator/unary.rbc +0 -629
  522. data/lib/alf/reader/alf_file.rbc +0 -464
  523. data/lib/alf/reader/base.rbc +0 -1613
  524. data/lib/alf/reader/class_methods.rbc +0 -1099
  525. data/lib/alf/reader/rash.rbc +0 -583
  526. data/lib/alf/relation/class_methods.rbc +0 -674
  527. data/lib/alf/relation/instance_methods.rbc +0 -2107
  528. data/lib/alf/renderer/base.rbc +0 -936
  529. data/lib/alf/renderer/class_methods.rbc +0 -875
  530. data/lib/alf/renderer/rash.rbc +0 -802
  531. data/lib/alf/renderer/text.rbc +0 -5530
  532. data/lib/alf/tools/coerce.rbc +0 -352
  533. data/lib/alf/tools/miscellaneous.rbc +0 -1497
  534. data/lib/alf/tools/to_lispy.rbc +0 -2618
  535. data/lib/alf/tools/to_ruby_literal.rbc +0 -344
  536. data/lib/alf/tools/tuple_handle.rbc +0 -738
  537. data/lib/alf/types/attr_list.rbc +0 -1535
  538. data/lib/alf/types/attr_name.rbc +0 -781
  539. data/lib/alf/types/boolean.rbc +0 -365
  540. data/lib/alf/types/heading.rbc +0 -1778
  541. data/lib/alf/types/ordering.rbc +0 -2228
  542. data/lib/alf/types/renaming.rbc +0 -1064
  543. data/lib/alf/types/summarization.rbc +0 -1394
  544. data/lib/alf/types/tuple_computation.rbc +0 -1061
  545. data/lib/alf/types/tuple_expression.rbc +0 -1016
  546. data/lib/alf/types/tuple_predicate.rbc +0 -1349
  547. data/lib/alf/version.rbc +0 -350
  548. data/lib/alf.rbc +0 -3884
  549. data/spec/integration/command/alf/alf_env.cmd +0 -1
  550. data/spec/integration/command/alf/alf_env_sqlite.cmd +0 -1
  551. data/spec/integration/command/alf/alf_implicit_exec.cmd +0 -1
  552. data/spec/integration/command/autonum/autonum_1.cmd +0 -1
  553. data/spec/integration/command/clip/clip_0.cmd +0 -1
  554. data/spec/integration/command/clip/clip_1.cmd +0 -1
  555. data/spec/integration/command/show/show_rash_2.cmd +0 -1
  556. data/spec/integration/command/show/show_rash_2.stdout +0 -5
  557. data/spec/integration/test_alf.rbc +0 -1098
  558. data/spec/integration/test_command.rbc +0 -1832
  559. data/spec/integration/test_examples.rbc +0 -559
  560. data/spec/integration/test_semantics.rbc +0 -991
  561. data/spec/regression/alf_file/test___FILE__.rbc +0 -524
  562. data/spec/regression/heading/test_heading_with_date.rbc +0 -381
  563. data/spec/regression/lispy/test_compile.rbc +0 -404
  564. data/spec/regression/logs/test_path_attribute.rbc +0 -687
  565. data/spec/regression/relation/test_relation_allbut_all.rbc +0 -468
  566. data/spec/regression/relation/test_relation_with_date.rbc +0 -381
  567. data/spec/regression/restrict/test_restrict_with_keywords.rbc +0 -628
  568. data/spec/shared/a_value.rbc +0 -337
  569. data/spec/shared/an_operator_class.rbc +0 -908
  570. data/spec/spec_helper.rbc +0 -453
  571. data/spec/unit/assumptions/test_file.rbc +0 -668
  572. data/spec/unit/assumptions/test_instance_eval.rbc +0 -654
  573. data/spec/unit/assumptions/test_scoping.rbc +0 -755
  574. data/spec/unit/assumptions/test_set.rbc +0 -1928
  575. data/spec/unit/command/doc_manager/test_call.rbc +0 -1537
  576. data/spec/unit/csv/test_reader.rbc +0 -2228
  577. data/spec/unit/csv/test_renderer.rbc +0 -2426
  578. data/spec/unit/environment/test_explicit.rb +0 -15
  579. data/spec/unit/environment/test_explicit.rbc +0 -464
  580. data/spec/unit/environment/test_folder.rb +0 -35
  581. data/spec/unit/environment/test_folder.rbc +0 -1304
  582. data/spec/unit/lispy/test_relation.rbc +0 -1477
  583. data/spec/unit/lispy/test_run.rbc +0 -1735
  584. data/spec/unit/lispy/test_tuple.rbc +0 -1686
  585. data/spec/unit/logs/test_reader.rbc +0 -1807
  586. data/spec/unit/operator/non_relational/compact/test_buffer_based.rb +0 -30
  587. data/spec/unit/operator/non_relational/compact/test_buffer_based.rbc +0 -1127
  588. data/spec/unit/operator/non_relational/compact/test_sort_based.rbc +0 -1127
  589. data/spec/unit/operator/non_relational/test_autonum.rbc +0 -1969
  590. data/spec/unit/operator/non_relational/test_clip.rb +0 -49
  591. data/spec/unit/operator/non_relational/test_clip.rbc +0 -1850
  592. data/spec/unit/operator/non_relational/test_coerce.rbc +0 -1290
  593. data/spec/unit/operator/non_relational/test_compact.rb +0 -38
  594. data/spec/unit/operator/non_relational/test_compact.rbc +0 -1382
  595. data/spec/unit/operator/non_relational/test_defaults.rbc +0 -2319
  596. data/spec/unit/operator/non_relational/test_generator.rbc +0 -2361
  597. data/spec/unit/operator/non_relational/test_sort.rbc +0 -2583
  598. data/spec/unit/operator/relational/join/test_hash_based.rbc +0 -2481
  599. data/spec/unit/operator/relational/matching/test_hash_based.rb +0 -60
  600. data/spec/unit/operator/relational/matching/test_hash_based.rbc +0 -2458
  601. data/spec/unit/operator/relational/not_matching/test_hash_based.rb +0 -37
  602. data/spec/unit/operator/relational/not_matching/test_hash_based.rbc +0 -1632
  603. data/spec/unit/operator/relational/summarize/test_hash_based.rbc +0 -1990
  604. data/spec/unit/operator/relational/summarize/test_sort_based.rbc +0 -1990
  605. data/spec/unit/operator/relational/test_extend.rbc +0 -1300
  606. data/spec/unit/operator/relational/test_group.rbc +0 -2142
  607. data/spec/unit/operator/relational/test_intersect.rbc +0 -2069
  608. data/spec/unit/operator/relational/test_join.rbc +0 -1282
  609. data/spec/unit/operator/relational/test_minus.rbc +0 -1995
  610. data/spec/unit/operator/relational/test_project.rb +0 -75
  611. data/spec/unit/operator/relational/test_project.rbc +0 -2870
  612. data/spec/unit/operator/relational/test_quota.rbc +0 -1788
  613. data/spec/unit/operator/relational/test_rank.rbc +0 -2079
  614. data/spec/unit/operator/relational/test_rename.rbc +0 -1158
  615. data/spec/unit/operator/relational/test_restrict.rb +0 -56
  616. data/spec/unit/operator/relational/test_restrict.rbc +0 -2305
  617. data/spec/unit/operator/relational/test_summarize.rbc +0 -2570
  618. data/spec/unit/operator/relational/test_ungroup.rbc +0 -1425
  619. data/spec/unit/operator/relational/test_union.rbc +0 -1089
  620. data/spec/unit/operator/relational/test_unwrap.rbc +0 -1176
  621. data/spec/unit/operator/relational/test_wrap.rbc +0 -1203
  622. data/spec/unit/operator/signature/test_collect_on.rb +0 -45
  623. data/spec/unit/operator/signature/test_collect_on.rbc +0 -1989
  624. data/spec/unit/operator/signature/test_initialize.rbc +0 -544
  625. data/spec/unit/operator/signature/test_install.rbc +0 -1671
  626. data/spec/unit/operator/signature/test_option_parser.rbc +0 -1348
  627. data/spec/unit/operator/signature/test_parse_args.rb +0 -60
  628. data/spec/unit/operator/signature/test_parse_args.rbc +0 -1908
  629. data/spec/unit/operator/signature/test_parse_argv.rb +0 -87
  630. data/spec/unit/operator/signature/test_parse_argv.rbc +0 -2878
  631. data/spec/unit/operator/signature/test_to_lispy.rbc +0 -3305
  632. data/spec/unit/operator/signature/test_to_shell.rbc +0 -3327
  633. data/spec/unit/operator/test_non_relational.rbc +0 -571
  634. data/spec/unit/operator/test_relational.rbc +0 -758
  635. data/spec/unit/reader/test_alf_file.rbc +0 -1107
  636. data/spec/unit/reader/test_initialize.rbc +0 -1774
  637. data/spec/unit/reader/test_rash.rbc +0 -1127
  638. data/spec/unit/relation/test_coerce.rbc +0 -2320
  639. data/spec/unit/relation/test_inspect.rbc +0 -502
  640. data/spec/unit/relation/test_relops.rbc +0 -1585
  641. data/spec/unit/relation/test_to_a.rbc +0 -1112
  642. data/spec/unit/renderer/test_initialize.rbc +0 -1766
  643. data/spec/unit/sequel/test_environment.rb +0 -54
  644. data/spec/unit/sequel/test_environment.rbc +0 -1723
  645. data/spec/unit/test_aggregator.rb +0 -109
  646. data/spec/unit/test_aggregator.rbc +0 -4358
  647. data/spec/unit/test_environment.rbc +0 -1271
  648. data/spec/unit/test_lispy.rbc +0 -879
  649. data/spec/unit/test_operator.rbc +0 -531
  650. data/spec/unit/test_reader.rbc +0 -1249
  651. data/spec/unit/test_relation.rbc +0 -2588
  652. data/spec/unit/test_renderer.rbc +0 -2011
  653. data/spec/unit/text/test_cell.rbc +0 -1532
  654. data/spec/unit/text/test_row.rbc +0 -847
  655. data/spec/unit/text/test_table.rbc +0 -978
  656. data/spec/unit/tools/test_coalesce.rbc +0 -456
  657. data/spec/unit/tools/test_coerce.rb +0 -10
  658. data/spec/unit/tools/test_coerce.rbc +0 -279
  659. data/spec/unit/tools/test_to_lispy.rbc +0 -5711
  660. data/spec/unit/tools/test_to_ruby_literal.rbc +0 -272
  661. data/spec/unit/tools/test_tools.rb +0 -25
  662. data/spec/unit/tools/test_tools.rbc +0 -672
  663. data/spec/unit/tools/test_tuple_handle.rbc +0 -1591
  664. data/spec/unit/tools/test_tuple_heading.rb +0 -20
  665. data/spec/unit/tools/test_tuple_heading.rbc +0 -821
  666. data/spec/unit/tools/test_varargs.rbc +0 -495
  667. data/spec/unit/types/heading/test_union.rb +0 -21
  668. data/spec/unit/types/heading/test_union.rbc +0 -1043
  669. data/spec/unit/types/test_attr_list.rb +0 -106
  670. data/spec/unit/types/test_attr_list.rbc +0 -4481
  671. data/spec/unit/types/test_attr_name.rbc +0 -1872
  672. data/spec/unit/types/test_heading.rb +0 -48
  673. data/spec/unit/types/test_heading.rbc +0 -1735
  674. data/spec/unit/types/test_ordering.rb +0 -127
  675. data/spec/unit/types/test_ordering.rbc +0 -3695
  676. data/spec/unit/types/test_renaming.rb +0 -55
  677. data/spec/unit/types/test_renaming.rbc +0 -2426
  678. data/spec/unit/types/test_summarization.rbc +0 -2538
  679. data/spec/unit/types/test_tuple_computation.rbc +0 -2340
  680. data/spec/unit/types/test_tuple_expression.rb +0 -64
  681. data/spec/unit/types/test_tuple_expression.rbc +0 -2285
  682. data/spec/unit/types/test_tuple_predicate.rbc +0 -3168
@@ -1,2458 +0,0 @@
1
- !RBIX
2
- 11817445442317083511
3
- x
4
- M
5
- 1
6
- n
7
- n
8
- x
9
- 10
10
- __script__
11
- i
12
- 37
13
- 5
14
- 7
15
- 0
16
- 64
17
- 47
18
- 49
19
- 1
20
- 1
21
- 15
22
- 99
23
- 7
24
- 2
25
- 65
26
- 49
27
- 3
28
- 2
29
- 13
30
- 99
31
- 12
32
- 7
33
- 4
34
- 12
35
- 7
36
- 5
37
- 12
38
- 65
39
- 12
40
- 49
41
- 6
42
- 4
43
- 15
44
- 49
45
- 4
46
- 0
47
- 15
48
- 2
49
- 11
50
- I
51
- 6
52
- I
53
- 0
54
- I
55
- 0
56
- I
57
- 0
58
- n
59
- p
60
- 7
61
- s
62
- 11
63
- spec_helper
64
- x
65
- 7
66
- require
67
- x
68
- 3
69
- Alf
70
- x
71
- 11
72
- open_module
73
- x
74
- 15
75
- __module_init__
76
- M
77
- 1
78
- n
79
- n
80
- x
81
- 3
82
- Alf
83
- i
84
- 30
85
- 5
86
- 66
87
- 99
88
- 7
89
- 0
90
- 45
91
- 1
92
- 2
93
- 49
94
- 3
95
- 2
96
- 13
97
- 99
98
- 12
99
- 7
100
- 4
101
- 12
102
- 7
103
- 5
104
- 12
105
- 65
106
- 12
107
- 49
108
- 6
109
- 4
110
- 15
111
- 49
112
- 4
113
- 0
114
- 11
115
- I
116
- 6
117
- I
118
- 0
119
- I
120
- 0
121
- I
122
- 0
123
- n
124
- p
125
- 7
126
- x
127
- 10
128
- Relational
129
- x
130
- 8
131
- Operator
132
- n
133
- x
134
- 17
135
- open_module_under
136
- x
137
- 15
138
- __module_init__
139
- M
140
- 1
141
- n
142
- n
143
- x
144
- 10
145
- Relational
146
- i
147
- 15
148
- 5
149
- 66
150
- 5
151
- 45
152
- 0
153
- 1
154
- 43
155
- 2
156
- 56
157
- 3
158
- 47
159
- 50
160
- 4
161
- 1
162
- 11
163
- I
164
- 3
165
- I
166
- 0
167
- I
168
- 0
169
- I
170
- 0
171
- n
172
- p
173
- 5
174
- x
175
- 8
176
- Matching
177
- n
178
- x
179
- 9
180
- HashBased
181
- M
182
- 1
183
- p
184
- 2
185
- x
186
- 9
187
- for_block
188
- t
189
- n
190
- x
191
- 10
192
- Relational
193
- i
194
- 103
195
- 5
196
- 7
197
- 0
198
- 56
199
- 1
200
- 47
201
- 50
202
- 2
203
- 1
204
- 15
205
- 5
206
- 7
207
- 3
208
- 56
209
- 4
210
- 47
211
- 50
212
- 2
213
- 1
214
- 15
215
- 5
216
- 7
217
- 5
218
- 56
219
- 6
220
- 47
221
- 50
222
- 2
223
- 1
224
- 15
225
- 5
226
- 7
227
- 7
228
- 56
229
- 8
230
- 47
231
- 50
232
- 2
233
- 1
234
- 15
235
- 5
236
- 56
237
- 9
238
- 47
239
- 50
240
- 10
241
- 0
242
- 15
243
- 5
244
- 7
245
- 11
246
- 64
247
- 56
248
- 12
249
- 47
250
- 50
251
- 13
252
- 1
253
- 15
254
- 5
255
- 7
256
- 14
257
- 64
258
- 56
259
- 15
260
- 47
261
- 50
262
- 13
263
- 1
264
- 15
265
- 5
266
- 7
267
- 16
268
- 64
269
- 56
270
- 17
271
- 47
272
- 50
273
- 13
274
- 1
275
- 15
276
- 5
277
- 7
278
- 18
279
- 64
280
- 56
281
- 19
282
- 47
283
- 50
284
- 13
285
- 1
286
- 15
287
- 5
288
- 7
289
- 20
290
- 64
291
- 56
292
- 21
293
- 47
294
- 50
295
- 13
296
- 1
297
- 11
298
- I
299
- 4
300
- I
301
- 0
302
- I
303
- 0
304
- I
305
- 0
306
- I
307
- -2
308
- p
309
- 22
310
- x
311
- 9
312
- suppliers
313
- M
314
- 1
315
- p
316
- 2
317
- x
318
- 9
319
- for_block
320
- t
321
- n
322
- x
323
- 10
324
- Relational
325
- i
326
- 90
327
- 45
328
- 0
329
- 1
330
- 43
331
- 2
332
- 44
333
- 43
334
- 3
335
- 80
336
- 49
337
- 4
338
- 1
339
- 13
340
- 7
341
- 5
342
- 7
343
- 6
344
- 64
345
- 49
346
- 7
347
- 2
348
- 15
349
- 13
350
- 7
351
- 8
352
- 7
353
- 9
354
- 64
355
- 49
356
- 7
357
- 2
358
- 15
359
- 44
360
- 43
361
- 3
362
- 80
363
- 49
364
- 4
365
- 1
366
- 13
367
- 7
368
- 5
369
- 7
370
- 10
371
- 64
372
- 49
373
- 7
374
- 2
375
- 15
376
- 13
377
- 7
378
- 8
379
- 7
380
- 11
381
- 64
382
- 49
383
- 7
384
- 2
385
- 15
386
- 44
387
- 43
388
- 3
389
- 80
390
- 49
391
- 4
392
- 1
393
- 13
394
- 7
395
- 5
396
- 7
397
- 12
398
- 64
399
- 49
400
- 7
401
- 2
402
- 15
403
- 13
404
- 7
405
- 8
406
- 7
407
- 11
408
- 64
409
- 49
410
- 7
411
- 2
412
- 15
413
- 49
414
- 13
415
- 3
416
- 11
417
- I
418
- 8
419
- I
420
- 0
421
- I
422
- 0
423
- I
424
- 0
425
- I
426
- -2
427
- p
428
- 14
429
- x
430
- 3
431
- Alf
432
- n
433
- x
434
- 8
435
- Relation
436
- x
437
- 4
438
- Hash
439
- x
440
- 16
441
- new_from_literal
442
- x
443
- 3
444
- sid
445
- s
446
- 2
447
- S1
448
- x
449
- 3
450
- []=
451
- x
452
- 4
453
- city
454
- s
455
- 6
456
- London
457
- s
458
- 2
459
- S2
460
- s
461
- 5
462
- Paris
463
- s
464
- 2
465
- S3
466
- x
467
- 2
468
- []
469
- p
470
- 11
471
- I
472
- 0
473
- I
474
- 6
475
- I
476
- 5
477
- I
478
- 7
479
- I
480
- 20
481
- I
482
- 8
483
- I
484
- 3b
485
- I
486
- 9
487
- I
488
- 56
489
- I
490
- 6
491
- I
492
- 5a
493
- x
494
- 87
495
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
496
- p
497
- 0
498
- x
499
- 3
500
- let
501
- x
502
- 8
503
- statuses
504
- M
505
- 1
506
- p
507
- 2
508
- x
509
- 9
510
- for_block
511
- t
512
- n
513
- x
514
- 10
515
- Relational
516
- i
517
- 87
518
- 45
519
- 0
520
- 1
521
- 43
522
- 2
523
- 44
524
- 43
525
- 3
526
- 80
527
- 49
528
- 4
529
- 1
530
- 13
531
- 7
532
- 5
533
- 7
534
- 6
535
- 64
536
- 49
537
- 7
538
- 2
539
- 15
540
- 13
541
- 7
542
- 8
543
- 4
544
- 20
545
- 49
546
- 7
547
- 2
548
- 15
549
- 44
550
- 43
551
- 3
552
- 80
553
- 49
554
- 4
555
- 1
556
- 13
557
- 7
558
- 5
559
- 7
560
- 9
561
- 64
562
- 49
563
- 7
564
- 2
565
- 15
566
- 13
567
- 7
568
- 8
569
- 4
570
- 10
571
- 49
572
- 7
573
- 2
574
- 15
575
- 44
576
- 43
577
- 3
578
- 80
579
- 49
580
- 4
581
- 1
582
- 13
583
- 7
584
- 5
585
- 7
586
- 10
587
- 64
588
- 49
589
- 7
590
- 2
591
- 15
592
- 13
593
- 7
594
- 8
595
- 4
596
- 30
597
- 49
598
- 7
599
- 2
600
- 15
601
- 49
602
- 11
603
- 3
604
- 11
605
- I
606
- 8
607
- I
608
- 0
609
- I
610
- 0
611
- I
612
- 0
613
- I
614
- -2
615
- p
616
- 12
617
- x
618
- 3
619
- Alf
620
- n
621
- x
622
- 8
623
- Relation
624
- x
625
- 4
626
- Hash
627
- x
628
- 16
629
- new_from_literal
630
- x
631
- 3
632
- sid
633
- s
634
- 2
635
- S1
636
- x
637
- 3
638
- []=
639
- x
640
- 6
641
- status
642
- s
643
- 2
644
- S2
645
- s
646
- 2
647
- S3
648
- x
649
- 2
650
- []
651
- p
652
- 11
653
- I
654
- 0
655
- I
656
- c
657
- I
658
- 5
659
- I
660
- d
661
- I
662
- 1f
663
- I
664
- e
665
- I
666
- 39
667
- I
668
- f
669
- I
670
- 53
671
- I
672
- c
673
- I
674
- 57
675
- x
676
- 87
677
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
678
- p
679
- 0
680
- x
681
- 9
682
- countries
683
- M
684
- 1
685
- p
686
- 2
687
- x
688
- 9
689
- for_block
690
- t
691
- n
692
- x
693
- 10
694
- Relational
695
- i
696
- 90
697
- 45
698
- 0
699
- 1
700
- 43
701
- 2
702
- 44
703
- 43
704
- 3
705
- 80
706
- 49
707
- 4
708
- 1
709
- 13
710
- 7
711
- 5
712
- 7
713
- 6
714
- 64
715
- 49
716
- 7
717
- 2
718
- 15
719
- 13
720
- 7
721
- 8
722
- 7
723
- 9
724
- 64
725
- 49
726
- 7
727
- 2
728
- 15
729
- 44
730
- 43
731
- 3
732
- 80
733
- 49
734
- 4
735
- 1
736
- 13
737
- 7
738
- 5
739
- 7
740
- 10
741
- 64
742
- 49
743
- 7
744
- 2
745
- 15
746
- 13
747
- 7
748
- 8
749
- 7
750
- 11
751
- 64
752
- 49
753
- 7
754
- 2
755
- 15
756
- 44
757
- 43
758
- 3
759
- 80
760
- 49
761
- 4
762
- 1
763
- 13
764
- 7
765
- 5
766
- 7
767
- 12
768
- 64
769
- 49
770
- 7
771
- 2
772
- 15
773
- 13
774
- 7
775
- 8
776
- 7
777
- 13
778
- 64
779
- 49
780
- 7
781
- 2
782
- 15
783
- 49
784
- 14
785
- 3
786
- 11
787
- I
788
- 8
789
- I
790
- 0
791
- I
792
- 0
793
- I
794
- 0
795
- I
796
- -2
797
- p
798
- 15
799
- x
800
- 3
801
- Alf
802
- n
803
- x
804
- 8
805
- Relation
806
- x
807
- 4
808
- Hash
809
- x
810
- 16
811
- new_from_literal
812
- x
813
- 4
814
- city
815
- s
816
- 6
817
- London
818
- x
819
- 3
820
- []=
821
- x
822
- 7
823
- country
824
- s
825
- 7
826
- England
827
- s
828
- 5
829
- Paris
830
- s
831
- 6
832
- France
833
- s
834
- 9
835
- Bruxelles
836
- s
837
- 17
838
- Belgium (until ?)
839
- x
840
- 2
841
- []
842
- p
843
- 11
844
- I
845
- 0
846
- I
847
- 12
848
- I
849
- 5
850
- I
851
- 13
852
- I
853
- 20
854
- I
855
- 14
856
- I
857
- 3b
858
- I
859
- 15
860
- I
861
- 56
862
- I
863
- 12
864
- I
865
- 5a
866
- x
867
- 87
868
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
869
- p
870
- 0
871
- x
872
- 8
873
- operator
874
- M
875
- 1
876
- p
877
- 2
878
- x
879
- 9
880
- for_block
881
- t
882
- n
883
- x
884
- 10
885
- Relational
886
- i
887
- 27
888
- 45
889
- 0
890
- 1
891
- 43
892
- 2
893
- 13
894
- 71
895
- 3
896
- 47
897
- 9
898
- 23
899
- 47
900
- 49
901
- 4
902
- 0
903
- 13
904
- 47
905
- 49
906
- 5
907
- 0
908
- 15
909
- 8
910
- 26
911
- 49
912
- 3
913
- 0
914
- 11
915
- I
916
- 3
917
- I
918
- 0
919
- I
920
- 0
921
- I
922
- 0
923
- I
924
- -2
925
- p
926
- 6
927
- x
928
- 8
929
- Matching
930
- n
931
- x
932
- 9
933
- HashBased
934
- x
935
- 3
936
- new
937
- x
938
- 8
939
- allocate
940
- x
941
- 10
942
- initialize
943
- p
944
- 3
945
- I
946
- 0
947
- I
948
- 18
949
- I
950
- 1b
951
- x
952
- 87
953
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
954
- p
955
- 0
956
- M
957
- 1
958
- p
959
- 2
960
- x
961
- 9
962
- for_block
963
- t
964
- n
965
- x
966
- 10
967
- Relational
968
- i
969
- 7
970
- 5
971
- 48
972
- 0
973
- 49
974
- 1
975
- 0
976
- 11
977
- I
978
- 2
979
- I
980
- 0
981
- I
982
- 0
983
- I
984
- 0
985
- I
986
- -2
987
- p
988
- 2
989
- x
990
- 8
991
- operator
992
- x
993
- 6
994
- to_rel
995
- p
996
- 3
997
- I
998
- 0
999
- I
1000
- 19
1001
- I
1002
- 7
1003
- x
1004
- 87
1005
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
1006
- p
1007
- 0
1008
- x
1009
- 7
1010
- subject
1011
- s
1012
- 35
1013
- when applied on both candidate keys
1014
- M
1015
- 1
1016
- p
1017
- 2
1018
- x
1019
- 9
1020
- for_block
1021
- t
1022
- n
1023
- x
1024
- 10
1025
- Relational
1026
- i
1027
- 16
1028
- 5
1029
- 56
1030
- 0
1031
- 47
1032
- 50
1033
- 1
1034
- 0
1035
- 15
1036
- 5
1037
- 56
1038
- 2
1039
- 47
1040
- 50
1041
- 3
1042
- 0
1043
- 11
1044
- I
1045
- 3
1046
- I
1047
- 0
1048
- I
1049
- 0
1050
- I
1051
- 0
1052
- I
1053
- -2
1054
- p
1055
- 4
1056
- M
1057
- 1
1058
- p
1059
- 2
1060
- x
1061
- 9
1062
- for_block
1063
- t
1064
- n
1065
- x
1066
- 10
1067
- Relational
1068
- i
1069
- 15
1070
- 5
1071
- 48
1072
- 0
1073
- 5
1074
- 48
1075
- 1
1076
- 5
1077
- 48
1078
- 2
1079
- 35
1080
- 2
1081
- 49
1082
- 3
1083
- 1
1084
- 11
1085
- I
1086
- 4
1087
- I
1088
- 0
1089
- I
1090
- 0
1091
- I
1092
- 0
1093
- I
1094
- -2
1095
- p
1096
- 4
1097
- x
1098
- 8
1099
- operator
1100
- x
1101
- 9
1102
- suppliers
1103
- x
1104
- 8
1105
- statuses
1106
- x
1107
- 4
1108
- pipe
1109
- p
1110
- 3
1111
- I
1112
- 0
1113
- I
1114
- 1c
1115
- I
1116
- f
1117
- x
1118
- 87
1119
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
1120
- p
1121
- 0
1122
- x
1123
- 6
1124
- before
1125
- M
1126
- 1
1127
- p
1128
- 2
1129
- x
1130
- 9
1131
- for_block
1132
- t
1133
- n
1134
- x
1135
- 10
1136
- Relational
1137
- i
1138
- 14
1139
- 5
1140
- 5
1141
- 5
1142
- 48
1143
- 0
1144
- 47
1145
- 49
1146
- 1
1147
- 1
1148
- 47
1149
- 49
1150
- 2
1151
- 1
1152
- 11
1153
- I
1154
- 4
1155
- I
1156
- 0
1157
- I
1158
- 0
1159
- I
1160
- 0
1161
- I
1162
- -2
1163
- p
1164
- 3
1165
- x
1166
- 9
1167
- suppliers
1168
- x
1169
- 2
1170
- eq
1171
- x
1172
- 6
1173
- should
1174
- p
1175
- 3
1176
- I
1177
- 0
1178
- I
1179
- 1d
1180
- I
1181
- e
1182
- x
1183
- 87
1184
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
1185
- p
1186
- 0
1187
- x
1188
- 2
1189
- it
1190
- p
1191
- 5
1192
- I
1193
- 0
1194
- I
1195
- 1c
1196
- I
1197
- 8
1198
- I
1199
- 1d
1200
- I
1201
- 10
1202
- x
1203
- 87
1204
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
1205
- p
1206
- 0
1207
- x
1208
- 8
1209
- describe
1210
- s
1211
- 37
1212
- when applied on a typical foreign key
1213
- M
1214
- 1
1215
- p
1216
- 2
1217
- x
1218
- 9
1219
- for_block
1220
- t
1221
- n
1222
- x
1223
- 10
1224
- Relational
1225
- i
1226
- 22
1227
- 5
1228
- 7
1229
- 0
1230
- 64
1231
- 56
1232
- 1
1233
- 47
1234
- 50
1235
- 2
1236
- 1
1237
- 15
1238
- 5
1239
- 7
1240
- 3
1241
- 64
1242
- 56
1243
- 4
1244
- 47
1245
- 50
1246
- 2
1247
- 1
1248
- 11
1249
- I
1250
- 4
1251
- I
1252
- 0
1253
- I
1254
- 0
1255
- I
1256
- 0
1257
- I
1258
- -2
1259
- p
1260
- 5
1261
- s
1262
- 10
1263
- on one way
1264
- M
1265
- 1
1266
- p
1267
- 2
1268
- x
1269
- 9
1270
- for_block
1271
- t
1272
- n
1273
- x
1274
- 10
1275
- Relational
1276
- i
1277
- 16
1278
- 5
1279
- 56
1280
- 0
1281
- 47
1282
- 50
1283
- 1
1284
- 0
1285
- 15
1286
- 5
1287
- 56
1288
- 2
1289
- 47
1290
- 50
1291
- 3
1292
- 0
1293
- 11
1294
- I
1295
- 3
1296
- I
1297
- 0
1298
- I
1299
- 0
1300
- I
1301
- 0
1302
- I
1303
- -2
1304
- p
1305
- 4
1306
- M
1307
- 1
1308
- p
1309
- 2
1310
- x
1311
- 9
1312
- for_block
1313
- t
1314
- n
1315
- x
1316
- 10
1317
- Relational
1318
- i
1319
- 15
1320
- 5
1321
- 48
1322
- 0
1323
- 5
1324
- 48
1325
- 1
1326
- 5
1327
- 48
1328
- 2
1329
- 35
1330
- 2
1331
- 49
1332
- 3
1333
- 1
1334
- 11
1335
- I
1336
- 4
1337
- I
1338
- 0
1339
- I
1340
- 0
1341
- I
1342
- 0
1343
- I
1344
- -2
1345
- p
1346
- 4
1347
- x
1348
- 8
1349
- operator
1350
- x
1351
- 9
1352
- suppliers
1353
- x
1354
- 9
1355
- countries
1356
- x
1357
- 4
1358
- pipe
1359
- p
1360
- 3
1361
- I
1362
- 0
1363
- I
1364
- 22
1365
- I
1366
- f
1367
- x
1368
- 87
1369
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
1370
- p
1371
- 0
1372
- x
1373
- 6
1374
- before
1375
- M
1376
- 1
1377
- p
1378
- 2
1379
- x
1380
- 9
1381
- for_block
1382
- t
1383
- n
1384
- x
1385
- 10
1386
- Relational
1387
- i
1388
- 14
1389
- 5
1390
- 5
1391
- 5
1392
- 48
1393
- 0
1394
- 47
1395
- 49
1396
- 1
1397
- 1
1398
- 47
1399
- 49
1400
- 2
1401
- 1
1402
- 11
1403
- I
1404
- 4
1405
- I
1406
- 0
1407
- I
1408
- 0
1409
- I
1410
- 0
1411
- I
1412
- -2
1413
- p
1414
- 3
1415
- x
1416
- 9
1417
- suppliers
1418
- x
1419
- 2
1420
- eq
1421
- x
1422
- 6
1423
- should
1424
- p
1425
- 3
1426
- I
1427
- 0
1428
- I
1429
- 23
1430
- I
1431
- e
1432
- x
1433
- 87
1434
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
1435
- p
1436
- 0
1437
- x
1438
- 2
1439
- it
1440
- p
1441
- 5
1442
- I
1443
- 0
1444
- I
1445
- 22
1446
- I
1447
- 8
1448
- I
1449
- 23
1450
- I
1451
- 10
1452
- x
1453
- 87
1454
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
1455
- p
1456
- 0
1457
- x
1458
- 8
1459
- describe
1460
- s
1461
- 23
1462
- on the other way around
1463
- M
1464
- 1
1465
- p
1466
- 2
1467
- x
1468
- 9
1469
- for_block
1470
- t
1471
- n
1472
- x
1473
- 10
1474
- Relational
1475
- i
1476
- 16
1477
- 5
1478
- 56
1479
- 0
1480
- 47
1481
- 50
1482
- 1
1483
- 0
1484
- 15
1485
- 5
1486
- 56
1487
- 2
1488
- 47
1489
- 50
1490
- 3
1491
- 0
1492
- 11
1493
- I
1494
- 3
1495
- I
1496
- 0
1497
- I
1498
- 0
1499
- I
1500
- 0
1501
- I
1502
- -2
1503
- p
1504
- 4
1505
- M
1506
- 1
1507
- p
1508
- 2
1509
- x
1510
- 9
1511
- for_block
1512
- t
1513
- n
1514
- x
1515
- 10
1516
- Relational
1517
- i
1518
- 15
1519
- 5
1520
- 48
1521
- 0
1522
- 5
1523
- 48
1524
- 1
1525
- 5
1526
- 48
1527
- 2
1528
- 35
1529
- 2
1530
- 49
1531
- 3
1532
- 1
1533
- 11
1534
- I
1535
- 4
1536
- I
1537
- 0
1538
- I
1539
- 0
1540
- I
1541
- 0
1542
- I
1543
- -2
1544
- p
1545
- 4
1546
- x
1547
- 8
1548
- operator
1549
- x
1550
- 9
1551
- countries
1552
- x
1553
- 9
1554
- suppliers
1555
- x
1556
- 4
1557
- pipe
1558
- p
1559
- 3
1560
- I
1561
- 0
1562
- I
1563
- 26
1564
- I
1565
- f
1566
- x
1567
- 87
1568
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
1569
- p
1570
- 0
1571
- x
1572
- 6
1573
- before
1574
- M
1575
- 1
1576
- p
1577
- 2
1578
- x
1579
- 9
1580
- for_block
1581
- t
1582
- n
1583
- x
1584
- 10
1585
- Relational
1586
- i
1587
- 24
1588
- 5
1589
- 5
1590
- 5
1591
- 48
1592
- 0
1593
- 5
1594
- 56
1595
- 1
1596
- 47
1597
- 50
1598
- 2
1599
- 0
1600
- 49
1601
- 3
1602
- 1
1603
- 47
1604
- 49
1605
- 4
1606
- 1
1607
- 47
1608
- 49
1609
- 5
1610
- 1
1611
- 11
1612
- I
1613
- 6
1614
- I
1615
- 0
1616
- I
1617
- 0
1618
- I
1619
- 0
1620
- I
1621
- -2
1622
- p
1623
- 6
1624
- x
1625
- 9
1626
- countries
1627
- M
1628
- 1
1629
- p
1630
- 2
1631
- x
1632
- 9
1633
- for_block
1634
- t
1635
- n
1636
- x
1637
- 10
1638
- Relational
1639
- i
1640
- 15
1641
- 5
1642
- 48
1643
- 0
1644
- 7
1645
- 1
1646
- 64
1647
- 83
1648
- 2
1649
- 10
1650
- 13
1651
- 2
1652
- 8
1653
- 14
1654
- 3
1655
- 11
1656
- I
1657
- 3
1658
- I
1659
- 0
1660
- I
1661
- 0
1662
- I
1663
- 0
1664
- I
1665
- -2
1666
- p
1667
- 3
1668
- x
1669
- 4
1670
- city
1671
- s
1672
- 9
1673
- Bruxelles
1674
- x
1675
- 2
1676
- ==
1677
- p
1678
- 3
1679
- I
1680
- 0
1681
- I
1682
- 27
1683
- I
1684
- f
1685
- x
1686
- 87
1687
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
1688
- p
1689
- 0
1690
- x
1691
- 6
1692
- lambda
1693
- x
1694
- 8
1695
- restrict
1696
- x
1697
- 2
1698
- eq
1699
- x
1700
- 6
1701
- should
1702
- p
1703
- 3
1704
- I
1705
- 0
1706
- I
1707
- 27
1708
- I
1709
- 18
1710
- x
1711
- 87
1712
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
1713
- p
1714
- 0
1715
- x
1716
- 2
1717
- it
1718
- p
1719
- 5
1720
- I
1721
- 0
1722
- I
1723
- 26
1724
- I
1725
- 8
1726
- I
1727
- 27
1728
- I
1729
- 10
1730
- x
1731
- 87
1732
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
1733
- p
1734
- 0
1735
- p
1736
- 5
1737
- I
1738
- 0
1739
- I
1740
- 21
1741
- I
1742
- b
1743
- I
1744
- 25
1745
- I
1746
- 16
1747
- x
1748
- 87
1749
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
1750
- p
1751
- 0
1752
- s
1753
- 32
1754
- when no attributes are in common
1755
- M
1756
- 1
1757
- p
1758
- 2
1759
- x
1760
- 9
1761
- for_block
1762
- t
1763
- n
1764
- x
1765
- 10
1766
- Relational
1767
- i
1768
- 16
1769
- 5
1770
- 56
1771
- 0
1772
- 47
1773
- 50
1774
- 1
1775
- 0
1776
- 15
1777
- 5
1778
- 56
1779
- 2
1780
- 47
1781
- 50
1782
- 3
1783
- 0
1784
- 11
1785
- I
1786
- 3
1787
- I
1788
- 0
1789
- I
1790
- 0
1791
- I
1792
- 0
1793
- I
1794
- -2
1795
- p
1796
- 4
1797
- M
1798
- 1
1799
- p
1800
- 2
1801
- x
1802
- 9
1803
- for_block
1804
- t
1805
- n
1806
- x
1807
- 10
1808
- Relational
1809
- i
1810
- 15
1811
- 5
1812
- 48
1813
- 0
1814
- 5
1815
- 48
1816
- 1
1817
- 5
1818
- 48
1819
- 2
1820
- 35
1821
- 2
1822
- 49
1823
- 3
1824
- 1
1825
- 11
1826
- I
1827
- 4
1828
- I
1829
- 0
1830
- I
1831
- 0
1832
- I
1833
- 0
1834
- I
1835
- -2
1836
- p
1837
- 4
1838
- x
1839
- 8
1840
- operator
1841
- x
1842
- 8
1843
- statuses
1844
- x
1845
- 9
1846
- countries
1847
- x
1848
- 4
1849
- pipe
1850
- p
1851
- 3
1852
- I
1853
- 0
1854
- I
1855
- 2c
1856
- I
1857
- f
1858
- x
1859
- 87
1860
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
1861
- p
1862
- 0
1863
- x
1864
- 6
1865
- before
1866
- M
1867
- 1
1868
- p
1869
- 2
1870
- x
1871
- 9
1872
- for_block
1873
- t
1874
- n
1875
- x
1876
- 10
1877
- Relational
1878
- i
1879
- 14
1880
- 5
1881
- 5
1882
- 5
1883
- 48
1884
- 0
1885
- 47
1886
- 49
1887
- 1
1888
- 1
1889
- 47
1890
- 49
1891
- 2
1892
- 1
1893
- 11
1894
- I
1895
- 4
1896
- I
1897
- 0
1898
- I
1899
- 0
1900
- I
1901
- 0
1902
- I
1903
- -2
1904
- p
1905
- 3
1906
- x
1907
- 8
1908
- statuses
1909
- x
1910
- 2
1911
- eq
1912
- x
1913
- 6
1914
- should
1915
- p
1916
- 3
1917
- I
1918
- 0
1919
- I
1920
- 2d
1921
- I
1922
- e
1923
- x
1924
- 87
1925
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
1926
- p
1927
- 0
1928
- x
1929
- 2
1930
- it
1931
- p
1932
- 5
1933
- I
1934
- 0
1935
- I
1936
- 2c
1937
- I
1938
- 8
1939
- I
1940
- 2d
1941
- I
1942
- 10
1943
- x
1944
- 87
1945
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
1946
- p
1947
- 0
1948
- s
1949
- 11
1950
- against DEE
1951
- M
1952
- 1
1953
- p
1954
- 2
1955
- x
1956
- 9
1957
- for_block
1958
- t
1959
- n
1960
- x
1961
- 10
1962
- Relational
1963
- i
1964
- 16
1965
- 5
1966
- 56
1967
- 0
1968
- 47
1969
- 50
1970
- 1
1971
- 0
1972
- 15
1973
- 5
1974
- 56
1975
- 2
1976
- 47
1977
- 50
1978
- 3
1979
- 0
1980
- 11
1981
- I
1982
- 3
1983
- I
1984
- 0
1985
- I
1986
- 0
1987
- I
1988
- 0
1989
- I
1990
- -2
1991
- p
1992
- 4
1993
- M
1994
- 1
1995
- p
1996
- 2
1997
- x
1998
- 9
1999
- for_block
2000
- t
2001
- n
2002
- x
2003
- 10
2004
- Relational
2005
- i
2006
- 17
2007
- 5
2008
- 48
2009
- 0
2010
- 5
2011
- 48
2012
- 1
2013
- 45
2014
- 2
2015
- 3
2016
- 43
2017
- 4
2018
- 35
2019
- 2
2020
- 49
2021
- 5
2022
- 1
2023
- 11
2024
- I
2025
- 4
2026
- I
2027
- 0
2028
- I
2029
- 0
2030
- I
2031
- 0
2032
- I
2033
- -2
2034
- p
2035
- 6
2036
- x
2037
- 8
2038
- operator
2039
- x
2040
- 9
2041
- suppliers
2042
- x
2043
- 8
2044
- Relation
2045
- n
2046
- x
2047
- 3
2048
- DEE
2049
- x
2050
- 4
2051
- pipe
2052
- p
2053
- 3
2054
- I
2055
- 0
2056
- I
2057
- 31
2058
- I
2059
- 11
2060
- x
2061
- 87
2062
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
2063
- p
2064
- 0
2065
- x
2066
- 6
2067
- before
2068
- M
2069
- 1
2070
- p
2071
- 2
2072
- x
2073
- 9
2074
- for_block
2075
- t
2076
- n
2077
- x
2078
- 10
2079
- Relational
2080
- i
2081
- 14
2082
- 5
2083
- 5
2084
- 5
2085
- 48
2086
- 0
2087
- 47
2088
- 49
2089
- 1
2090
- 1
2091
- 47
2092
- 49
2093
- 2
2094
- 1
2095
- 11
2096
- I
2097
- 4
2098
- I
2099
- 0
2100
- I
2101
- 0
2102
- I
2103
- 0
2104
- I
2105
- -2
2106
- p
2107
- 3
2108
- x
2109
- 9
2110
- suppliers
2111
- x
2112
- 2
2113
- eq
2114
- x
2115
- 6
2116
- should
2117
- p
2118
- 3
2119
- I
2120
- 0
2121
- I
2122
- 32
2123
- I
2124
- e
2125
- x
2126
- 87
2127
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
2128
- p
2129
- 0
2130
- x
2131
- 2
2132
- it
2133
- p
2134
- 5
2135
- I
2136
- 0
2137
- I
2138
- 31
2139
- I
2140
- 8
2141
- I
2142
- 32
2143
- I
2144
- 10
2145
- x
2146
- 87
2147
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
2148
- p
2149
- 0
2150
- s
2151
- 11
2152
- against DUM
2153
- M
2154
- 1
2155
- p
2156
- 2
2157
- x
2158
- 9
2159
- for_block
2160
- t
2161
- n
2162
- x
2163
- 10
2164
- Relational
2165
- i
2166
- 16
2167
- 5
2168
- 56
2169
- 0
2170
- 47
2171
- 50
2172
- 1
2173
- 0
2174
- 15
2175
- 5
2176
- 56
2177
- 2
2178
- 47
2179
- 50
2180
- 3
2181
- 0
2182
- 11
2183
- I
2184
- 3
2185
- I
2186
- 0
2187
- I
2188
- 0
2189
- I
2190
- 0
2191
- I
2192
- -2
2193
- p
2194
- 4
2195
- M
2196
- 1
2197
- p
2198
- 2
2199
- x
2200
- 9
2201
- for_block
2202
- t
2203
- n
2204
- x
2205
- 10
2206
- Relational
2207
- i
2208
- 17
2209
- 5
2210
- 48
2211
- 0
2212
- 5
2213
- 48
2214
- 1
2215
- 45
2216
- 2
2217
- 3
2218
- 43
2219
- 4
2220
- 35
2221
- 2
2222
- 49
2223
- 5
2224
- 1
2225
- 11
2226
- I
2227
- 4
2228
- I
2229
- 0
2230
- I
2231
- 0
2232
- I
2233
- 0
2234
- I
2235
- -2
2236
- p
2237
- 6
2238
- x
2239
- 8
2240
- operator
2241
- x
2242
- 9
2243
- suppliers
2244
- x
2245
- 8
2246
- Relation
2247
- n
2248
- x
2249
- 3
2250
- DUM
2251
- x
2252
- 4
2253
- pipe
2254
- p
2255
- 3
2256
- I
2257
- 0
2258
- I
2259
- 36
2260
- I
2261
- 11
2262
- x
2263
- 87
2264
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
2265
- p
2266
- 0
2267
- x
2268
- 6
2269
- before
2270
- M
2271
- 1
2272
- p
2273
- 2
2274
- x
2275
- 9
2276
- for_block
2277
- t
2278
- n
2279
- x
2280
- 10
2281
- Relational
2282
- i
2283
- 16
2284
- 5
2285
- 5
2286
- 45
2287
- 0
2288
- 1
2289
- 43
2290
- 2
2291
- 47
2292
- 49
2293
- 3
2294
- 1
2295
- 47
2296
- 49
2297
- 4
2298
- 1
2299
- 11
2300
- I
2301
- 4
2302
- I
2303
- 0
2304
- I
2305
- 0
2306
- I
2307
- 0
2308
- I
2309
- -2
2310
- p
2311
- 5
2312
- x
2313
- 8
2314
- Relation
2315
- n
2316
- x
2317
- 3
2318
- DUM
2319
- x
2320
- 2
2321
- eq
2322
- x
2323
- 6
2324
- should
2325
- p
2326
- 3
2327
- I
2328
- 0
2329
- I
2330
- 37
2331
- I
2332
- 10
2333
- x
2334
- 87
2335
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
2336
- p
2337
- 0
2338
- x
2339
- 2
2340
- it
2341
- p
2342
- 5
2343
- I
2344
- 0
2345
- I
2346
- 36
2347
- I
2348
- 8
2349
- I
2350
- 37
2351
- I
2352
- 10
2353
- x
2354
- 87
2355
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
2356
- p
2357
- 0
2358
- p
2359
- 21
2360
- I
2361
- 0
2362
- I
2363
- 6
2364
- I
2365
- a
2366
- I
2367
- c
2368
- I
2369
- 14
2370
- I
2371
- 12
2372
- I
2373
- 1e
2374
- I
2375
- 18
2376
- I
2377
- 28
2378
- I
2379
- 19
2380
- I
2381
- 30
2382
- I
2383
- 1b
2384
- I
2385
- 3b
2386
- I
2387
- 20
2388
- I
2389
- 46
2390
- I
2391
- 2b
2392
- I
2393
- 51
2394
- I
2395
- 30
2396
- I
2397
- 5c
2398
- I
2399
- 35
2400
- I
2401
- 67
2402
- x
2403
- 87
2404
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
2405
- p
2406
- 0
2407
- x
2408
- 8
2409
- describe
2410
- p
2411
- 3
2412
- I
2413
- 2
2414
- I
2415
- 4
2416
- I
2417
- f
2418
- x
2419
- 87
2420
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
2421
- p
2422
- 0
2423
- x
2424
- 13
2425
- attach_method
2426
- p
2427
- 3
2428
- I
2429
- 2
2430
- I
2431
- 3
2432
- I
2433
- 1e
2434
- x
2435
- 87
2436
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
2437
- p
2438
- 0
2439
- x
2440
- 13
2441
- attach_method
2442
- p
2443
- 5
2444
- I
2445
- 0
2446
- I
2447
- 1
2448
- I
2449
- 9
2450
- I
2451
- 2
2452
- I
2453
- 25
2454
- x
2455
- 87
2456
- /home/blambeau/work/devel/alf/spec/unit/operator/relational/matching/test_hash_based.rb
2457
- p
2458
- 0