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,2481 @@
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
+ 4
176
+ Join
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
+ 81
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
+ 11
276
+ I
277
+ 4
278
+ I
279
+ 0
280
+ I
281
+ 0
282
+ I
283
+ 0
284
+ I
285
+ -2
286
+ p
287
+ 18
288
+ x
289
+ 9
290
+ suppliers
291
+ M
292
+ 1
293
+ p
294
+ 2
295
+ x
296
+ 9
297
+ for_block
298
+ t
299
+ n
300
+ x
301
+ 10
302
+ Relational
303
+ i
304
+ 84
305
+ 44
306
+ 43
307
+ 0
308
+ 80
309
+ 49
310
+ 1
311
+ 1
312
+ 13
313
+ 7
314
+ 2
315
+ 7
316
+ 3
317
+ 64
318
+ 49
319
+ 4
320
+ 2
321
+ 15
322
+ 13
323
+ 7
324
+ 5
325
+ 7
326
+ 6
327
+ 64
328
+ 49
329
+ 4
330
+ 2
331
+ 15
332
+ 44
333
+ 43
334
+ 0
335
+ 80
336
+ 49
337
+ 1
338
+ 1
339
+ 13
340
+ 7
341
+ 2
342
+ 7
343
+ 7
344
+ 64
345
+ 49
346
+ 4
347
+ 2
348
+ 15
349
+ 13
350
+ 7
351
+ 5
352
+ 7
353
+ 8
354
+ 64
355
+ 49
356
+ 4
357
+ 2
358
+ 15
359
+ 44
360
+ 43
361
+ 0
362
+ 80
363
+ 49
364
+ 1
365
+ 1
366
+ 13
367
+ 7
368
+ 2
369
+ 7
370
+ 9
371
+ 64
372
+ 49
373
+ 4
374
+ 2
375
+ 15
376
+ 13
377
+ 7
378
+ 5
379
+ 7
380
+ 8
381
+ 64
382
+ 49
383
+ 4
384
+ 2
385
+ 15
386
+ 35
387
+ 3
388
+ 11
389
+ I
390
+ 7
391
+ I
392
+ 0
393
+ I
394
+ 0
395
+ I
396
+ 0
397
+ I
398
+ -2
399
+ p
400
+ 10
401
+ x
402
+ 4
403
+ Hash
404
+ x
405
+ 16
406
+ new_from_literal
407
+ x
408
+ 3
409
+ sid
410
+ s
411
+ 2
412
+ S1
413
+ x
414
+ 3
415
+ []=
416
+ x
417
+ 4
418
+ city
419
+ s
420
+ 6
421
+ London
422
+ s
423
+ 2
424
+ S2
425
+ s
426
+ 5
427
+ Paris
428
+ s
429
+ 2
430
+ S3
431
+ p
432
+ 7
433
+ I
434
+ 0
435
+ I
436
+ 7
437
+ I
438
+ 1b
439
+ I
440
+ 8
441
+ I
442
+ 36
443
+ I
444
+ 9
445
+ I
446
+ 54
447
+ x
448
+ 83
449
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/join/test_hash_based.rb
450
+ p
451
+ 0
452
+ x
453
+ 3
454
+ let
455
+ x
456
+ 8
457
+ statuses
458
+ M
459
+ 1
460
+ p
461
+ 2
462
+ x
463
+ 9
464
+ for_block
465
+ t
466
+ n
467
+ x
468
+ 10
469
+ Relational
470
+ i
471
+ 81
472
+ 44
473
+ 43
474
+ 0
475
+ 80
476
+ 49
477
+ 1
478
+ 1
479
+ 13
480
+ 7
481
+ 2
482
+ 7
483
+ 3
484
+ 64
485
+ 49
486
+ 4
487
+ 2
488
+ 15
489
+ 13
490
+ 7
491
+ 5
492
+ 4
493
+ 20
494
+ 49
495
+ 4
496
+ 2
497
+ 15
498
+ 44
499
+ 43
500
+ 0
501
+ 80
502
+ 49
503
+ 1
504
+ 1
505
+ 13
506
+ 7
507
+ 2
508
+ 7
509
+ 6
510
+ 64
511
+ 49
512
+ 4
513
+ 2
514
+ 15
515
+ 13
516
+ 7
517
+ 5
518
+ 4
519
+ 10
520
+ 49
521
+ 4
522
+ 2
523
+ 15
524
+ 44
525
+ 43
526
+ 0
527
+ 80
528
+ 49
529
+ 1
530
+ 1
531
+ 13
532
+ 7
533
+ 2
534
+ 7
535
+ 7
536
+ 64
537
+ 49
538
+ 4
539
+ 2
540
+ 15
541
+ 13
542
+ 7
543
+ 5
544
+ 4
545
+ 30
546
+ 49
547
+ 4
548
+ 2
549
+ 15
550
+ 35
551
+ 3
552
+ 11
553
+ I
554
+ 7
555
+ I
556
+ 0
557
+ I
558
+ 0
559
+ I
560
+ 0
561
+ I
562
+ -2
563
+ p
564
+ 8
565
+ x
566
+ 4
567
+ Hash
568
+ x
569
+ 16
570
+ new_from_literal
571
+ x
572
+ 3
573
+ sid
574
+ s
575
+ 2
576
+ S1
577
+ x
578
+ 3
579
+ []=
580
+ x
581
+ 6
582
+ status
583
+ s
584
+ 2
585
+ S2
586
+ s
587
+ 2
588
+ S3
589
+ p
590
+ 7
591
+ I
592
+ 0
593
+ I
594
+ d
595
+ I
596
+ 1a
597
+ I
598
+ e
599
+ I
600
+ 34
601
+ I
602
+ f
603
+ I
604
+ 51
605
+ x
606
+ 83
607
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/join/test_hash_based.rb
608
+ p
609
+ 0
610
+ x
611
+ 9
612
+ countries
613
+ M
614
+ 1
615
+ p
616
+ 2
617
+ x
618
+ 9
619
+ for_block
620
+ t
621
+ n
622
+ x
623
+ 10
624
+ Relational
625
+ i
626
+ 84
627
+ 44
628
+ 43
629
+ 0
630
+ 80
631
+ 49
632
+ 1
633
+ 1
634
+ 13
635
+ 7
636
+ 2
637
+ 7
638
+ 3
639
+ 64
640
+ 49
641
+ 4
642
+ 2
643
+ 15
644
+ 13
645
+ 7
646
+ 5
647
+ 7
648
+ 6
649
+ 64
650
+ 49
651
+ 4
652
+ 2
653
+ 15
654
+ 44
655
+ 43
656
+ 0
657
+ 80
658
+ 49
659
+ 1
660
+ 1
661
+ 13
662
+ 7
663
+ 2
664
+ 7
665
+ 7
666
+ 64
667
+ 49
668
+ 4
669
+ 2
670
+ 15
671
+ 13
672
+ 7
673
+ 5
674
+ 7
675
+ 8
676
+ 64
677
+ 49
678
+ 4
679
+ 2
680
+ 15
681
+ 44
682
+ 43
683
+ 0
684
+ 80
685
+ 49
686
+ 1
687
+ 1
688
+ 13
689
+ 7
690
+ 2
691
+ 7
692
+ 9
693
+ 64
694
+ 49
695
+ 4
696
+ 2
697
+ 15
698
+ 13
699
+ 7
700
+ 5
701
+ 7
702
+ 10
703
+ 64
704
+ 49
705
+ 4
706
+ 2
707
+ 15
708
+ 35
709
+ 3
710
+ 11
711
+ I
712
+ 7
713
+ I
714
+ 0
715
+ I
716
+ 0
717
+ I
718
+ 0
719
+ I
720
+ -2
721
+ p
722
+ 11
723
+ x
724
+ 4
725
+ Hash
726
+ x
727
+ 16
728
+ new_from_literal
729
+ x
730
+ 4
731
+ city
732
+ s
733
+ 6
734
+ London
735
+ x
736
+ 3
737
+ []=
738
+ x
739
+ 7
740
+ country
741
+ s
742
+ 7
743
+ England
744
+ s
745
+ 5
746
+ Paris
747
+ s
748
+ 6
749
+ France
750
+ s
751
+ 9
752
+ Bruxelles
753
+ s
754
+ 17
755
+ Belgium (until ?)
756
+ p
757
+ 7
758
+ I
759
+ 0
760
+ I
761
+ 13
762
+ I
763
+ 1b
764
+ I
765
+ 14
766
+ I
767
+ 36
768
+ I
769
+ 15
770
+ I
771
+ 54
772
+ x
773
+ 83
774
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/join/test_hash_based.rb
775
+ p
776
+ 0
777
+ x
778
+ 8
779
+ operator
780
+ M
781
+ 1
782
+ p
783
+ 2
784
+ x
785
+ 9
786
+ for_block
787
+ t
788
+ n
789
+ x
790
+ 10
791
+ Relational
792
+ i
793
+ 27
794
+ 45
795
+ 0
796
+ 1
797
+ 43
798
+ 2
799
+ 13
800
+ 71
801
+ 3
802
+ 47
803
+ 9
804
+ 23
805
+ 47
806
+ 49
807
+ 4
808
+ 0
809
+ 13
810
+ 47
811
+ 49
812
+ 5
813
+ 0
814
+ 15
815
+ 8
816
+ 26
817
+ 49
818
+ 3
819
+ 0
820
+ 11
821
+ I
822
+ 3
823
+ I
824
+ 0
825
+ I
826
+ 0
827
+ I
828
+ 0
829
+ I
830
+ -2
831
+ p
832
+ 6
833
+ x
834
+ 4
835
+ Join
836
+ n
837
+ x
838
+ 9
839
+ HashBased
840
+ x
841
+ 3
842
+ new
843
+ x
844
+ 8
845
+ allocate
846
+ x
847
+ 10
848
+ initialize
849
+ p
850
+ 3
851
+ I
852
+ 0
853
+ I
854
+ 18
855
+ I
856
+ 1b
857
+ x
858
+ 83
859
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/join/test_hash_based.rb
860
+ p
861
+ 0
862
+ M
863
+ 1
864
+ p
865
+ 2
866
+ x
867
+ 9
868
+ for_block
869
+ t
870
+ n
871
+ x
872
+ 10
873
+ Relational
874
+ i
875
+ 7
876
+ 5
877
+ 48
878
+ 0
879
+ 49
880
+ 1
881
+ 0
882
+ 11
883
+ I
884
+ 2
885
+ I
886
+ 0
887
+ I
888
+ 0
889
+ I
890
+ 0
891
+ I
892
+ -2
893
+ p
894
+ 2
895
+ x
896
+ 8
897
+ operator
898
+ x
899
+ 4
900
+ to_a
901
+ p
902
+ 3
903
+ I
904
+ 0
905
+ I
906
+ 19
907
+ I
908
+ 7
909
+ x
910
+ 83
911
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/join/test_hash_based.rb
912
+ p
913
+ 0
914
+ x
915
+ 7
916
+ subject
917
+ s
918
+ 35
919
+ when applied on both candidate keys
920
+ M
921
+ 1
922
+ p
923
+ 2
924
+ x
925
+ 9
926
+ for_block
927
+ t
928
+ n
929
+ x
930
+ 10
931
+ Relational
932
+ i
933
+ 26
934
+ 5
935
+ 56
936
+ 0
937
+ 47
938
+ 50
939
+ 1
940
+ 0
941
+ 15
942
+ 5
943
+ 7
944
+ 2
945
+ 56
946
+ 3
947
+ 47
948
+ 50
949
+ 4
950
+ 1
951
+ 15
952
+ 5
953
+ 56
954
+ 5
955
+ 47
956
+ 50
957
+ 6
958
+ 0
959
+ 11
960
+ I
961
+ 4
962
+ I
963
+ 0
964
+ I
965
+ 0
966
+ I
967
+ 0
968
+ I
969
+ -2
970
+ p
971
+ 7
972
+ M
973
+ 1
974
+ p
975
+ 2
976
+ x
977
+ 9
978
+ for_block
979
+ t
980
+ n
981
+ x
982
+ 10
983
+ Relational
984
+ i
985
+ 15
986
+ 5
987
+ 48
988
+ 0
989
+ 5
990
+ 48
991
+ 1
992
+ 5
993
+ 48
994
+ 2
995
+ 35
996
+ 2
997
+ 49
998
+ 3
999
+ 1
1000
+ 11
1001
+ I
1002
+ 4
1003
+ I
1004
+ 0
1005
+ I
1006
+ 0
1007
+ I
1008
+ 0
1009
+ I
1010
+ -2
1011
+ p
1012
+ 4
1013
+ x
1014
+ 8
1015
+ operator
1016
+ x
1017
+ 9
1018
+ suppliers
1019
+ x
1020
+ 8
1021
+ statuses
1022
+ x
1023
+ 4
1024
+ pipe
1025
+ p
1026
+ 3
1027
+ I
1028
+ 0
1029
+ I
1030
+ 1c
1031
+ I
1032
+ f
1033
+ x
1034
+ 83
1035
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/join/test_hash_based.rb
1036
+ p
1037
+ 0
1038
+ x
1039
+ 6
1040
+ before
1041
+ x
1042
+ 8
1043
+ expected
1044
+ M
1045
+ 1
1046
+ p
1047
+ 2
1048
+ x
1049
+ 9
1050
+ for_block
1051
+ t
1052
+ n
1053
+ x
1054
+ 10
1055
+ Relational
1056
+ i
1057
+ 114
1058
+ 44
1059
+ 43
1060
+ 0
1061
+ 4
1062
+ 3
1063
+ 49
1064
+ 1
1065
+ 1
1066
+ 13
1067
+ 7
1068
+ 2
1069
+ 7
1070
+ 3
1071
+ 64
1072
+ 49
1073
+ 4
1074
+ 2
1075
+ 15
1076
+ 13
1077
+ 7
1078
+ 5
1079
+ 7
1080
+ 6
1081
+ 64
1082
+ 49
1083
+ 4
1084
+ 2
1085
+ 15
1086
+ 13
1087
+ 7
1088
+ 7
1089
+ 4
1090
+ 20
1091
+ 49
1092
+ 4
1093
+ 2
1094
+ 15
1095
+ 44
1096
+ 43
1097
+ 0
1098
+ 4
1099
+ 3
1100
+ 49
1101
+ 1
1102
+ 1
1103
+ 13
1104
+ 7
1105
+ 2
1106
+ 7
1107
+ 8
1108
+ 64
1109
+ 49
1110
+ 4
1111
+ 2
1112
+ 15
1113
+ 13
1114
+ 7
1115
+ 5
1116
+ 7
1117
+ 9
1118
+ 64
1119
+ 49
1120
+ 4
1121
+ 2
1122
+ 15
1123
+ 13
1124
+ 7
1125
+ 7
1126
+ 4
1127
+ 10
1128
+ 49
1129
+ 4
1130
+ 2
1131
+ 15
1132
+ 44
1133
+ 43
1134
+ 0
1135
+ 4
1136
+ 3
1137
+ 49
1138
+ 1
1139
+ 1
1140
+ 13
1141
+ 7
1142
+ 2
1143
+ 7
1144
+ 10
1145
+ 64
1146
+ 49
1147
+ 4
1148
+ 2
1149
+ 15
1150
+ 13
1151
+ 7
1152
+ 5
1153
+ 7
1154
+ 9
1155
+ 64
1156
+ 49
1157
+ 4
1158
+ 2
1159
+ 15
1160
+ 13
1161
+ 7
1162
+ 7
1163
+ 4
1164
+ 30
1165
+ 49
1166
+ 4
1167
+ 2
1168
+ 15
1169
+ 35
1170
+ 3
1171
+ 11
1172
+ I
1173
+ 7
1174
+ I
1175
+ 0
1176
+ I
1177
+ 0
1178
+ I
1179
+ 0
1180
+ I
1181
+ -2
1182
+ p
1183
+ 11
1184
+ x
1185
+ 4
1186
+ Hash
1187
+ x
1188
+ 16
1189
+ new_from_literal
1190
+ x
1191
+ 3
1192
+ sid
1193
+ s
1194
+ 2
1195
+ S1
1196
+ x
1197
+ 3
1198
+ []=
1199
+ x
1200
+ 4
1201
+ city
1202
+ s
1203
+ 6
1204
+ London
1205
+ x
1206
+ 6
1207
+ status
1208
+ s
1209
+ 2
1210
+ S2
1211
+ s
1212
+ 5
1213
+ Paris
1214
+ s
1215
+ 2
1216
+ S3
1217
+ p
1218
+ 7
1219
+ I
1220
+ 0
1221
+ I
1222
+ 1e
1223
+ I
1224
+ 25
1225
+ I
1226
+ 1f
1227
+ I
1228
+ 4a
1229
+ I
1230
+ 20
1231
+ I
1232
+ 72
1233
+ x
1234
+ 83
1235
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/join/test_hash_based.rb
1236
+ p
1237
+ 0
1238
+ x
1239
+ 3
1240
+ let
1241
+ M
1242
+ 1
1243
+ p
1244
+ 2
1245
+ x
1246
+ 9
1247
+ for_block
1248
+ t
1249
+ n
1250
+ x
1251
+ 10
1252
+ Relational
1253
+ i
1254
+ 9
1255
+ 5
1256
+ 48
1257
+ 0
1258
+ 5
1259
+ 48
1260
+ 1
1261
+ 83
1262
+ 2
1263
+ 11
1264
+ I
1265
+ 3
1266
+ I
1267
+ 0
1268
+ I
1269
+ 0
1270
+ I
1271
+ 0
1272
+ I
1273
+ -2
1274
+ p
1275
+ 3
1276
+ x
1277
+ 6
1278
+ should
1279
+ x
1280
+ 8
1281
+ expected
1282
+ x
1283
+ 2
1284
+ ==
1285
+ p
1286
+ 3
1287
+ I
1288
+ 0
1289
+ I
1290
+ 22
1291
+ I
1292
+ 9
1293
+ x
1294
+ 83
1295
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/join/test_hash_based.rb
1296
+ p
1297
+ 0
1298
+ x
1299
+ 2
1300
+ it
1301
+ p
1302
+ 7
1303
+ I
1304
+ 0
1305
+ I
1306
+ 1c
1307
+ I
1308
+ 8
1309
+ I
1310
+ 1d
1311
+ I
1312
+ 12
1313
+ I
1314
+ 22
1315
+ I
1316
+ 1a
1317
+ x
1318
+ 83
1319
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/join/test_hash_based.rb
1320
+ p
1321
+ 0
1322
+ x
1323
+ 8
1324
+ describe
1325
+ s
1326
+ 37
1327
+ when applied on a typical foreign key
1328
+ M
1329
+ 1
1330
+ p
1331
+ 2
1332
+ x
1333
+ 9
1334
+ for_block
1335
+ t
1336
+ n
1337
+ x
1338
+ 10
1339
+ Relational
1340
+ i
1341
+ 32
1342
+ 5
1343
+ 7
1344
+ 0
1345
+ 56
1346
+ 1
1347
+ 47
1348
+ 50
1349
+ 2
1350
+ 1
1351
+ 15
1352
+ 5
1353
+ 7
1354
+ 3
1355
+ 64
1356
+ 56
1357
+ 4
1358
+ 47
1359
+ 50
1360
+ 5
1361
+ 1
1362
+ 15
1363
+ 5
1364
+ 7
1365
+ 6
1366
+ 64
1367
+ 56
1368
+ 7
1369
+ 47
1370
+ 50
1371
+ 5
1372
+ 1
1373
+ 11
1374
+ I
1375
+ 4
1376
+ I
1377
+ 0
1378
+ I
1379
+ 0
1380
+ I
1381
+ 0
1382
+ I
1383
+ -2
1384
+ p
1385
+ 8
1386
+ x
1387
+ 8
1388
+ expected
1389
+ M
1390
+ 1
1391
+ p
1392
+ 2
1393
+ x
1394
+ 9
1395
+ for_block
1396
+ t
1397
+ n
1398
+ x
1399
+ 10
1400
+ Relational
1401
+ i
1402
+ 117
1403
+ 44
1404
+ 43
1405
+ 0
1406
+ 4
1407
+ 3
1408
+ 49
1409
+ 1
1410
+ 1
1411
+ 13
1412
+ 7
1413
+ 2
1414
+ 7
1415
+ 3
1416
+ 64
1417
+ 49
1418
+ 4
1419
+ 2
1420
+ 15
1421
+ 13
1422
+ 7
1423
+ 5
1424
+ 7
1425
+ 6
1426
+ 64
1427
+ 49
1428
+ 4
1429
+ 2
1430
+ 15
1431
+ 13
1432
+ 7
1433
+ 7
1434
+ 7
1435
+ 8
1436
+ 64
1437
+ 49
1438
+ 4
1439
+ 2
1440
+ 15
1441
+ 44
1442
+ 43
1443
+ 0
1444
+ 4
1445
+ 3
1446
+ 49
1447
+ 1
1448
+ 1
1449
+ 13
1450
+ 7
1451
+ 2
1452
+ 7
1453
+ 9
1454
+ 64
1455
+ 49
1456
+ 4
1457
+ 2
1458
+ 15
1459
+ 13
1460
+ 7
1461
+ 5
1462
+ 7
1463
+ 10
1464
+ 64
1465
+ 49
1466
+ 4
1467
+ 2
1468
+ 15
1469
+ 13
1470
+ 7
1471
+ 7
1472
+ 7
1473
+ 11
1474
+ 64
1475
+ 49
1476
+ 4
1477
+ 2
1478
+ 15
1479
+ 44
1480
+ 43
1481
+ 0
1482
+ 4
1483
+ 3
1484
+ 49
1485
+ 1
1486
+ 1
1487
+ 13
1488
+ 7
1489
+ 2
1490
+ 7
1491
+ 12
1492
+ 64
1493
+ 49
1494
+ 4
1495
+ 2
1496
+ 15
1497
+ 13
1498
+ 7
1499
+ 5
1500
+ 7
1501
+ 10
1502
+ 64
1503
+ 49
1504
+ 4
1505
+ 2
1506
+ 15
1507
+ 13
1508
+ 7
1509
+ 7
1510
+ 7
1511
+ 11
1512
+ 64
1513
+ 49
1514
+ 4
1515
+ 2
1516
+ 15
1517
+ 35
1518
+ 3
1519
+ 11
1520
+ I
1521
+ 7
1522
+ I
1523
+ 0
1524
+ I
1525
+ 0
1526
+ I
1527
+ 0
1528
+ I
1529
+ -2
1530
+ p
1531
+ 13
1532
+ x
1533
+ 4
1534
+ Hash
1535
+ x
1536
+ 16
1537
+ new_from_literal
1538
+ x
1539
+ 3
1540
+ sid
1541
+ s
1542
+ 2
1543
+ S1
1544
+ x
1545
+ 3
1546
+ []=
1547
+ x
1548
+ 4
1549
+ city
1550
+ s
1551
+ 6
1552
+ London
1553
+ x
1554
+ 7
1555
+ country
1556
+ s
1557
+ 7
1558
+ England
1559
+ s
1560
+ 2
1561
+ S2
1562
+ s
1563
+ 5
1564
+ Paris
1565
+ s
1566
+ 6
1567
+ France
1568
+ s
1569
+ 2
1570
+ S3
1571
+ p
1572
+ 7
1573
+ I
1574
+ 0
1575
+ I
1576
+ 27
1577
+ I
1578
+ 26
1579
+ I
1580
+ 28
1581
+ I
1582
+ 4c
1583
+ I
1584
+ 29
1585
+ I
1586
+ 75
1587
+ x
1588
+ 83
1589
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/join/test_hash_based.rb
1590
+ p
1591
+ 0
1592
+ x
1593
+ 3
1594
+ let
1595
+ s
1596
+ 10
1597
+ on one way
1598
+ M
1599
+ 1
1600
+ p
1601
+ 2
1602
+ x
1603
+ 9
1604
+ for_block
1605
+ t
1606
+ n
1607
+ x
1608
+ 10
1609
+ Relational
1610
+ i
1611
+ 16
1612
+ 5
1613
+ 56
1614
+ 0
1615
+ 47
1616
+ 50
1617
+ 1
1618
+ 0
1619
+ 15
1620
+ 5
1621
+ 56
1622
+ 2
1623
+ 47
1624
+ 50
1625
+ 3
1626
+ 0
1627
+ 11
1628
+ I
1629
+ 3
1630
+ I
1631
+ 0
1632
+ I
1633
+ 0
1634
+ I
1635
+ 0
1636
+ I
1637
+ -2
1638
+ p
1639
+ 4
1640
+ M
1641
+ 1
1642
+ p
1643
+ 2
1644
+ x
1645
+ 9
1646
+ for_block
1647
+ t
1648
+ n
1649
+ x
1650
+ 10
1651
+ Relational
1652
+ i
1653
+ 15
1654
+ 5
1655
+ 48
1656
+ 0
1657
+ 5
1658
+ 48
1659
+ 1
1660
+ 5
1661
+ 48
1662
+ 2
1663
+ 35
1664
+ 2
1665
+ 49
1666
+ 3
1667
+ 1
1668
+ 11
1669
+ I
1670
+ 4
1671
+ I
1672
+ 0
1673
+ I
1674
+ 0
1675
+ I
1676
+ 0
1677
+ I
1678
+ -2
1679
+ p
1680
+ 4
1681
+ x
1682
+ 8
1683
+ operator
1684
+ x
1685
+ 9
1686
+ suppliers
1687
+ x
1688
+ 9
1689
+ countries
1690
+ x
1691
+ 4
1692
+ pipe
1693
+ p
1694
+ 3
1695
+ I
1696
+ 0
1697
+ I
1698
+ 2c
1699
+ I
1700
+ f
1701
+ x
1702
+ 83
1703
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/join/test_hash_based.rb
1704
+ p
1705
+ 0
1706
+ x
1707
+ 6
1708
+ before
1709
+ M
1710
+ 1
1711
+ p
1712
+ 2
1713
+ x
1714
+ 9
1715
+ for_block
1716
+ t
1717
+ n
1718
+ x
1719
+ 10
1720
+ Relational
1721
+ i
1722
+ 9
1723
+ 5
1724
+ 48
1725
+ 0
1726
+ 5
1727
+ 48
1728
+ 1
1729
+ 83
1730
+ 2
1731
+ 11
1732
+ I
1733
+ 3
1734
+ I
1735
+ 0
1736
+ I
1737
+ 0
1738
+ I
1739
+ 0
1740
+ I
1741
+ -2
1742
+ p
1743
+ 3
1744
+ x
1745
+ 6
1746
+ should
1747
+ x
1748
+ 8
1749
+ expected
1750
+ x
1751
+ 2
1752
+ ==
1753
+ p
1754
+ 3
1755
+ I
1756
+ 0
1757
+ I
1758
+ 2d
1759
+ I
1760
+ 9
1761
+ x
1762
+ 83
1763
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/join/test_hash_based.rb
1764
+ p
1765
+ 0
1766
+ x
1767
+ 2
1768
+ it
1769
+ p
1770
+ 5
1771
+ I
1772
+ 0
1773
+ I
1774
+ 2c
1775
+ I
1776
+ 8
1777
+ I
1778
+ 2d
1779
+ I
1780
+ 10
1781
+ x
1782
+ 83
1783
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/join/test_hash_based.rb
1784
+ p
1785
+ 0
1786
+ x
1787
+ 8
1788
+ describe
1789
+ s
1790
+ 23
1791
+ on the other way around
1792
+ M
1793
+ 1
1794
+ p
1795
+ 2
1796
+ x
1797
+ 9
1798
+ for_block
1799
+ t
1800
+ n
1801
+ x
1802
+ 10
1803
+ Relational
1804
+ i
1805
+ 16
1806
+ 5
1807
+ 56
1808
+ 0
1809
+ 47
1810
+ 50
1811
+ 1
1812
+ 0
1813
+ 15
1814
+ 5
1815
+ 56
1816
+ 2
1817
+ 47
1818
+ 50
1819
+ 3
1820
+ 0
1821
+ 11
1822
+ I
1823
+ 3
1824
+ I
1825
+ 0
1826
+ I
1827
+ 0
1828
+ I
1829
+ 0
1830
+ I
1831
+ -2
1832
+ p
1833
+ 4
1834
+ M
1835
+ 1
1836
+ p
1837
+ 2
1838
+ x
1839
+ 9
1840
+ for_block
1841
+ t
1842
+ n
1843
+ x
1844
+ 10
1845
+ Relational
1846
+ i
1847
+ 15
1848
+ 5
1849
+ 48
1850
+ 0
1851
+ 5
1852
+ 48
1853
+ 1
1854
+ 5
1855
+ 48
1856
+ 2
1857
+ 35
1858
+ 2
1859
+ 49
1860
+ 3
1861
+ 1
1862
+ 11
1863
+ I
1864
+ 4
1865
+ I
1866
+ 0
1867
+ I
1868
+ 0
1869
+ I
1870
+ 0
1871
+ I
1872
+ -2
1873
+ p
1874
+ 4
1875
+ x
1876
+ 8
1877
+ operator
1878
+ x
1879
+ 9
1880
+ countries
1881
+ x
1882
+ 9
1883
+ suppliers
1884
+ x
1885
+ 4
1886
+ pipe
1887
+ p
1888
+ 3
1889
+ I
1890
+ 0
1891
+ I
1892
+ 30
1893
+ I
1894
+ f
1895
+ x
1896
+ 83
1897
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/join/test_hash_based.rb
1898
+ p
1899
+ 0
1900
+ x
1901
+ 6
1902
+ before
1903
+ M
1904
+ 1
1905
+ p
1906
+ 2
1907
+ x
1908
+ 9
1909
+ for_block
1910
+ t
1911
+ n
1912
+ x
1913
+ 10
1914
+ Relational
1915
+ i
1916
+ 9
1917
+ 5
1918
+ 48
1919
+ 0
1920
+ 5
1921
+ 48
1922
+ 1
1923
+ 83
1924
+ 2
1925
+ 11
1926
+ I
1927
+ 3
1928
+ I
1929
+ 0
1930
+ I
1931
+ 0
1932
+ I
1933
+ 0
1934
+ I
1935
+ -2
1936
+ p
1937
+ 3
1938
+ x
1939
+ 6
1940
+ should
1941
+ x
1942
+ 8
1943
+ expected
1944
+ x
1945
+ 2
1946
+ ==
1947
+ p
1948
+ 3
1949
+ I
1950
+ 0
1951
+ I
1952
+ 31
1953
+ I
1954
+ 9
1955
+ x
1956
+ 83
1957
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/join/test_hash_based.rb
1958
+ p
1959
+ 0
1960
+ x
1961
+ 2
1962
+ it
1963
+ p
1964
+ 5
1965
+ I
1966
+ 0
1967
+ I
1968
+ 30
1969
+ I
1970
+ 8
1971
+ I
1972
+ 31
1973
+ I
1974
+ 10
1975
+ x
1976
+ 83
1977
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/join/test_hash_based.rb
1978
+ p
1979
+ 0
1980
+ p
1981
+ 7
1982
+ I
1983
+ 0
1984
+ I
1985
+ 26
1986
+ I
1987
+ a
1988
+ I
1989
+ 2b
1990
+ I
1991
+ 15
1992
+ I
1993
+ 2f
1994
+ I
1995
+ 20
1996
+ x
1997
+ 83
1998
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/join/test_hash_based.rb
1999
+ p
2000
+ 0
2001
+ s
2002
+ 32
2003
+ when no attributes are in common
2004
+ M
2005
+ 1
2006
+ p
2007
+ 2
2008
+ x
2009
+ 9
2010
+ for_block
2011
+ t
2012
+ n
2013
+ x
2014
+ 10
2015
+ Relational
2016
+ i
2017
+ 26
2018
+ 5
2019
+ 56
2020
+ 0
2021
+ 47
2022
+ 50
2023
+ 1
2024
+ 0
2025
+ 15
2026
+ 5
2027
+ 7
2028
+ 2
2029
+ 56
2030
+ 3
2031
+ 47
2032
+ 50
2033
+ 4
2034
+ 1
2035
+ 15
2036
+ 5
2037
+ 56
2038
+ 5
2039
+ 47
2040
+ 50
2041
+ 6
2042
+ 0
2043
+ 11
2044
+ I
2045
+ 4
2046
+ I
2047
+ 0
2048
+ I
2049
+ 0
2050
+ I
2051
+ 0
2052
+ I
2053
+ -2
2054
+ p
2055
+ 7
2056
+ M
2057
+ 1
2058
+ p
2059
+ 2
2060
+ x
2061
+ 9
2062
+ for_block
2063
+ t
2064
+ n
2065
+ x
2066
+ 10
2067
+ Relational
2068
+ i
2069
+ 15
2070
+ 5
2071
+ 48
2072
+ 0
2073
+ 5
2074
+ 48
2075
+ 1
2076
+ 5
2077
+ 48
2078
+ 2
2079
+ 35
2080
+ 2
2081
+ 49
2082
+ 3
2083
+ 1
2084
+ 11
2085
+ I
2086
+ 4
2087
+ I
2088
+ 0
2089
+ I
2090
+ 0
2091
+ I
2092
+ 0
2093
+ I
2094
+ -2
2095
+ p
2096
+ 4
2097
+ x
2098
+ 8
2099
+ operator
2100
+ x
2101
+ 8
2102
+ statuses
2103
+ x
2104
+ 9
2105
+ countries
2106
+ x
2107
+ 4
2108
+ pipe
2109
+ p
2110
+ 3
2111
+ I
2112
+ 0
2113
+ I
2114
+ 36
2115
+ I
2116
+ f
2117
+ x
2118
+ 83
2119
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/join/test_hash_based.rb
2120
+ p
2121
+ 0
2122
+ x
2123
+ 6
2124
+ before
2125
+ x
2126
+ 8
2127
+ expected
2128
+ M
2129
+ 1
2130
+ p
2131
+ 2
2132
+ x
2133
+ 9
2134
+ for_block
2135
+ t
2136
+ n
2137
+ x
2138
+ 10
2139
+ Relational
2140
+ i
2141
+ 12
2142
+ 5
2143
+ 48
2144
+ 0
2145
+ 56
2146
+ 1
2147
+ 50
2148
+ 2
2149
+ 0
2150
+ 49
2151
+ 3
2152
+ 0
2153
+ 11
2154
+ I
2155
+ 3
2156
+ I
2157
+ 0
2158
+ I
2159
+ 0
2160
+ I
2161
+ 0
2162
+ I
2163
+ -2
2164
+ p
2165
+ 4
2166
+ x
2167
+ 8
2168
+ statuses
2169
+ M
2170
+ 1
2171
+ p
2172
+ 2
2173
+ x
2174
+ 9
2175
+ for_block
2176
+ t
2177
+ n
2178
+ x
2179
+ 10
2180
+ Relational
2181
+ i
2182
+ 13
2183
+ 57
2184
+ 19
2185
+ 0
2186
+ 15
2187
+ 5
2188
+ 48
2189
+ 0
2190
+ 56
2191
+ 1
2192
+ 50
2193
+ 2
2194
+ 0
2195
+ 11
2196
+ I
2197
+ 4
2198
+ I
2199
+ 1
2200
+ I
2201
+ 1
2202
+ I
2203
+ 1
2204
+ n
2205
+ p
2206
+ 3
2207
+ x
2208
+ 9
2209
+ countries
2210
+ M
2211
+ 1
2212
+ p
2213
+ 2
2214
+ x
2215
+ 9
2216
+ for_block
2217
+ t
2218
+ n
2219
+ x
2220
+ 10
2221
+ Relational
2222
+ i
2223
+ 13
2224
+ 57
2225
+ 19
2226
+ 0
2227
+ 15
2228
+ 20
2229
+ 0
2230
+ 21
2231
+ 1
2232
+ 0
2233
+ 49
2234
+ 0
2235
+ 1
2236
+ 11
2237
+ I
2238
+ 4
2239
+ I
2240
+ 1
2241
+ I
2242
+ 1
2243
+ I
2244
+ 1
2245
+ n
2246
+ p
2247
+ 1
2248
+ x
2249
+ 5
2250
+ merge
2251
+ p
2252
+ 3
2253
+ I
2254
+ 0
2255
+ I
2256
+ 38
2257
+ I
2258
+ d
2259
+ x
2260
+ 83
2261
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/join/test_hash_based.rb
2262
+ p
2263
+ 1
2264
+ x
2265
+ 1
2266
+ c
2267
+ x
2268
+ 7
2269
+ collect
2270
+ p
2271
+ 3
2272
+ I
2273
+ 0
2274
+ I
2275
+ 38
2276
+ I
2277
+ d
2278
+ x
2279
+ 83
2280
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/join/test_hash_based.rb
2281
+ p
2282
+ 1
2283
+ x
2284
+ 1
2285
+ s
2286
+ x
2287
+ 7
2288
+ collect
2289
+ x
2290
+ 7
2291
+ flatten
2292
+ p
2293
+ 3
2294
+ I
2295
+ 0
2296
+ I
2297
+ 38
2298
+ I
2299
+ c
2300
+ x
2301
+ 83
2302
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/join/test_hash_based.rb
2303
+ p
2304
+ 0
2305
+ x
2306
+ 3
2307
+ let
2308
+ M
2309
+ 1
2310
+ p
2311
+ 2
2312
+ x
2313
+ 9
2314
+ for_block
2315
+ t
2316
+ n
2317
+ x
2318
+ 10
2319
+ Relational
2320
+ i
2321
+ 9
2322
+ 5
2323
+ 48
2324
+ 0
2325
+ 5
2326
+ 48
2327
+ 1
2328
+ 83
2329
+ 2
2330
+ 11
2331
+ I
2332
+ 3
2333
+ I
2334
+ 0
2335
+ I
2336
+ 0
2337
+ I
2338
+ 0
2339
+ I
2340
+ -2
2341
+ p
2342
+ 3
2343
+ x
2344
+ 6
2345
+ should
2346
+ x
2347
+ 8
2348
+ expected
2349
+ x
2350
+ 2
2351
+ ==
2352
+ p
2353
+ 3
2354
+ I
2355
+ 0
2356
+ I
2357
+ 3a
2358
+ I
2359
+ 9
2360
+ x
2361
+ 83
2362
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/join/test_hash_based.rb
2363
+ p
2364
+ 0
2365
+ x
2366
+ 2
2367
+ it
2368
+ p
2369
+ 7
2370
+ I
2371
+ 0
2372
+ I
2373
+ 36
2374
+ I
2375
+ 8
2376
+ I
2377
+ 37
2378
+ I
2379
+ 12
2380
+ I
2381
+ 3a
2382
+ I
2383
+ 1a
2384
+ x
2385
+ 83
2386
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/join/test_hash_based.rb
2387
+ p
2388
+ 0
2389
+ p
2390
+ 17
2391
+ I
2392
+ 0
2393
+ I
2394
+ 6
2395
+ I
2396
+ a
2397
+ I
2398
+ c
2399
+ I
2400
+ 14
2401
+ I
2402
+ 12
2403
+ I
2404
+ 1e
2405
+ I
2406
+ 18
2407
+ I
2408
+ 28
2409
+ I
2410
+ 19
2411
+ I
2412
+ 30
2413
+ I
2414
+ 1b
2415
+ I
2416
+ 3b
2417
+ I
2418
+ 25
2419
+ I
2420
+ 46
2421
+ I
2422
+ 35
2423
+ I
2424
+ 51
2425
+ x
2426
+ 83
2427
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/join/test_hash_based.rb
2428
+ p
2429
+ 0
2430
+ x
2431
+ 8
2432
+ describe
2433
+ p
2434
+ 3
2435
+ I
2436
+ 2
2437
+ I
2438
+ 4
2439
+ I
2440
+ f
2441
+ x
2442
+ 83
2443
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/join/test_hash_based.rb
2444
+ p
2445
+ 0
2446
+ x
2447
+ 13
2448
+ attach_method
2449
+ p
2450
+ 3
2451
+ I
2452
+ 2
2453
+ I
2454
+ 3
2455
+ I
2456
+ 1e
2457
+ x
2458
+ 83
2459
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/join/test_hash_based.rb
2460
+ p
2461
+ 0
2462
+ x
2463
+ 13
2464
+ attach_method
2465
+ p
2466
+ 5
2467
+ I
2468
+ 0
2469
+ I
2470
+ 1
2471
+ I
2472
+ 9
2473
+ I
2474
+ 2
2475
+ I
2476
+ 25
2477
+ x
2478
+ 83
2479
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/join/test_hash_based.rb
2480
+ p
2481
+ 0