activerecord 3.0.6 → 3.0.7.rc1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of activerecord might be problematic. Click here for more details.

Files changed (74) hide show
  1. data/CHANGELOG +7 -1
  2. data/lib/active_record.rbc +1825 -0
  3. data/lib/active_record/aggregations.rbc +2173 -0
  4. data/lib/active_record/association_preload.rbc +8379 -0
  5. data/lib/active_record/associations.rbc +25180 -0
  6. data/lib/active_record/associations/association_collection.rbc +11174 -0
  7. data/lib/active_record/associations/association_proxy.rbc +4435 -0
  8. data/lib/active_record/associations/belongs_to_association.rbc +1867 -0
  9. data/lib/active_record/associations/belongs_to_polymorphic_association.rbc +1718 -0
  10. data/lib/active_record/associations/has_many_association.rbc +2553 -0
  11. data/lib/active_record/associations/has_many_through_association.rbc +2381 -0
  12. data/lib/active_record/associations/has_one_association.rbc +2919 -0
  13. data/lib/active_record/associations/through_association_scope.rbc +3411 -0
  14. data/lib/active_record/attribute_methods.rbc +1473 -0
  15. data/lib/active_record/attribute_methods/before_type_cast.rbc +700 -0
  16. data/lib/active_record/attribute_methods/dirty.rbc +1627 -0
  17. data/lib/active_record/attribute_methods/primary_key.rb +6 -0
  18. data/lib/active_record/attribute_methods/primary_key.rbc +1017 -0
  19. data/lib/active_record/attribute_methods/query.rbc +786 -0
  20. data/lib/active_record/attribute_methods/read.rb +5 -3
  21. data/lib/active_record/attribute_methods/read.rbc +2614 -0
  22. data/lib/active_record/attribute_methods/time_zone_conversion.rbc +1148 -0
  23. data/lib/active_record/attribute_methods/write.rbc +998 -0
  24. data/lib/active_record/autosave_association.rbc +4143 -0
  25. data/lib/active_record/base.rb +2 -1
  26. data/lib/active_record/base.rbc +23583 -0
  27. data/lib/active_record/callbacks.rbc +1562 -0
  28. data/lib/active_record/connection_adapters/abstract/connection_pool.rbc +5041 -0
  29. data/lib/active_record/connection_adapters/abstract/connection_specification.rbc +1752 -0
  30. data/lib/active_record/connection_adapters/abstract/database_limits.rbc +877 -0
  31. data/lib/active_record/connection_adapters/abstract/database_statements.rbc +4704 -0
  32. data/lib/active_record/connection_adapters/abstract/query_cache.rbc +1519 -0
  33. data/lib/active_record/connection_adapters/abstract/quoting.rbc +1566 -0
  34. data/lib/active_record/connection_adapters/abstract/schema_definitions.rbc +10452 -0
  35. data/lib/active_record/connection_adapters/abstract/schema_statements.rbc +6987 -0
  36. data/lib/active_record/connection_adapters/abstract_adapter.rbc +2890 -0
  37. data/lib/active_record/connection_adapters/postgresql_adapter.rbc +16913 -0
  38. data/lib/active_record/connection_adapters/sqlite3_adapter.rbc +1265 -0
  39. data/lib/active_record/connection_adapters/sqlite_adapter.rbc +0 -0
  40. data/lib/active_record/counter_cache.rbc +1191 -0
  41. data/lib/active_record/dynamic_finder_match.rbc +1091 -0
  42. data/lib/active_record/dynamic_scope_match.rbc +514 -0
  43. data/lib/active_record/errors.rbc +1077 -0
  44. data/lib/active_record/locking/optimistic.rbc +2281 -0
  45. data/lib/active_record/locking/pessimistic.rbc +384 -0
  46. data/lib/active_record/log_subscriber.rbc +1055 -0
  47. data/lib/active_record/migration.rbc +8513 -0
  48. data/lib/active_record/named_scope.rbc +1347 -0
  49. data/lib/active_record/nested_attributes.rb +1 -0
  50. data/lib/active_record/nested_attributes.rbc +3599 -0
  51. data/lib/active_record/observer.rbc +941 -0
  52. data/lib/active_record/persistence.rbc +3631 -0
  53. data/lib/active_record/query_cache.rbc +760 -0
  54. data/lib/active_record/railtie.rbc +2109 -0
  55. data/lib/active_record/railties/controller_runtime.rbc +838 -0
  56. data/lib/active_record/reflection.rbc +6897 -0
  57. data/lib/active_record/relation.rbc +6006 -0
  58. data/lib/active_record/relation/batches.rb +1 -1
  59. data/lib/active_record/relation/batches.rbc +1078 -0
  60. data/lib/active_record/relation/calculations.rbc +4012 -0
  61. data/lib/active_record/relation/finder_methods.rb +14 -6
  62. data/lib/active_record/relation/finder_methods.rbc +5264 -0
  63. data/lib/active_record/relation/query_methods.rbc +6458 -0
  64. data/lib/active_record/relation/spawn_methods.rbc +3034 -0
  65. data/lib/active_record/serialization.rbc +1302 -0
  66. data/lib/active_record/serializers/xml_serializer.rbc +1866 -0
  67. data/lib/active_record/timestamp.rbc +1354 -0
  68. data/lib/active_record/transactions.rbc +3348 -0
  69. data/lib/active_record/validations.rbc +1597 -0
  70. data/lib/active_record/validations/associated.rbc +681 -0
  71. data/lib/active_record/validations/uniqueness.rbc +1803 -0
  72. data/lib/active_record/version.rb +2 -2
  73. data/lib/active_record/version.rbc +295 -0
  74. metadata +89 -16
