alf 0.10.0 → 0.10.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (249) hide show
  1. data/CHANGELOG.md +22 -0
  2. data/Gemfile +3 -3
  3. data/Gemfile.lock +9 -10
  4. data/alf.gemspec +3 -3
  5. data/alf.noespec +5 -4
  6. data/doc/commands/show.md +1 -1
  7. data/doc/operators/relational/heading.md +20 -0
  8. data/doc/operators/relational/join.md +4 -3
  9. data/doc/operators/relational/matching.md +7 -3
  10. data/doc/operators/relational/restrict.md +2 -2
  11. data/examples/hitradio/compact.rb +48 -0
  12. data/examples/hitradio/compare1.rb +28 -0
  13. data/examples/hitradio/gz_reader.rb +23 -0
  14. data/examples/hitradio/hitradio-1.alf +1 -0
  15. data/examples/hitradio/hitradio.log +25080 -0
  16. data/examples/hitradio/hitradio.mar +25081 -0
  17. data/examples/hitradio/hitradio.mar.gz +0 -0
  18. data/examples/hitradio/hitradio.rash +25080 -0
  19. data/examples/hitradio/mar_reader.rb +18 -0
  20. data/lib/alf/aggregator/aggregators.rb +28 -0
  21. data/lib/alf/aggregator/aggregators.rbc +2640 -0
  22. data/lib/alf/aggregator/base.rbc +1055 -0
  23. data/lib/alf/aggregator/class_methods.rb +1 -1
  24. data/lib/alf/aggregator/class_methods.rbc +830 -0
  25. data/lib/alf/buffer/sorted.rbc +715 -0
  26. data/lib/alf/command/class_methods.rbc +453 -0
  27. data/lib/alf/command/doc_manager.rbc +1604 -0
  28. data/lib/alf/command/exec.rbc +408 -0
  29. data/lib/alf/command/help.rbc +764 -0
  30. data/lib/alf/command/main.rb +37 -5
  31. data/lib/alf/command/main.rbc +3612 -0
  32. data/lib/alf/command/show.rb +37 -5
  33. data/lib/alf/command/show.rbc +1327 -0
  34. data/lib/alf/environment/base.rbc +459 -0
  35. data/lib/alf/environment/class_methods.rbc +1110 -0
  36. data/lib/alf/environment/explicit.rb +2 -2
  37. data/lib/alf/environment/explicit.rbc +601 -0
  38. data/lib/alf/environment/folder.rb +2 -2
  39. data/lib/alf/environment/folder.rbc +942 -0
  40. data/lib/alf/errors.rb +4 -0
  41. data/lib/alf/errors.rbc +155 -0
  42. data/lib/alf/extra/csv.rb +5 -2
  43. data/lib/alf/extra/csv.rbc +2021 -0
  44. data/lib/alf/extra/logs.rbc +1957 -0
  45. data/lib/alf/extra/sequel.rbc +1417 -0
  46. data/lib/alf/extra/yaml.rbc +435 -0
  47. data/lib/alf/extra.rbc +101 -0
  48. data/lib/alf/iterator/base.rbc +437 -0
  49. data/lib/alf/iterator/class_methods.rbc +518 -0
  50. data/lib/alf/iterator/proxy.rbc +599 -0
  51. data/lib/alf/lispy/instance_methods.rbc +2535 -0
  52. data/lib/alf/loader.rb +2 -1
  53. data/lib/alf/loader.rbc +85 -0
  54. data/lib/alf/operator/base.rbc +860 -0
  55. data/lib/alf/operator/binary.rbc +595 -0
  56. data/lib/alf/operator/cesure.rbc +883 -0
  57. data/lib/alf/operator/class_methods.rbc +1915 -0
  58. data/lib/alf/operator/experimental.rbc +200 -0
  59. data/lib/alf/operator/non_relational/autonum.rbc +587 -0
  60. data/lib/alf/operator/non_relational/clip.rbc +522 -0
  61. data/lib/alf/operator/non_relational/coerce.rbc +596 -0
  62. data/lib/alf/operator/non_relational/compact.rbc +1283 -0
  63. data/lib/alf/operator/non_relational/defaults.rbc +733 -0
  64. data/lib/alf/operator/non_relational/generator.rbc +1015 -0
  65. data/lib/alf/operator/non_relational/sort.rbc +665 -0
  66. data/lib/alf/operator/nullary.rbc +404 -0
  67. data/lib/alf/operator/relational/extend.rbc +616 -0
  68. data/lib/alf/operator/relational/group.rbc +968 -0
  69. data/lib/alf/operator/relational/heading.rb +30 -0
  70. data/lib/alf/operator/relational/heading.rbc +657 -0
  71. data/lib/alf/operator/relational/intersect.rbc +969 -0
  72. data/lib/alf/operator/relational/join.rbc +1708 -0
  73. data/lib/alf/operator/relational/matching.rbc +1047 -0
  74. data/lib/alf/operator/relational/minus.rbc +965 -0
  75. data/lib/alf/operator/relational/not_matching.rbc +1047 -0
  76. data/lib/alf/operator/relational/project.rbc +669 -0
  77. data/lib/alf/operator/relational/quota.rbc +1193 -0
  78. data/lib/alf/operator/relational/rank.rbc +1217 -0
  79. data/lib/alf/operator/relational/rename.rbc +496 -0
  80. data/lib/alf/operator/relational/restrict.rbc +611 -0
  81. data/lib/alf/operator/relational/summarize.rbc +1922 -0
  82. data/lib/alf/operator/relational/ungroup.rbc +643 -0
  83. data/lib/alf/operator/relational/union.rbc +846 -0
  84. data/lib/alf/operator/relational/unwrap.rbc +540 -0
  85. data/lib/alf/operator/relational/wrap.rbc +560 -0
  86. data/lib/alf/operator/shortcut.rbc +809 -0
  87. data/lib/alf/operator/signature.rbc +4640 -0
  88. data/lib/alf/operator/transform.rbc +484 -0
  89. data/lib/alf/operator/unary.rbc +629 -0
  90. data/lib/alf/reader/alf_file.rbc +464 -0
  91. data/lib/alf/reader/base.rbc +1613 -0
  92. data/lib/alf/reader/class_methods.rb +1 -1
  93. data/lib/alf/reader/class_methods.rbc +1099 -0
  94. data/lib/alf/reader/rash.rbc +583 -0
  95. data/lib/alf/relation/class_methods.rbc +674 -0
  96. data/lib/alf/relation/instance_methods.rb +7 -0
  97. data/lib/alf/relation/instance_methods.rbc +2107 -0
  98. data/lib/alf/renderer/base.rbc +936 -0
  99. data/lib/alf/renderer/class_methods.rbc +875 -0
  100. data/lib/alf/renderer/rash.rb +16 -2
  101. data/lib/alf/renderer/rash.rbc +802 -0
  102. data/lib/alf/renderer/text.rb +54 -16
  103. data/lib/alf/renderer/text.rbc +5530 -0
  104. data/lib/alf/tools/coerce.rbc +352 -0
  105. data/lib/alf/tools/miscellaneous.rb +8 -1
  106. data/lib/alf/tools/miscellaneous.rbc +1497 -0
  107. data/lib/alf/tools/to_lispy.rbc +2618 -0
  108. data/lib/alf/tools/to_ruby_literal.rbc +344 -0
  109. data/lib/alf/tools/tuple_handle.rbc +738 -0
  110. data/lib/alf/types/attr_list.rbc +1535 -0
  111. data/lib/alf/types/attr_name.rbc +781 -0
  112. data/lib/alf/types/boolean.rbc +365 -0
  113. data/lib/alf/types/heading.rb +16 -1
  114. data/lib/alf/types/heading.rbc +1778 -0
  115. data/lib/alf/types/ordering.rbc +2228 -0
  116. data/lib/alf/types/renaming.rbc +1064 -0
  117. data/lib/alf/types/summarization.rbc +1394 -0
  118. data/lib/alf/types/tuple_computation.rbc +1061 -0
  119. data/lib/alf/types/tuple_expression.rbc +1016 -0
  120. data/lib/alf/types/tuple_predicate.rbc +1349 -0
  121. data/lib/alf/version.rb +1 -1
  122. data/lib/alf/version.rbc +350 -0
  123. data/lib/alf.rb +13 -5
  124. data/lib/alf.rbc +3884 -0
  125. data/spec/integration/command/alf/alf_help.stdout +8 -6
  126. data/spec/integration/command/help/help_1.stdout +3 -1
  127. data/spec/integration/command/show/show_base.cmd +1 -1
  128. data/spec/integration/command/show/show_base_sort_1.cmd +1 -0
  129. data/spec/integration/command/show/show_base_sort_1.stdout +9 -0
  130. data/spec/integration/command/show/show_base_sort_2.cmd +1 -0
  131. data/spec/integration/command/show/show_base_sort_2.stdout +9 -0
  132. data/spec/integration/command/show/show_ff.cmd +1 -0
  133. data/spec/integration/command/show/show_ff.stdout +10 -0
  134. data/spec/integration/command/show/show_rash_pretty.cmd +1 -0
  135. data/spec/integration/command/show/show_rash_pretty.stdout +30 -0
  136. data/spec/integration/test_alf.rbc +1098 -0
  137. data/spec/integration/test_command.rbc +1832 -0
  138. data/spec/integration/test_examples.rbc +559 -0
  139. data/spec/integration/test_semantics.rbc +991 -0
  140. data/spec/regression/alf_file/test___FILE__.rbc +524 -0
  141. data/spec/regression/heading/test_heading_with_date.rbc +381 -0
  142. data/spec/regression/lispy/test_compile.rbc +404 -0
  143. data/spec/regression/logs/test_path_attribute.rbc +687 -0
  144. data/spec/regression/relation/test_relation_allbut_all.rbc +468 -0
  145. data/spec/regression/relation/test_relation_with_date.rbc +381 -0
  146. data/spec/regression/restrict/test_restrict_with_keywords.rbc +628 -0
  147. data/spec/shared/a_value.rbc +337 -0
  148. data/spec/shared/an_operator_class.rbc +908 -0
  149. data/spec/spec_helper.rbc +453 -0
  150. data/spec/unit/assumptions/test_file.rbc +668 -0
  151. data/spec/unit/assumptions/test_instance_eval.rbc +654 -0
  152. data/spec/unit/assumptions/test_scoping.rbc +755 -0
  153. data/spec/unit/assumptions/test_set.rbc +1928 -0
  154. data/spec/unit/command/doc_manager/test_call.rbc +1537 -0
  155. data/spec/unit/csv/test_reader.rbc +2228 -0
  156. data/spec/unit/csv/test_renderer.rbc +2426 -0
  157. data/spec/unit/environment/test_explicit.rbc +464 -0
  158. data/spec/unit/environment/test_folder.rb +2 -2
  159. data/spec/unit/environment/test_folder.rbc +1304 -0
  160. data/spec/unit/lispy/test_relation.rbc +1477 -0
  161. data/spec/unit/lispy/test_run.rbc +1735 -0
  162. data/spec/unit/lispy/test_tuple.rbc +1686 -0
  163. data/spec/unit/logs/test_reader.rb +6 -4
  164. data/spec/unit/logs/test_reader.rbc +1807 -0
  165. data/spec/unit/operator/non_relational/compact/test_buffer_based.rbc +1127 -0
  166. data/spec/unit/operator/non_relational/compact/test_sort_based.rbc +1127 -0
  167. data/spec/unit/operator/non_relational/test_autonum.rbc +1969 -0
  168. data/spec/unit/operator/non_relational/test_clip.rbc +1850 -0
  169. data/spec/unit/operator/non_relational/test_coerce.rbc +1290 -0
  170. data/spec/unit/operator/non_relational/test_compact.rbc +1382 -0
  171. data/spec/unit/operator/non_relational/test_defaults.rbc +2319 -0
  172. data/spec/unit/operator/non_relational/test_generator.rbc +2361 -0
  173. data/spec/unit/operator/non_relational/test_sort.rbc +2583 -0
  174. data/spec/unit/operator/relational/join/test_hash_based.rbc +2481 -0
  175. data/spec/unit/operator/relational/matching/test_hash_based.rbc +2458 -0
  176. data/spec/unit/operator/relational/not_matching/test_hash_based.rbc +1632 -0
  177. data/spec/unit/operator/relational/summarize/test_hash_based.rbc +1990 -0
  178. data/spec/unit/operator/relational/summarize/test_sort_based.rbc +1990 -0
  179. data/spec/unit/operator/relational/test_extend.rbc +1300 -0
  180. data/spec/unit/operator/relational/test_group.rbc +2142 -0
  181. data/spec/unit/operator/relational/test_intersect.rbc +2069 -0
  182. data/spec/unit/operator/relational/test_join.rbc +1282 -0
  183. data/spec/unit/operator/relational/test_minus.rbc +1995 -0
  184. data/spec/unit/operator/relational/test_project.rbc +2870 -0
  185. data/spec/unit/operator/relational/test_quota.rbc +1788 -0
  186. data/spec/unit/operator/relational/test_rank.rbc +2079 -0
  187. data/spec/unit/operator/relational/test_rename.rbc +1158 -0
  188. data/spec/unit/operator/relational/test_restrict.rbc +2305 -0
  189. data/spec/unit/operator/relational/test_summarize.rbc +2570 -0
  190. data/spec/unit/operator/relational/test_ungroup.rbc +1425 -0
  191. data/spec/unit/operator/relational/test_union.rbc +1089 -0
  192. data/spec/unit/operator/relational/test_unwrap.rbc +1176 -0
  193. data/spec/unit/operator/relational/test_wrap.rbc +1203 -0
  194. data/spec/unit/operator/signature/test_collect_on.rbc +1989 -0
  195. data/spec/unit/operator/signature/test_initialize.rbc +544 -0
  196. data/spec/unit/operator/signature/test_install.rbc +1671 -0
  197. data/spec/unit/operator/signature/test_option_parser.rbc +1348 -0
  198. data/spec/unit/operator/signature/test_parse_args.rbc +1908 -0
  199. data/spec/unit/operator/signature/test_parse_argv.rbc +2878 -0
  200. data/spec/unit/operator/signature/test_to_lispy.rbc +3305 -0
  201. data/spec/unit/operator/signature/test_to_shell.rbc +3327 -0
  202. data/spec/unit/operator/test_non_relational.rbc +571 -0
  203. data/spec/unit/operator/test_relational.rb +2 -1
  204. data/spec/unit/operator/test_relational.rbc +758 -0
  205. data/spec/unit/reader/test_alf_file.rbc +1107 -0
  206. data/spec/unit/reader/test_initialize.rbc +1774 -0
  207. data/spec/unit/reader/test_rash.rbc +1127 -0
  208. data/spec/unit/relation/test_coerce.rbc +2320 -0
  209. data/spec/unit/relation/test_inspect.rbc +502 -0
  210. data/spec/unit/relation/test_relops.rbc +1585 -0
  211. data/spec/unit/relation/test_to_a.rbc +1112 -0
  212. data/spec/unit/renderer/test_initialize.rbc +1766 -0
  213. data/spec/unit/sequel/test_environment.rbc +1723 -0
  214. data/spec/unit/test_aggregator.rb +38 -1
  215. data/spec/unit/test_aggregator.rbc +4358 -0
  216. data/spec/unit/test_environment.rbc +1271 -0
  217. data/spec/unit/test_lispy.rbc +879 -0
  218. data/spec/unit/test_operator.rbc +531 -0
  219. data/spec/unit/test_reader.rb +6 -2
  220. data/spec/unit/test_reader.rbc +1249 -0
  221. data/spec/unit/test_relation.rbc +2588 -0
  222. data/spec/unit/test_renderer.rb +12 -1
  223. data/spec/unit/test_renderer.rbc +2011 -0
  224. data/spec/unit/text/test_cell.rb +1 -0
  225. data/spec/unit/text/test_cell.rbc +1532 -0
  226. data/spec/unit/text/test_row.rbc +847 -0
  227. data/spec/unit/text/test_table.rbc +978 -0
  228. data/spec/unit/tools/test_coalesce.rbc +456 -0
  229. data/spec/unit/tools/test_coerce.rbc +279 -0
  230. data/spec/unit/tools/test_to_lispy.rbc +5711 -0
  231. data/spec/unit/tools/test_to_ruby_literal.rbc +272 -0
  232. data/spec/unit/tools/test_tools.rbc +672 -0
  233. data/spec/unit/tools/test_tuple_handle.rbc +1591 -0
  234. data/spec/unit/tools/test_tuple_heading.rb +20 -0
  235. data/spec/unit/tools/test_tuple_heading.rbc +821 -0
  236. data/spec/unit/tools/test_varargs.rbc +495 -0
  237. data/spec/unit/types/heading/test_union.rb +21 -0
  238. data/spec/unit/types/heading/test_union.rbc +1043 -0
  239. data/spec/unit/types/test_attr_list.rbc +4481 -0
  240. data/spec/unit/types/test_attr_name.rbc +1872 -0
  241. data/spec/unit/types/test_heading.rbc +1735 -0
  242. data/spec/unit/types/test_ordering.rbc +3695 -0
  243. data/spec/unit/types/test_renaming.rbc +2426 -0
  244. data/spec/unit/types/test_summarization.rbc +2538 -0
  245. data/spec/unit/types/test_tuple_computation.rbc +2340 -0
  246. data/spec/unit/types/test_tuple_expression.rbc +2285 -0
  247. data/spec/unit/types/test_tuple_predicate.rbc +3168 -0
  248. data/tasks/gh-pages.rake +1 -1
  249. metadata +529 -125
@@ -0,0 +1,2458 @@
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