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,1788 @@
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
+ 13
148
+ 5
149
+ 66
150
+ 5
151
+ 45
152
+ 0
153
+ 1
154
+ 56
155
+ 2
156
+ 47
157
+ 50
158
+ 3
159
+ 1
160
+ 11
161
+ I
162
+ 3
163
+ I
164
+ 0
165
+ I
166
+ 0
167
+ I
168
+ 0
169
+ n
170
+ p
171
+ 4
172
+ x
173
+ 5
174
+ Quota
175
+ n
176
+ M
177
+ 1
178
+ p
179
+ 2
180
+ x
181
+ 9
182
+ for_block
183
+ t
184
+ n
185
+ x
186
+ 10
187
+ Relational
188
+ i
189
+ 69
190
+ 5
191
+ 7
192
+ 0
193
+ 56
194
+ 1
195
+ 47
196
+ 50
197
+ 2
198
+ 1
199
+ 15
200
+ 5
201
+ 7
202
+ 3
203
+ 64
204
+ 47
205
+ 49
206
+ 4
207
+ 1
208
+ 15
209
+ 5
210
+ 7
211
+ 5
212
+ 56
213
+ 6
214
+ 47
215
+ 50
216
+ 2
217
+ 1
218
+ 15
219
+ 5
220
+ 7
221
+ 7
222
+ 56
223
+ 8
224
+ 47
225
+ 50
226
+ 2
227
+ 1
228
+ 15
229
+ 5
230
+ 56
231
+ 9
232
+ 47
233
+ 50
234
+ 10
235
+ 0
236
+ 15
237
+ 5
238
+ 7
239
+ 11
240
+ 64
241
+ 56
242
+ 12
243
+ 47
244
+ 50
245
+ 13
246
+ 1
247
+ 15
248
+ 5
249
+ 7
250
+ 14
251
+ 64
252
+ 56
253
+ 15
254
+ 47
255
+ 50
256
+ 13
257
+ 1
258
+ 11
259
+ I
260
+ 4
261
+ I
262
+ 0
263
+ I
264
+ 0
265
+ I
266
+ 0
267
+ I
268
+ -2
269
+ p
270
+ 16
271
+ x
272
+ 14
273
+ operator_class
274
+ M
275
+ 1
276
+ p
277
+ 2
278
+ x
279
+ 9
280
+ for_block
281
+ t
282
+ n
283
+ x
284
+ 10
285
+ Relational
286
+ i
287
+ 4
288
+ 45
289
+ 0
290
+ 1
291
+ 11
292
+ I
293
+ 2
294
+ I
295
+ 0
296
+ I
297
+ 0
298
+ I
299
+ 0
300
+ I
301
+ -2
302
+ p
303
+ 2
304
+ x
305
+ 5
306
+ Quota
307
+ n
308
+ p
309
+ 3
310
+ I
311
+ 0
312
+ I
313
+ 6
314
+ I
315
+ 4
316
+ x
317
+ 73
318
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/test_quota.rb
319
+ p
320
+ 0
321
+ x
322
+ 3
323
+ let
324
+ s
325
+ 17
326
+ An operator class
327
+ x
328
+ 21
329
+ it_should_behave_like
330
+ x
331
+ 5
332
+ input
333
+ M
334
+ 1
335
+ p
336
+ 2
337
+ x
338
+ 9
339
+ for_block
340
+ t
341
+ n
342
+ x
343
+ 10
344
+ Relational
345
+ i
346
+ 130
347
+ 44
348
+ 43
349
+ 0
350
+ 80
351
+ 49
352
+ 1
353
+ 1
354
+ 13
355
+ 7
356
+ 2
357
+ 7
358
+ 3
359
+ 64
360
+ 49
361
+ 4
362
+ 2
363
+ 15
364
+ 13
365
+ 7
366
+ 5
367
+ 79
368
+ 49
369
+ 4
370
+ 2
371
+ 15
372
+ 44
373
+ 43
374
+ 0
375
+ 80
376
+ 49
377
+ 1
378
+ 1
379
+ 13
380
+ 7
381
+ 2
382
+ 7
383
+ 3
384
+ 64
385
+ 49
386
+ 4
387
+ 2
388
+ 15
389
+ 13
390
+ 7
391
+ 5
392
+ 80
393
+ 49
394
+ 4
395
+ 2
396
+ 15
397
+ 44
398
+ 43
399
+ 0
400
+ 80
401
+ 49
402
+ 1
403
+ 1
404
+ 13
405
+ 7
406
+ 2
407
+ 7
408
+ 3
409
+ 64
410
+ 49
411
+ 4
412
+ 2
413
+ 15
414
+ 13
415
+ 7
416
+ 5
417
+ 4
418
+ 3
419
+ 49
420
+ 4
421
+ 2
422
+ 15
423
+ 44
424
+ 43
425
+ 0
426
+ 80
427
+ 49
428
+ 1
429
+ 1
430
+ 13
431
+ 7
432
+ 2
433
+ 7
434
+ 6
435
+ 64
436
+ 49
437
+ 4
438
+ 2
439
+ 15
440
+ 13
441
+ 7
442
+ 5
443
+ 4
444
+ 4
445
+ 49
446
+ 4
447
+ 2
448
+ 15
449
+ 44
450
+ 43
451
+ 0
452
+ 80
453
+ 49
454
+ 1
455
+ 1
456
+ 13
457
+ 7
458
+ 2
459
+ 7
460
+ 6
461
+ 64
462
+ 49
463
+ 4
464
+ 2
465
+ 15
466
+ 13
467
+ 7
468
+ 5
469
+ 80
470
+ 49
471
+ 4
472
+ 2
473
+ 15
474
+ 35
475
+ 5
476
+ 11
477
+ I
478
+ 9
479
+ I
480
+ 0
481
+ I
482
+ 0
483
+ I
484
+ 0
485
+ I
486
+ -2
487
+ p
488
+ 7
489
+ x
490
+ 4
491
+ Hash
492
+ x
493
+ 16
494
+ new_from_literal
495
+ x
496
+ 1
497
+ a
498
+ s
499
+ 10
500
+ via_method
501
+ x
502
+ 3
503
+ []=
504
+ x
505
+ 4
506
+ time
507
+ s
508
+ 10
509
+ via_reader
510
+ p
511
+ 11
512
+ I
513
+ 0
514
+ I
515
+ a
516
+ I
517
+ 19
518
+ I
519
+ b
520
+ I
521
+ 32
522
+ I
523
+ c
524
+ I
525
+ 4c
526
+ I
527
+ d
528
+ I
529
+ 66
530
+ I
531
+ e
532
+ I
533
+ 82
534
+ x
535
+ 73
536
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/test_quota.rb
537
+ p
538
+ 0
539
+ x
540
+ 8
541
+ expected
542
+ M
543
+ 1
544
+ p
545
+ 2
546
+ x
547
+ 9
548
+ for_block
549
+ t
550
+ n
551
+ x
552
+ 10
553
+ Relational
554
+ i
555
+ 220
556
+ 44
557
+ 43
558
+ 0
559
+ 4
560
+ 4
561
+ 49
562
+ 1
563
+ 1
564
+ 13
565
+ 7
566
+ 2
567
+ 7
568
+ 3
569
+ 64
570
+ 49
571
+ 4
572
+ 2
573
+ 15
574
+ 13
575
+ 7
576
+ 5
577
+ 79
578
+ 49
579
+ 4
580
+ 2
581
+ 15
582
+ 13
583
+ 7
584
+ 6
585
+ 79
586
+ 49
587
+ 4
588
+ 2
589
+ 15
590
+ 13
591
+ 7
592
+ 7
593
+ 79
594
+ 49
595
+ 4
596
+ 2
597
+ 15
598
+ 44
599
+ 43
600
+ 0
601
+ 4
602
+ 4
603
+ 49
604
+ 1
605
+ 1
606
+ 13
607
+ 7
608
+ 2
609
+ 7
610
+ 3
611
+ 64
612
+ 49
613
+ 4
614
+ 2
615
+ 15
616
+ 13
617
+ 7
618
+ 5
619
+ 80
620
+ 49
621
+ 4
622
+ 2
623
+ 15
624
+ 13
625
+ 7
626
+ 6
627
+ 4
628
+ 3
629
+ 49
630
+ 4
631
+ 2
632
+ 15
633
+ 13
634
+ 7
635
+ 7
636
+ 80
637
+ 49
638
+ 4
639
+ 2
640
+ 15
641
+ 44
642
+ 43
643
+ 0
644
+ 4
645
+ 4
646
+ 49
647
+ 1
648
+ 1
649
+ 13
650
+ 7
651
+ 2
652
+ 7
653
+ 3
654
+ 64
655
+ 49
656
+ 4
657
+ 2
658
+ 15
659
+ 13
660
+ 7
661
+ 5
662
+ 4
663
+ 3
664
+ 49
665
+ 4
666
+ 2
667
+ 15
668
+ 13
669
+ 7
670
+ 6
671
+ 4
672
+ 6
673
+ 49
674
+ 4
675
+ 2
676
+ 15
677
+ 13
678
+ 7
679
+ 7
680
+ 4
681
+ 3
682
+ 49
683
+ 4
684
+ 2
685
+ 15
686
+ 44
687
+ 43
688
+ 0
689
+ 4
690
+ 4
691
+ 49
692
+ 1
693
+ 1
694
+ 13
695
+ 7
696
+ 2
697
+ 7
698
+ 8
699
+ 64
700
+ 49
701
+ 4
702
+ 2
703
+ 15
704
+ 13
705
+ 7
706
+ 5
707
+ 80
708
+ 49
709
+ 4
710
+ 2
711
+ 15
712
+ 13
713
+ 7
714
+ 6
715
+ 80
716
+ 49
717
+ 4
718
+ 2
719
+ 15
720
+ 13
721
+ 7
722
+ 7
723
+ 80
724
+ 49
725
+ 4
726
+ 2
727
+ 15
728
+ 44
729
+ 43
730
+ 0
731
+ 4
732
+ 4
733
+ 49
734
+ 1
735
+ 1
736
+ 13
737
+ 7
738
+ 2
739
+ 7
740
+ 8
741
+ 64
742
+ 49
743
+ 4
744
+ 2
745
+ 15
746
+ 13
747
+ 7
748
+ 5
749
+ 4
750
+ 4
751
+ 49
752
+ 4
753
+ 2
754
+ 15
755
+ 13
756
+ 7
757
+ 6
758
+ 4
759
+ 6
760
+ 49
761
+ 4
762
+ 2
763
+ 15
764
+ 13
765
+ 7
766
+ 7
767
+ 4
768
+ 4
769
+ 49
770
+ 4
771
+ 2
772
+ 15
773
+ 35
774
+ 5
775
+ 11
776
+ I
777
+ 9
778
+ I
779
+ 0
780
+ I
781
+ 0
782
+ I
783
+ 0
784
+ I
785
+ -2
786
+ p
787
+ 9
788
+ x
789
+ 4
790
+ Hash
791
+ x
792
+ 16
793
+ new_from_literal
794
+ x
795
+ 1
796
+ a
797
+ s
798
+ 10
799
+ via_method
800
+ x
801
+ 3
802
+ []=
803
+ x
804
+ 4
805
+ time
806
+ x
807
+ 8
808
+ time_sum
809
+ x
810
+ 8
811
+ time_max
812
+ s
813
+ 10
814
+ via_reader
815
+ p
816
+ 11
817
+ I
818
+ 0
819
+ I
820
+ 12
821
+ I
822
+ 2a
823
+ I
824
+ 13
825
+ I
826
+ 55
827
+ I
828
+ 14
829
+ I
830
+ 82
831
+ I
832
+ 15
833
+ I
834
+ ac
835
+ I
836
+ 16
837
+ I
838
+ dc
839
+ x
840
+ 73
841
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/test_quota.rb
842
+ p
843
+ 0
844
+ M
845
+ 1
846
+ p
847
+ 2
848
+ x
849
+ 9
850
+ for_block
851
+ t
852
+ n
853
+ x
854
+ 10
855
+ Relational
856
+ i
857
+ 7
858
+ 5
859
+ 48
860
+ 0
861
+ 49
862
+ 1
863
+ 0
864
+ 11
865
+ I
866
+ 2
867
+ I
868
+ 0
869
+ I
870
+ 0
871
+ I
872
+ 0
873
+ I
874
+ -2
875
+ p
876
+ 2
877
+ x
878
+ 8
879
+ operator
880
+ x
881
+ 4
882
+ to_a
883
+ p
884
+ 3
885
+ I
886
+ 0
887
+ I
888
+ 19
889
+ I
890
+ 7
891
+ x
892
+ 73
893
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/test_quota.rb
894
+ p
895
+ 0
896
+ x
897
+ 7
898
+ subject
899
+ s
900
+ 35
901
+ When factored with commandline args
902
+ M
903
+ 1
904
+ p
905
+ 2
906
+ x
907
+ 9
908
+ for_block
909
+ t
910
+ n
911
+ x
912
+ 10
913
+ Relational
914
+ i
915
+ 36
916
+ 5
917
+ 7
918
+ 0
919
+ 56
920
+ 1
921
+ 47
922
+ 50
923
+ 2
924
+ 1
925
+ 15
926
+ 5
927
+ 7
928
+ 3
929
+ 56
930
+ 4
931
+ 47
932
+ 50
933
+ 2
934
+ 1
935
+ 15
936
+ 5
937
+ 56
938
+ 5
939
+ 47
940
+ 50
941
+ 6
942
+ 0
943
+ 15
944
+ 5
945
+ 56
946
+ 7
947
+ 47
948
+ 50
949
+ 8
950
+ 0
951
+ 11
952
+ I
953
+ 4
954
+ I
955
+ 0
956
+ I
957
+ 0
958
+ I
959
+ 0
960
+ I
961
+ -2
962
+ p
963
+ 9
964
+ x
965
+ 4
966
+ aggs
967
+ M
968
+ 1
969
+ p
970
+ 2
971
+ x
972
+ 9
973
+ for_block
974
+ t
975
+ n
976
+ x
977
+ 10
978
+ Relational
979
+ i
980
+ 30
981
+ 7
982
+ 0
983
+ 64
984
+ 7
985
+ 1
986
+ 64
987
+ 7
988
+ 0
989
+ 64
990
+ 7
991
+ 2
992
+ 64
993
+ 7
994
+ 0
995
+ 64
996
+ 7
997
+ 3
998
+ 64
999
+ 7
1000
+ 4
1001
+ 64
1002
+ 7
1003
+ 5
1004
+ 64
1005
+ 7
1006
+ 6
1007
+ 64
1008
+ 35
1009
+ 9
1010
+ 11
1011
+ I
1012
+ a
1013
+ I
1014
+ 0
1015
+ I
1016
+ 0
1017
+ I
1018
+ 0
1019
+ I
1020
+ -2
1021
+ p
1022
+ 7
1023
+ s
1024
+ 2
1025
+ --
1026
+ s
1027
+ 1
1028
+ a
1029
+ s
1030
+ 4
1031
+ time
1032
+ s
1033
+ 8
1034
+ time_sum
1035
+ s
1036
+ 11
1037
+ sum{ time }
1038
+ s
1039
+ 8
1040
+ time_max
1041
+ s
1042
+ 11
1043
+ max{ time }
1044
+ p
1045
+ 3
1046
+ I
1047
+ 0
1048
+ I
1049
+ 1c
1050
+ I
1051
+ 1e
1052
+ x
1053
+ 73
1054
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/test_quota.rb
1055
+ p
1056
+ 0
1057
+ x
1058
+ 3
1059
+ let
1060
+ x
1061
+ 8
1062
+ operator
1063
+ M
1064
+ 1
1065
+ p
1066
+ 2
1067
+ x
1068
+ 9
1069
+ for_block
1070
+ t
1071
+ n
1072
+ x
1073
+ 10
1074
+ Relational
1075
+ i
1076
+ 10
1077
+ 45
1078
+ 0
1079
+ 1
1080
+ 5
1081
+ 48
1082
+ 2
1083
+ 49
1084
+ 3
1085
+ 1
1086
+ 11
1087
+ I
1088
+ 3
1089
+ I
1090
+ 0
1091
+ I
1092
+ 0
1093
+ I
1094
+ 0
1095
+ I
1096
+ -2
1097
+ p
1098
+ 4
1099
+ x
1100
+ 5
1101
+ Quota
1102
+ n
1103
+ x
1104
+ 4
1105
+ aggs
1106
+ x
1107
+ 3
1108
+ run
1109
+ p
1110
+ 3
1111
+ I
1112
+ 0
1113
+ I
1114
+ 1d
1115
+ I
1116
+ a
1117
+ x
1118
+ 73
1119
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/test_quota.rb
1120
+ p
1121
+ 0
1122
+ M
1123
+ 1
1124
+ p
1125
+ 2
1126
+ x
1127
+ 9
1128
+ for_block
1129
+ t
1130
+ n
1131
+ x
1132
+ 10
1133
+ Relational
1134
+ i
1135
+ 10
1136
+ 5
1137
+ 48
1138
+ 0
1139
+ 5
1140
+ 48
1141
+ 1
1142
+ 49
1143
+ 2
1144
+ 1
1145
+ 11
1146
+ I
1147
+ 3
1148
+ I
1149
+ 0
1150
+ I
1151
+ 0
1152
+ I
1153
+ 0
1154
+ I
1155
+ -2
1156
+ p
1157
+ 3
1158
+ x
1159
+ 8
1160
+ operator
1161
+ x
1162
+ 5
1163
+ input
1164
+ x
1165
+ 4
1166
+ pipe
1167
+ p
1168
+ 3
1169
+ I
1170
+ 0
1171
+ I
1172
+ 1e
1173
+ I
1174
+ a
1175
+ x
1176
+ 73
1177
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/test_quota.rb
1178
+ p
1179
+ 0
1180
+ x
1181
+ 6
1182
+ before
1183
+ M
1184
+ 1
1185
+ p
1186
+ 2
1187
+ x
1188
+ 9
1189
+ for_block
1190
+ t
1191
+ n
1192
+ x
1193
+ 10
1194
+ Relational
1195
+ i
1196
+ 9
1197
+ 5
1198
+ 48
1199
+ 0
1200
+ 5
1201
+ 48
1202
+ 1
1203
+ 83
1204
+ 2
1205
+ 11
1206
+ I
1207
+ 3
1208
+ I
1209
+ 0
1210
+ I
1211
+ 0
1212
+ I
1213
+ 0
1214
+ I
1215
+ -2
1216
+ p
1217
+ 3
1218
+ x
1219
+ 6
1220
+ should
1221
+ x
1222
+ 8
1223
+ expected
1224
+ x
1225
+ 2
1226
+ ==
1227
+ p
1228
+ 3
1229
+ I
1230
+ 0
1231
+ I
1232
+ 1f
1233
+ I
1234
+ 9
1235
+ x
1236
+ 73
1237
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/test_quota.rb
1238
+ p
1239
+ 0
1240
+ x
1241
+ 2
1242
+ it
1243
+ p
1244
+ 9
1245
+ I
1246
+ 0
1247
+ I
1248
+ 1c
1249
+ I
1250
+ a
1251
+ I
1252
+ 1d
1253
+ I
1254
+ 14
1255
+ I
1256
+ 1e
1257
+ I
1258
+ 1c
1259
+ I
1260
+ 1f
1261
+ I
1262
+ 24
1263
+ x
1264
+ 73
1265
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/test_quota.rb
1266
+ p
1267
+ 0
1268
+ x
1269
+ 8
1270
+ describe
1271
+ s
1272
+ 24
1273
+ When factored with Lispy
1274
+ M
1275
+ 1
1276
+ p
1277
+ 2
1278
+ x
1279
+ 9
1280
+ for_block
1281
+ t
1282
+ n
1283
+ x
1284
+ 10
1285
+ Relational
1286
+ i
1287
+ 28
1288
+ 5
1289
+ 7
1290
+ 0
1291
+ 56
1292
+ 1
1293
+ 47
1294
+ 50
1295
+ 2
1296
+ 1
1297
+ 15
1298
+ 5
1299
+ 7
1300
+ 3
1301
+ 56
1302
+ 4
1303
+ 47
1304
+ 50
1305
+ 2
1306
+ 1
1307
+ 15
1308
+ 5
1309
+ 56
1310
+ 5
1311
+ 47
1312
+ 50
1313
+ 6
1314
+ 0
1315
+ 11
1316
+ I
1317
+ 4
1318
+ I
1319
+ 0
1320
+ I
1321
+ 0
1322
+ I
1323
+ 0
1324
+ I
1325
+ -2
1326
+ p
1327
+ 7
1328
+ x
1329
+ 4
1330
+ aggs
1331
+ M
1332
+ 1
1333
+ p
1334
+ 2
1335
+ x
1336
+ 9
1337
+ for_block
1338
+ t
1339
+ n
1340
+ x
1341
+ 10
1342
+ Relational
1343
+ i
1344
+ 38
1345
+ 44
1346
+ 43
1347
+ 0
1348
+ 80
1349
+ 49
1350
+ 1
1351
+ 1
1352
+ 13
1353
+ 7
1354
+ 2
1355
+ 45
1356
+ 3
1357
+ 4
1358
+ 56
1359
+ 5
1360
+ 50
1361
+ 6
1362
+ 0
1363
+ 49
1364
+ 7
1365
+ 2
1366
+ 15
1367
+ 13
1368
+ 7
1369
+ 8
1370
+ 45
1371
+ 3
1372
+ 9
1373
+ 56
1374
+ 10
1375
+ 50
1376
+ 11
1377
+ 0
1378
+ 49
1379
+ 7
1380
+ 2
1381
+ 15
1382
+ 11
1383
+ I
1384
+ 6
1385
+ I
1386
+ 0
1387
+ I
1388
+ 0
1389
+ I
1390
+ 0
1391
+ I
1392
+ -2
1393
+ p
1394
+ 12
1395
+ x
1396
+ 4
1397
+ Hash
1398
+ x
1399
+ 16
1400
+ new_from_literal
1401
+ x
1402
+ 8
1403
+ time_sum
1404
+ x
1405
+ 10
1406
+ Aggregator
1407
+ n
1408
+ M
1409
+ 1
1410
+ p
1411
+ 2
1412
+ x
1413
+ 9
1414
+ for_block
1415
+ t
1416
+ n
1417
+ x
1418
+ 10
1419
+ Relational
1420
+ i
1421
+ 4
1422
+ 5
1423
+ 48
1424
+ 0
1425
+ 11
1426
+ I
1427
+ 2
1428
+ I
1429
+ 0
1430
+ I
1431
+ 0
1432
+ I
1433
+ 0
1434
+ I
1435
+ -2
1436
+ p
1437
+ 1
1438
+ x
1439
+ 4
1440
+ time
1441
+ p
1442
+ 3
1443
+ I
1444
+ 0
1445
+ I
1446
+ 23
1447
+ I
1448
+ 4
1449
+ x
1450
+ 73
1451
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/test_quota.rb
1452
+ p
1453
+ 0
1454
+ x
1455
+ 3
1456
+ sum
1457
+ x
1458
+ 3
1459
+ []=
1460
+ x
1461
+ 8
1462
+ time_max
1463
+ n
1464
+ M
1465
+ 1
1466
+ p
1467
+ 2
1468
+ x
1469
+ 9
1470
+ for_block
1471
+ t
1472
+ n
1473
+ x
1474
+ 10
1475
+ Relational
1476
+ i
1477
+ 4
1478
+ 5
1479
+ 48
1480
+ 0
1481
+ 11
1482
+ I
1483
+ 2
1484
+ I
1485
+ 0
1486
+ I
1487
+ 0
1488
+ I
1489
+ 0
1490
+ I
1491
+ -2
1492
+ p
1493
+ 1
1494
+ x
1495
+ 4
1496
+ time
1497
+ p
1498
+ 3
1499
+ I
1500
+ 0
1501
+ I
1502
+ 24
1503
+ I
1504
+ 4
1505
+ x
1506
+ 73
1507
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/test_quota.rb
1508
+ p
1509
+ 0
1510
+ x
1511
+ 3
1512
+ max
1513
+ p
1514
+ 7
1515
+ I
1516
+ 0
1517
+ I
1518
+ 24
1519
+ I
1520
+ 8
1521
+ I
1522
+ 23
1523
+ I
1524
+ 17
1525
+ I
1526
+ 24
1527
+ I
1528
+ 26
1529
+ x
1530
+ 73
1531
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/test_quota.rb
1532
+ p
1533
+ 0
1534
+ x
1535
+ 3
1536
+ let
1537
+ x
1538
+ 8
1539
+ operator
1540
+ M
1541
+ 1
1542
+ p
1543
+ 2
1544
+ x
1545
+ 9
1546
+ for_block
1547
+ t
1548
+ n
1549
+ x
1550
+ 10
1551
+ Relational
1552
+ i
1553
+ 21
1554
+ 45
1555
+ 0
1556
+ 1
1557
+ 5
1558
+ 48
1559
+ 2
1560
+ 7
1561
+ 3
1562
+ 35
1563
+ 1
1564
+ 7
1565
+ 4
1566
+ 35
1567
+ 1
1568
+ 5
1569
+ 48
1570
+ 5
1571
+ 49
1572
+ 6
1573
+ 4
1574
+ 11
1575
+ I
1576
+ 6
1577
+ I
1578
+ 0
1579
+ I
1580
+ 0
1581
+ I
1582
+ 0
1583
+ I
1584
+ -2
1585
+ p
1586
+ 7
1587
+ x
1588
+ 5
1589
+ Lispy
1590
+ n
1591
+ x
1592
+ 5
1593
+ input
1594
+ x
1595
+ 1
1596
+ a
1597
+ x
1598
+ 4
1599
+ time
1600
+ x
1601
+ 4
1602
+ aggs
1603
+ x
1604
+ 5
1605
+ quota
1606
+ p
1607
+ 3
1608
+ I
1609
+ 0
1610
+ I
1611
+ 25
1612
+ I
1613
+ 15
1614
+ x
1615
+ 73
1616
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/test_quota.rb
1617
+ p
1618
+ 0
1619
+ M
1620
+ 1
1621
+ p
1622
+ 2
1623
+ x
1624
+ 9
1625
+ for_block
1626
+ t
1627
+ n
1628
+ x
1629
+ 10
1630
+ Relational
1631
+ i
1632
+ 9
1633
+ 5
1634
+ 48
1635
+ 0
1636
+ 5
1637
+ 48
1638
+ 1
1639
+ 83
1640
+ 2
1641
+ 11
1642
+ I
1643
+ 3
1644
+ I
1645
+ 0
1646
+ I
1647
+ 0
1648
+ I
1649
+ 0
1650
+ I
1651
+ -2
1652
+ p
1653
+ 3
1654
+ x
1655
+ 6
1656
+ should
1657
+ x
1658
+ 8
1659
+ expected
1660
+ x
1661
+ 2
1662
+ ==
1663
+ p
1664
+ 3
1665
+ I
1666
+ 0
1667
+ I
1668
+ 26
1669
+ I
1670
+ 9
1671
+ x
1672
+ 73
1673
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/test_quota.rb
1674
+ p
1675
+ 0
1676
+ x
1677
+ 2
1678
+ it
1679
+ p
1680
+ 7
1681
+ I
1682
+ 0
1683
+ I
1684
+ 23
1685
+ I
1686
+ a
1687
+ I
1688
+ 25
1689
+ I
1690
+ 14
1691
+ I
1692
+ 26
1693
+ I
1694
+ 1c
1695
+ x
1696
+ 73
1697
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/test_quota.rb
1698
+ p
1699
+ 0
1700
+ p
1701
+ 15
1702
+ I
1703
+ 0
1704
+ I
1705
+ 6
1706
+ I
1707
+ a
1708
+ I
1709
+ 7
1710
+ I
1711
+ 13
1712
+ I
1713
+ 9
1714
+ I
1715
+ 1d
1716
+ I
1717
+ 11
1718
+ I
1719
+ 27
1720
+ I
1721
+ 19
1722
+ I
1723
+ 2f
1724
+ I
1725
+ 1b
1726
+ I
1727
+ 3a
1728
+ I
1729
+ 22
1730
+ I
1731
+ 45
1732
+ x
1733
+ 73
1734
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/test_quota.rb
1735
+ p
1736
+ 0
1737
+ x
1738
+ 8
1739
+ describe
1740
+ p
1741
+ 3
1742
+ I
1743
+ 2
1744
+ I
1745
+ 4
1746
+ I
1747
+ d
1748
+ x
1749
+ 73
1750
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/test_quota.rb
1751
+ p
1752
+ 0
1753
+ x
1754
+ 13
1755
+ attach_method
1756
+ p
1757
+ 3
1758
+ I
1759
+ 2
1760
+ I
1761
+ 3
1762
+ I
1763
+ 1e
1764
+ x
1765
+ 73
1766
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/test_quota.rb
1767
+ p
1768
+ 0
1769
+ x
1770
+ 13
1771
+ attach_method
1772
+ p
1773
+ 5
1774
+ I
1775
+ 0
1776
+ I
1777
+ 1
1778
+ I
1779
+ 9
1780
+ I
1781
+ 2
1782
+ I
1783
+ 25
1784
+ x
1785
+ 73
1786
+ /home/blambeau/work/devel/alf/spec/unit/operator/relational/test_quota.rb
1787
+ p
1788
+ 0