@@ -83,7 +83,7 @@ module ActiveRecord
83
83
  private
84
84
 
85
85
  def batch_order
86
- "#{@klass.table_name}.#{@klass.primary_key} ASC"
86
+ "#{@klass.quoted_table_name}.#{@klass.quoted_primary_key} ASC"
87
87
  end
88
88
  end
89
89
  end
@@ -0,0 +1,1078 @@
1
+ !RBIX
2
+ 12079494195756429234
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
+ 36
63
+ active_support/core_ext/object/blank
64
+ x
65
+ 7
66
+ require
67
+ x
68
+ 12
69
+ ActiveRecord
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
+ 12
82
+ ActiveRecord
83
+ i
84
+ 28
85
+ 5
86
+ 66
87
+ 99
88
+ 7
89
+ 0
90
+ 65
91
+ 49
92
+ 1
93
+ 2
94
+ 13
95
+ 99
96
+ 12
97
+ 7
98
+ 2
99
+ 12
100
+ 7
101
+ 3
102
+ 12
103
+ 65
104
+ 12
105
+ 49
106
+ 4
107
+ 4
108
+ 15
109
+ 49
110
+ 2
111
+ 0
112
+ 11
113
+ I
114
+ 6
115
+ I
116
+ 0
117
+ I
118
+ 0
119
+ I
120
+ 0
121
+ n
122
+ p
123
+ 5
124
+ x
125
+ 7
126
+ Batches
127
+ x
128
+ 11
129
+ open_module
130
+ x
131
+ 15
132
+ __module_init__
133
+ M
134
+ 1
135
+ n
136
+ n
137
+ x
138
+ 7
139
+ Batches
140
+ i
141
+ 48
142
+ 5
143
+ 66
144
+ 99
145
+ 7
146
+ 0
147
+ 7
148
+ 1
149
+ 65
150
+ 67
151
+ 49
152
+ 2
153
+ 0
154
+ 49
155
+ 3
156
+ 4
157
+ 15
158
+ 99
159
+ 7
160
+ 4
161
+ 7
162
+ 5
163
+ 65
164
+ 67
165
+ 49
166
+ 2
167
+ 0
168
+ 49
169
+ 3
170
+ 4
171
+ 15
172
+ 5
173
+ 48
174
+ 6
175
+ 15
176
+ 99
177
+ 7
178
+ 7
179
+ 7
180
+ 8
181
+ 65
182
+ 67
183
+ 49
184
+ 2
185
+ 0
186
+ 49
187
+ 3
188
+ 4
189
+ 11
190
+ I
191
+ 5
192
+ I
193
+ 0
194
+ I
195
+ 0
196
+ I
197
+ 0
198
+ n
199
+ p
200
+ 9
201
+ x
202
+ 9
203
+ find_each
204
+ M
205
+ 1
206
+ n
207
+ n
208
+ x
209
+ 9
210
+ find_each
211
+ i
212
+ 26
213
+ 23
214
+ 0
215
+ 10
216
+ 14
217
+ 44
218
+ 43
219
+ 0
220
+ 78
221
+ 49
222
+ 1
223
+ 1
224
+ 19
225
+ 0
226
+ 15
227
+ 5
228
+ 20
229
+ 0
230
+ 56
231
+ 2
232
+ 47
233
+ 50
234
+ 3
235
+ 1
236
+ 15
237
+ 5
238
+ 11
239
+ I
240
+ 4
241
+ I
242
+ 1
243
+ I
244
+ 0
245
+ I
246
+ 1
247
+ n
248
+ p
249
+ 4
250
+ x
251
+ 4
252
+ Hash
253
+ x
254
+ 16
255
+ new_from_literal
256
+ M
257
+ 1
258
+ p
259
+ 2
260
+ x
261
+ 9
262
+ for_block
263
+ t
264
+ n
265
+ x
266
+ 9
267
+ find_each
268
+ i
269
+ 12
270
+ 57
271
+ 19
272
+ 0
273
+ 15
274
+ 20
275
+ 0
276
+ 56
277
+ 0
278
+ 50
279
+ 1
280
+ 0
281
+ 11
282
+ I
283
+ 4
284
+ I
285
+ 1
286
+ I
287
+ 1
288
+ I
289
+ 1
290
+ n
291
+ p
292
+ 2
293
+ M
294
+ 1
295
+ p
296
+ 2
297
+ x
298
+ 9
299
+ for_block
300
+ t
301
+ n
302
+ x
303
+ 9
304
+ find_each
305
+ i
306
+ 9
307
+ 57
308
+ 19
309
+ 0
310
+ 15
311
+ 20
312
+ 0
313
+ 60
314
+ 1
315
+ 11
316
+ I
317
+ 3
318
+ I
319
+ 1
320
+ I
321
+ 1
322
+ I
323
+ 1
324
+ n
325
+ p
326
+ 0
327
+ p
328
+ 3
329
+ I
330
+ 0
331
+ I
332
+ 15
333
+ I
334
+ 9
335
+ x
336
+ 87
337
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/batches.rb
338
+ p
339
+ 1
340
+ x
341
+ 6
342
+ record
343
+ x
344
+ 4
345
+ each
346
+ p
347
+ 5
348
+ I
349
+ 0
350
+ I
351
+ 14
352
+ I
353
+ 4
354
+ I
355
+ 15
356
+ I
357
+ c
358
+ x
359
+ 87
360
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/batches.rb
361
+ p
362
+ 1
363
+ x
364
+ 7
365
+ records
366
+ x
367
+ 15
368
+ find_in_batches
369
+ p
370
+ 7
371
+ I
372
+ -1
373
+ I
374
+ 13
375
+ I
376
+ e
377
+ I
378
+ 14
379
+ I
380
+ 18
381
+ I
382
+ 18
383
+ I
384
+ 1a
385
+ x
386
+ 87
387
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/batches.rb
388
+ p
389
+ 1
390
+ x
391
+ 7
392
+ options
393
+ x
394
+ 17
395
+ method_visibility
396
+ x
397
+ 15
398
+ add_defn_method
399
+ x
400
+ 15
401
+ find_in_batches
402
+ M
403
+ 1
404
+ n
405
+ n
406
+ x
407
+ 15
408
+ find_in_batches
409
+ i
410
+ 289
411
+ 23
412
+ 0
413
+ 10
414
+ 14
415
+ 44
416
+ 43
417
+ 0
418
+ 78
419
+ 49
420
+ 1
421
+ 1
422
+ 19
423
+ 0
424
+ 15
425
+ 5
426
+ 19
427
+ 1
428
+ 15
429
+ 5
430
+ 48
431
+ 2
432
+ 49
433
+ 3
434
+ 0
435
+ 49
436
+ 4
437
+ 0
438
+ 13
439
+ 9
440
+ 40
441
+ 15
442
+ 5
443
+ 48
444
+ 2
445
+ 49
446
+ 5
447
+ 0
448
+ 49
449
+ 4
450
+ 0
451
+ 9
452
+ 45
453
+ 1
454
+ 8
455
+ 59
456
+ 45
457
+ 6
458
+ 7
459
+ 43
460
+ 8
461
+ 49
462
+ 9
463
+ 0
464
+ 7
465
+ 10
466
+ 64
467
+ 49
468
+ 11
469
+ 1
470
+ 15
471
+ 20
472
+ 0
473
+ 7
474
+ 12
475
+ 7
476
+ 13
477
+ 49
478
+ 14
479
+ 2
480
+ 19
481
+ 2
482
+ 49
483
+ 15
484
+ 0
485
+ 9
486
+ 142
487
+ 20
488
+ 0
489
+ 7
490
+ 16
491
+ 49
492
+ 17
493
+ 1
494
+ 49
495
+ 15
496
+ 0
497
+ 9
498
+ 105
499
+ 5
500
+ 7
501
+ 18
502
+ 5
503
+ 48
504
+ 19
505
+ 47
506
+ 101
507
+ 20
508
+ 63
509
+ 2
510
+ 47
511
+ 49
512
+ 21
513
+ 1
514
+ 8
515
+ 106
516
+ 1
517
+ 15
518
+ 20
519
+ 0
520
+ 7
521
+ 22
522
+ 49
523
+ 17
524
+ 1
525
+ 49
526
+ 15
527
+ 0
528
+ 9
529
+ 129
530
+ 5
531
+ 7
532
+ 23
533
+ 64
534
+ 47
535
+ 49
536
+ 21
537
+ 1
538
+ 8
539
+ 130
540
+ 1
541
+ 15
542
+ 5
543
+ 20
544
+ 2
545
+ 47
546
+ 49
547
+ 24
548
+ 1
549
+ 19
550
+ 1
551
+ 8
552
+ 143
553
+ 1
554
+ 15
555
+ 20
556
+ 0
557
+ 7
558
+ 12
559
+ 49
560
+ 25
561
+ 1
562
+ 49
563
+ 26
564
+ 0
565
+ 19
566
+ 3
567
+ 15
568
+ 20
569
+ 0
570
+ 7
571
+ 13
572
+ 49
573
+ 25
574
+ 1
575
+ 13
576
+ 10
577
+ 170
578
+ 15
579
+ 7
580
+ 27
581
+ 19
582
+ 4
583
+ 15
584
+ 20
585
+ 1
586
+ 7
587
+ 16
588
+ 49
589
+ 14
590
+ 1
591
+ 5
592
+ 48
593
+ 19
594
+ 49
595
+ 16
596
+ 1
597
+ 20
598
+ 4
599
+ 49
600
+ 22
601
+ 1
602
+ 19
603
+ 1
604
+ 15
605
+ 20
606
+ 1
607
+ 5
608
+ 48
609
+ 28
610
+ 20
611
+ 3
612
+ 49
613
+ 29
614
+ 1
615
+ 49
616
+ 30
617
+ 1
618
+ 49
619
+ 31
620
+ 0
621
+ 19
622
+ 5
623
+ 15
624
+ 20
625
+ 5
626
+ 49
627
+ 32
628
+ 0
629
+ 9
630
+ 287
631
+ 20
632
+ 5
633
+ 60
634
+ 1
635
+ 15
636
+ 20
637
+ 5
638
+ 49
639
+ 33
640
+ 0
641
+ 20
642
+ 4
643
+ 84
644
+ 34
645
+ 9
646
+ 241
647
+ 1
648
+ 8
649
+ 288
650
+ 8
651
+ 242
652
+ 1
653
+ 15
654
+ 20
655
+ 5
656
+ 49
657
+ 35
658
+ 0
659
+ 49
660
+ 36
661
+ 0
662
+ 19
663
+ 6
664
+ 9
665
+ 275
666
+ 20
667
+ 1
668
+ 5
669
+ 48
670
+ 28
671
+ 20
672
+ 6
673
+ 49
674
+ 37
675
+ 1
676
+ 49
677
+ 30
678
+ 1
679
+ 49
680
+ 38
681
+ 0
682
+ 19
683
+ 5
684
+ 8
685
+ 283
686
+ 5
687
+ 7
688
+ 39
689
+ 64
690
+ 47
691
+ 49
692
+ 21
693
+ 1
694
+ 15
695
+ 68
696
+ 8
697
+ 213
698
+ 1
699
+ 11
700
+ I
701
+ a
702
+ I
703
+ 7
704
+ I
705
+ 0
706
+ I
707
+ 1
708
+ n
709
+ p
710
+ 40
711
+ x
712
+ 4
713
+ Hash
714
+ x
715
+ 16
716
+ new_from_literal
717
+ x
718
+ 4
719
+ arel
720
+ x
721
+ 6
722
+ orders
723
+ x
724
+ 6
725
+ blank?
726
+ x
727
+ 5
728
+ taken
729
+ x
730
+ 12
731
+ ActiveRecord
732
+ n
733
+ x
734
+ 4
735
+ Base
736
+ x
737
+ 6
738
+ logger
739
+ s
740
+ 80
741
+ Scoped order and limit are ignored, it's forced to be batch order and batch size
742
+ x
743
+ 4
744
+ warn
745
+ x
746
+ 5
747
+ start
748
+ x
749
+ 10
750
+ batch_size
751
+ x
752
+ 6
753
+ except
754
+ x
755
+ 8
756
+ present?
757
+ x
758
+ 5
759
+ order
760
+ x
761
+ 2
762
+ []
763
+ s
764
+ 46
765
+ You can't specify an order, it's forced to be
766
+ x
767
+ 11
768
+ batch_order
769
+ x
770
+ 4
771
+ to_s
772
+ x
773
+ 5
774
+ raise
775
+ x
776
+ 5
777
+ limit
778
+ s
779
+ 59
780
+ You can't specify a limit, it's forced to be the batch_size
781
+ x
782
+ 20
783
+ apply_finder_options
784
+ x
785
+ 6
786
+ delete
787
+ x
788
+ 4
789
+ to_i
790
+ I
791
+ 3e8
792
+ x
793
+ 11
794
+ primary_key
795
+ x
796
+ 4
797
+ gteq
798
+ x
799
+ 5
800
+ where
801
+ x
802
+ 3
803
+ all
804
+ x
805
+ 4
806
+ any?
807
+ x
808
+ 4
809
+ size
810
+ x
811
+ 1
812
+ <
813
+ x
814
+ 4
815
+ last
816
+ x
817
+ 2
818
+ id
819
+ x
820
+ 2
821
+ gt
822
+ x
823
+ 4
824
+ to_a
825
+ s
826
+ 52
827
+ Primary key not included in the custom select clause
828
+ p
829
+ 39
830
+ I
831
+ -1
832
+ I
833
+ 32
834
+ I
835
+ e
836
+ I
837
+ 33
838
+ I
839
+ 12
840
+ I
841
+ 35
842
+ I
843
+ 2d
844
+ I
845
+ 36
846
+ I
847
+ 3c
848
+ I
849
+ 39
850
+ I
851
+ 4c
852
+ I
853
+ 3a
854
+ I
855
+ 6b
856
+ I
857
+ 3b
858
+ I
859
+ 83
860
+ I
861
+ 3d
862
+ I
863
+ 8e
864
+ I
865
+ 39
866
+ I
867
+ 90
868
+ I
869
+ 40
870
+ I
871
+ 9d
872
+ I
873
+ 41
874
+ I
875
+ ad
876
+ I
877
+ 43
878
+ I
879
+ c2
880
+ I
881
+ 44
882
+ I
883
+ d5
884
+ I
885
+ 46
886
+ I
887
+ dc
888
+ I
889
+ 47
890
+ I
891
+ e1
892
+ I
893
+ 49
894
+ I
895
+ f3
896
+ I
897
+ 4b
898
+ I
899
+ ff
900
+ I
901
+ 4c
902
+ I
903
+ 113
904
+ I
905
+ 4e
906
+ I
907
+ 121
908
+ x
909
+ 87
910
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/batches.rb
911
+ p
912
+ 7
913
+ x
914
+ 7
915
+ options
916
+ x
917
+ 8
918
+ relation
919
+ x
920
+ 14
921
+ finder_options
922
+ x
923
+ 5
924
+ start
925
+ x
926
+ 10
927
+ batch_size
928
+ x
929
+ 7
930
+ records
931
+ x
932
+ 18
933
+ primary_key_offset
934
+ x
935
+ 7
936
+ private
937
+ x
938
+ 11
939
+ batch_order
940
+ M
941
+ 1
942
+ n
943
+ n
944
+ x
945
+ 11
946
+ batch_order
947
+ i
948
+ 23
949
+ 39
950
+ 0
951
+ 49
952
+ 1
953
+ 0
954
+ 47
955
+ 101
956
+ 2
957
+ 7
958
+ 3
959
+ 39
960
+ 0
961
+ 49
962
+ 4
963
+ 0
964
+ 47
965
+ 101
966
+ 2
967
+ 7
968
+ 5
969
+ 63
970
+ 4
971
+ 11
972
+ I
973
+ 4
974
+ I
975
+ 0
976
+ I
977
+ 0
978
+ I
979
+ 0
980
+ n
981
+ p
982
+ 6
983
+ x
984
+ 6
985
+ @klass
986
+ x
987
+ 17
988
+ quoted_table_name
989
+ x
990
+ 4
991
+ to_s
992
+ s
993
+ 1
994
+ .
995
+ x
996
+ 18
997
+ quoted_primary_key
998
+ s
999
+ 4
1000
+ ASC
1001
+ p
1002
+ 5
1003
+ I
1004
+ -1
1005
+ I
1006
+ 55
1007
+ I
1008
+ 0
1009
+ I
1010
+ 56
1011
+ I
1012
+ 17
1013
+ x
1014
+ 87
1015
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/batches.rb
1016
+ p
1017
+ 0
1018
+ p
1019
+ 9
1020
+ I
1021
+ 2
1022
+ I
1023
+ 13
1024
+ I
1025
+ 10
1026
+ I
1027
+ 32
1028
+ I
1029
+ 1e
1030
+ I
1031
+ 53
1032
+ I
1033
+ 22
1034
+ I
1035
+ 55
1036
+ I
1037
+ 30
1038
+ x
1039
+ 87
1040
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/batches.rb
1041
+ p
1042
+ 0
1043
+ x
1044
+ 13
1045
+ attach_method
1046
+ p
1047
+ 3
1048
+ I
1049
+ 2
1050
+ I
1051
+ 4
1052
+ I
1053
+ 1c
1054
+ x
1055
+ 87
1056
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/batches.rb
1057
+ p
1058
+ 0
1059
+ x
1060
+ 13
1061
+ attach_method
1062
+ p
1063
+ 5
1064
+ I
1065
+ 0
1066
+ I
1067
+ 1
1068
+ I
1069
+ 9
1070
+ I
1071
+ 3
1072
+ I
1073
+ 25
1074
+ x
1075
+ 87
1076
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/batches.rb
1077
+ p
1078
+ 0