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
@@ -171,27 +171,35 @@ module ActiveRecord
171
171
  def exists?(id = nil)
172
172
  id = id.id if ActiveRecord::Base === id
173
173
 
174
+ join_dependency = construct_join_dependency_for_association_find
175
+ relation = construct_relation_for_association_find(join_dependency)
176
+ relation = relation.except(:select).select("1").limit(1)
177
+
174
178
  case id
175
179
  when Array, Hash
176
- where(id).exists?
180
+ relation = relation.where(id)
177
181
  else
178
- relation = select(primary_key).limit(1)
179
- relation = relation.where(primary_key.eq(id)) if id
180
- relation.first ? true : false
182
+ relation = relation.where(table[primary_key.name].eq(id)) if id
181
183
  end
184
+
185
+ connection.select_value(relation.to_sql) ? true : false
182
186
  end
183
187
 
184
188
  protected
185
189
 
186
190
  def find_with_associations
187
- including = (@eager_load_values + @includes_values).uniq
188
- join_dependency = ActiveRecord::Associations::ClassMethods::JoinDependency.new(@klass, including, nil)
191
+ join_dependency = construct_join_dependency_for_association_find
189
192
  rows = construct_relation_for_association_find(join_dependency).to_a
190
193
  join_dependency.instantiate(rows)
191
194
  rescue ThrowResult
192
195
  []
193
196
  end
194
197
 
198
+ def construct_join_dependency_for_association_find
199
+ including = (@eager_load_values + @includes_values).uniq
200
+ join_dependency = ActiveRecord::Associations::ClassMethods::JoinDependency.new(@klass, including, nil)
201
+ end
202
+
195
203
  def construct_relation_for_association_calculations
196
204
  including = (@eager_load_values + @includes_values).uniq
197
205
  join_dependency = ActiveRecord::Associations::ClassMethods::JoinDependency.new(@klass, including, arel.join_sql)
@@ -0,0 +1,5264 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 46
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 5
23
+ 7
24
+ 2
25
+ 64
26
+ 47
27
+ 49
28
+ 1
29
+ 1
30
+ 15
31
+ 99
32
+ 7
33
+ 3
34
+ 65
35
+ 49
36
+ 4
37
+ 2
38
+ 13
39
+ 99
40
+ 12
41
+ 7
42
+ 5
43
+ 12
44
+ 7
45
+ 6
46
+ 12
47
+ 65
48
+ 12
49
+ 49
50
+ 7
51
+ 4
52
+ 15
53
+ 49
54
+ 5
55
+ 0
56
+ 15
57
+ 2
58
+ 11
59
+ I
60
+ 6
61
+ I
62
+ 0
63
+ I
64
+ 0
65
+ I
66
+ 0
67
+ n
68
+ p
69
+ 8
70
+ s
71
+ 36
72
+ active_support/core_ext/object/blank
73
+ x
74
+ 7
75
+ require
76
+ s
77
+ 47
78
+ active_support/core_ext/hash/indifferent_access
79
+ x
80
+ 12
81
+ ActiveRecord
82
+ x
83
+ 11
84
+ open_module
85
+ x
86
+ 15
87
+ __module_init__
88
+ M
89
+ 1
90
+ n
91
+ n
92
+ x
93
+ 12
94
+ ActiveRecord
95
+ i
96
+ 28
97
+ 5
98
+ 66
99
+ 99
100
+ 7
101
+ 0
102
+ 65
103
+ 49
104
+ 1
105
+ 2
106
+ 13
107
+ 99
108
+ 12
109
+ 7
110
+ 2
111
+ 12
112
+ 7
113
+ 3
114
+ 12
115
+ 65
116
+ 12
117
+ 49
118
+ 4
119
+ 4
120
+ 15
121
+ 49
122
+ 2
123
+ 0
124
+ 11
125
+ I
126
+ 6
127
+ I
128
+ 0
129
+ I
130
+ 0
131
+ I
132
+ 0
133
+ n
134
+ p
135
+ 5
136
+ x
137
+ 13
138
+ FinderMethods
139
+ x
140
+ 11
141
+ open_module
142
+ x
143
+ 15
144
+ __module_init__
145
+ M
146
+ 1
147
+ n
148
+ n
149
+ x
150
+ 13
151
+ FinderMethods
152
+ i
153
+ 286
154
+ 5
155
+ 66
156
+ 99
157
+ 7
158
+ 0
159
+ 7
160
+ 1
161
+ 65
162
+ 67
163
+ 49
164
+ 2
165
+ 0
166
+ 49
167
+ 3
168
+ 4
169
+ 15
170
+ 99
171
+ 7
172
+ 4
173
+ 7
174
+ 5
175
+ 65
176
+ 67
177
+ 49
178
+ 2
179
+ 0
180
+ 49
181
+ 3
182
+ 4
183
+ 15
184
+ 99
185
+ 7
186
+ 6
187
+ 7
188
+ 7
189
+ 65
190
+ 67
191
+ 49
192
+ 2
193
+ 0
194
+ 49
195
+ 3
196
+ 4
197
+ 15
198
+ 99
199
+ 7
200
+ 8
201
+ 7
202
+ 9
203
+ 65
204
+ 67
205
+ 49
206
+ 2
207
+ 0
208
+ 49
209
+ 3
210
+ 4
211
+ 15
212
+ 99
213
+ 7
214
+ 10
215
+ 7
216
+ 11
217
+ 65
218
+ 67
219
+ 49
220
+ 2
221
+ 0
222
+ 49
223
+ 3
224
+ 4
225
+ 15
226
+ 5
227
+ 48
228
+ 12
229
+ 15
230
+ 99
231
+ 7
232
+ 13
233
+ 7
234
+ 14
235
+ 65
236
+ 67
237
+ 49
238
+ 2
239
+ 0
240
+ 49
241
+ 3
242
+ 4
243
+ 15
244
+ 99
245
+ 7
246
+ 15
247
+ 7
248
+ 16
249
+ 65
250
+ 67
251
+ 49
252
+ 2
253
+ 0
254
+ 49
255
+ 3
256
+ 4
257
+ 15
258
+ 99
259
+ 7
260
+ 17
261
+ 7
262
+ 18
263
+ 65
264
+ 67
265
+ 49
266
+ 2
267
+ 0
268
+ 49
269
+ 3
270
+ 4
271
+ 15
272
+ 99
273
+ 7
274
+ 19
275
+ 7
276
+ 20
277
+ 65
278
+ 67
279
+ 49
280
+ 2
281
+ 0
282
+ 49
283
+ 3
284
+ 4
285
+ 15
286
+ 99
287
+ 7
288
+ 21
289
+ 7
290
+ 22
291
+ 65
292
+ 67
293
+ 49
294
+ 2
295
+ 0
296
+ 49
297
+ 3
298
+ 4
299
+ 15
300
+ 99
301
+ 7
302
+ 23
303
+ 7
304
+ 24
305
+ 65
306
+ 67
307
+ 49
308
+ 2
309
+ 0
310
+ 49
311
+ 3
312
+ 4
313
+ 15
314
+ 99
315
+ 7
316
+ 25
317
+ 7
318
+ 26
319
+ 65
320
+ 67
321
+ 49
322
+ 2
323
+ 0
324
+ 49
325
+ 3
326
+ 4
327
+ 15
328
+ 99
329
+ 7
330
+ 27
331
+ 7
332
+ 28
333
+ 65
334
+ 67
335
+ 49
336
+ 2
337
+ 0
338
+ 49
339
+ 3
340
+ 4
341
+ 15
342
+ 99
343
+ 7
344
+ 29
345
+ 7
346
+ 30
347
+ 65
348
+ 67
349
+ 49
350
+ 2
351
+ 0
352
+ 49
353
+ 3
354
+ 4
355
+ 15
356
+ 99
357
+ 7
358
+ 31
359
+ 7
360
+ 32
361
+ 65
362
+ 67
363
+ 49
364
+ 2
365
+ 0
366
+ 49
367
+ 3
368
+ 4
369
+ 15
370
+ 99
371
+ 7
372
+ 33
373
+ 7
374
+ 34
375
+ 65
376
+ 67
377
+ 49
378
+ 2
379
+ 0
380
+ 49
381
+ 3
382
+ 4
383
+ 15
384
+ 99
385
+ 7
386
+ 35
387
+ 7
388
+ 36
389
+ 65
390
+ 67
391
+ 49
392
+ 2
393
+ 0
394
+ 49
395
+ 3
396
+ 4
397
+ 15
398
+ 99
399
+ 7
400
+ 37
401
+ 7
402
+ 38
403
+ 65
404
+ 67
405
+ 49
406
+ 2
407
+ 0
408
+ 49
409
+ 3
410
+ 4
411
+ 15
412
+ 99
413
+ 7
414
+ 39
415
+ 7
416
+ 40
417
+ 65
418
+ 67
419
+ 49
420
+ 2
421
+ 0
422
+ 49
423
+ 3
424
+ 4
425
+ 15
426
+ 99
427
+ 7
428
+ 41
429
+ 7
430
+ 42
431
+ 65
432
+ 67
433
+ 49
434
+ 2
435
+ 0
436
+ 49
437
+ 3
438
+ 4
439
+ 11
440
+ I
441
+ 5
442
+ I
443
+ 0
444
+ I
445
+ 0
446
+ I
447
+ 0
448
+ n
449
+ p
450
+ 43
451
+ x
452
+ 4
453
+ find
454
+ M
455
+ 1
456
+ n
457
+ n
458
+ x
459
+ 4
460
+ find
461
+ i
462
+ 105
463
+ 94
464
+ 9
465
+ 14
466
+ 5
467
+ 48
468
+ 0
469
+ 56
470
+ 1
471
+ 50
472
+ 2
473
+ 0
474
+ 11
475
+ 8
476
+ 15
477
+ 1
478
+ 15
479
+ 20
480
+ 0
481
+ 49
482
+ 3
483
+ 0
484
+ 19
485
+ 1
486
+ 15
487
+ 20
488
+ 1
489
+ 49
490
+ 4
491
+ 0
492
+ 9
493
+ 47
494
+ 5
495
+ 20
496
+ 1
497
+ 47
498
+ 49
499
+ 5
500
+ 1
501
+ 20
502
+ 0
503
+ 36
504
+ 1
505
+ 51
506
+ 2
507
+ 0
508
+ 8
509
+ 104
510
+ 20
511
+ 0
512
+ 49
513
+ 6
514
+ 0
515
+ 13
516
+ 7
517
+ 6
518
+ 12
519
+ 49
520
+ 7
521
+ 1
522
+ 10
523
+ 81
524
+ 13
525
+ 7
526
+ 8
527
+ 12
528
+ 49
529
+ 7
530
+ 1
531
+ 10
532
+ 81
533
+ 13
534
+ 7
535
+ 9
536
+ 12
537
+ 49
538
+ 7
539
+ 1
540
+ 10
541
+ 81
542
+ 8
543
+ 94
544
+ 15
545
+ 5
546
+ 20
547
+ 0
548
+ 49
549
+ 6
550
+ 0
551
+ 47
552
+ 49
553
+ 10
554
+ 1
555
+ 8
556
+ 104
557
+ 15
558
+ 5
559
+ 20
560
+ 0
561
+ 36
562
+ 1
563
+ 47
564
+ 51
565
+ 11
566
+ 0
567
+ 11
568
+ I
569
+ 5
570
+ I
571
+ 2
572
+ I
573
+ 0
574
+ I
575
+ 0
576
+ I
577
+ 0
578
+ p
579
+ 12
580
+ x
581
+ 4
582
+ to_a
583
+ M
584
+ 1
585
+ p
586
+ 2
587
+ x
588
+ 9
589
+ for_block
590
+ t
591
+ n
592
+ x
593
+ 4
594
+ find
595
+ i
596
+ 11
597
+ 59
598
+ 36
599
+ 19
600
+ 0
601
+ 15
602
+ 20
603
+ 0
604
+ 36
605
+ 61
606
+ 0
607
+ 11
608
+ I
609
+ 3
610
+ I
611
+ 1
612
+ I
613
+ 0
614
+ I
615
+ 0
616
+ I
617
+ 0
618
+ p
619
+ 0
620
+ p
621
+ 3
622
+ I
623
+ 0
624
+ I
625
+ 60
626
+ I
627
+ b
628
+ x
629
+ 94
630
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
631
+ p
632
+ 1
633
+ x
634
+ 10
635
+ block_args
636
+ x
637
+ 4
638
+ find
639
+ x
640
+ 16
641
+ extract_options!
642
+ x
643
+ 8
644
+ present?
645
+ x
646
+ 20
647
+ apply_finder_options
648
+ x
649
+ 5
650
+ first
651
+ x
652
+ 3
653
+ ===
654
+ x
655
+ 4
656
+ last
657
+ x
658
+ 3
659
+ all
660
+ x
661
+ 4
662
+ send
663
+ x
664
+ 13
665
+ find_with_ids
666
+ p
667
+ 19
668
+ I
669
+ -1
670
+ I
671
+ 5f
672
+ I
673
+ 0
674
+ I
675
+ 60
676
+ I
677
+ 10
678
+ I
679
+ 62
680
+ I
681
+ 18
682
+ I
683
+ 64
684
+ I
685
+ 1f
686
+ I
687
+ 65
688
+ I
689
+ 2f
690
+ I
691
+ 67
692
+ I
693
+ 34
694
+ I
695
+ 68
696
+ I
697
+ 52
698
+ I
699
+ 69
700
+ I
701
+ 5f
702
+ I
703
+ 6b
704
+ I
705
+ 69
706
+ x
707
+ 94
708
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
709
+ p
710
+ 2
711
+ x
712
+ 4
713
+ args
714
+ x
715
+ 7
716
+ options
717
+ x
718
+ 17
719
+ method_visibility
720
+ x
721
+ 15
722
+ add_defn_method
723
+ x
724
+ 5
725
+ first
726
+ M
727
+ 1
728
+ n
729
+ n
730
+ x
731
+ 5
732
+ first
733
+ i
734
+ 81
735
+ 20
736
+ 0
737
+ 49
738
+ 0
739
+ 0
740
+ 9
741
+ 77
742
+ 20
743
+ 0
744
+ 49
745
+ 1
746
+ 0
747
+ 45
748
+ 2
749
+ 3
750
+ 49
751
+ 4
752
+ 1
753
+ 13
754
+ 10
755
+ 48
756
+ 15
757
+ 5
758
+ 47
759
+ 49
760
+ 5
761
+ 0
762
+ 13
763
+ 9
764
+ 48
765
+ 15
766
+ 20
767
+ 0
768
+ 49
769
+ 1
770
+ 0
771
+ 45
772
+ 6
773
+ 7
774
+ 49
775
+ 4
776
+ 1
777
+ 10
778
+ 47
779
+ 2
780
+ 8
781
+ 48
782
+ 3
783
+ 9
784
+ 62
785
+ 5
786
+ 48
787
+ 8
788
+ 20
789
+ 0
790
+ 36
791
+ 1
792
+ 51
793
+ 1
794
+ 0
795
+ 8
796
+ 75
797
+ 5
798
+ 20
799
+ 0
800
+ 49
801
+ 1
802
+ 0
803
+ 47
804
+ 49
805
+ 9
806
+ 1
807
+ 49
808
+ 1
809
+ 0
810
+ 8
811
+ 80
812
+ 5
813
+ 48
814
+ 10
815
+ 11
816
+ I
817
+ 4
818
+ I
819
+ 1
820
+ I
821
+ 0
822
+ I
823
+ 0
824
+ I
825
+ 0
826
+ p
827
+ 11
828
+ x
829
+ 4
830
+ any?
831
+ x
832
+ 5
833
+ first
834
+ x
835
+ 7
836
+ Integer
837
+ n
838
+ x
839
+ 8
840
+ kind_of?
841
+ x
842
+ 7
843
+ loaded?
844
+ x
845
+ 4
846
+ Hash
847
+ n
848
+ x
849
+ 4
850
+ to_a
851
+ x
852
+ 20
853
+ apply_finder_options
854
+ x
855
+ 10
856
+ find_first
857
+ p
858
+ 13
859
+ I
860
+ -1
861
+ I
862
+ 72
863
+ I
864
+ 0
865
+ I
866
+ 73
867
+ I
868
+ 7
869
+ I
870
+ 74
871
+ I
872
+ 32
873
+ I
874
+ 75
875
+ I
876
+ 3e
877
+ I
878
+ 77
879
+ I
880
+ 4d
881
+ I
882
+ 7a
883
+ I
884
+ 51
885
+ x
886
+ 94
887
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
888
+ p
889
+ 1
890
+ x
891
+ 4
892
+ args
893
+ x
894
+ 4
895
+ last
896
+ M
897
+ 1
898
+ n
899
+ n
900
+ x
901
+ 4
902
+ last
903
+ i
904
+ 81
905
+ 20
906
+ 0
907
+ 49
908
+ 0
909
+ 0
910
+ 9
911
+ 77
912
+ 20
913
+ 0
914
+ 49
915
+ 1
916
+ 0
917
+ 45
918
+ 2
919
+ 3
920
+ 49
921
+ 4
922
+ 1
923
+ 13
924
+ 10
925
+ 48
926
+ 15
927
+ 5
928
+ 47
929
+ 49
930
+ 5
931
+ 0
932
+ 13
933
+ 9
934
+ 48
935
+ 15
936
+ 20
937
+ 0
938
+ 49
939
+ 1
940
+ 0
941
+ 45
942
+ 6
943
+ 7
944
+ 49
945
+ 4
946
+ 1
947
+ 10
948
+ 47
949
+ 2
950
+ 8
951
+ 48
952
+ 3
953
+ 9
954
+ 62
955
+ 5
956
+ 48
957
+ 8
958
+ 20
959
+ 0
960
+ 36
961
+ 1
962
+ 51
963
+ 9
964
+ 0
965
+ 8
966
+ 75
967
+ 5
968
+ 20
969
+ 0
970
+ 49
971
+ 1
972
+ 0
973
+ 47
974
+ 49
975
+ 10
976
+ 1
977
+ 49
978
+ 9
979
+ 0
980
+ 8
981
+ 80
982
+ 5
983
+ 48
984
+ 11
985
+ 11
986
+ I
987
+ 4
988
+ I
989
+ 1
990
+ I
991
+ 0
992
+ I
993
+ 0
994
+ I
995
+ 0
996
+ p
997
+ 12
998
+ x
999
+ 4
1000
+ any?
1001
+ x
1002
+ 5
1003
+ first
1004
+ x
1005
+ 7
1006
+ Integer
1007
+ n
1008
+ x
1009
+ 8
1010
+ kind_of?
1011
+ x
1012
+ 7
1013
+ loaded?
1014
+ x
1015
+ 4
1016
+ Hash
1017
+ n
1018
+ x
1019
+ 4
1020
+ to_a
1021
+ x
1022
+ 4
1023
+ last
1024
+ x
1025
+ 20
1026
+ apply_finder_options
1027
+ x
1028
+ 9
1029
+ find_last
1030
+ p
1031
+ 13
1032
+ I
1033
+ -1
1034
+ I
1035
+ 80
1036
+ I
1037
+ 0
1038
+ I
1039
+ 81
1040
+ I
1041
+ 7
1042
+ I
1043
+ 82
1044
+ I
1045
+ 32
1046
+ I
1047
+ 83
1048
+ I
1049
+ 3e
1050
+ I
1051
+ 85
1052
+ I
1053
+ 4d
1054
+ I
1055
+ 88
1056
+ I
1057
+ 51
1058
+ x
1059
+ 94
1060
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
1061
+ p
1062
+ 1
1063
+ x
1064
+ 4
1065
+ args
1066
+ x
1067
+ 3
1068
+ all
1069
+ M
1070
+ 1
1071
+ n
1072
+ n
1073
+ x
1074
+ 3
1075
+ all
1076
+ i
1077
+ 26
1078
+ 20
1079
+ 0
1080
+ 49
1081
+ 0
1082
+ 0
1083
+ 9
1084
+ 22
1085
+ 5
1086
+ 20
1087
+ 0
1088
+ 49
1089
+ 1
1090
+ 0
1091
+ 47
1092
+ 49
1093
+ 2
1094
+ 1
1095
+ 49
1096
+ 3
1097
+ 0
1098
+ 8
1099
+ 25
1100
+ 5
1101
+ 48
1102
+ 3
1103
+ 11
1104
+ I
1105
+ 3
1106
+ I
1107
+ 1
1108
+ I
1109
+ 0
1110
+ I
1111
+ 0
1112
+ I
1113
+ 0
1114
+ p
1115
+ 4
1116
+ x
1117
+ 4
1118
+ any?
1119
+ x
1120
+ 5
1121
+ first
1122
+ x
1123
+ 20
1124
+ apply_finder_options
1125
+ x
1126
+ 4
1127
+ to_a
1128
+ p
1129
+ 5
1130
+ I
1131
+ -1
1132
+ I
1133
+ 8e
1134
+ I
1135
+ 0
1136
+ I
1137
+ 8f
1138
+ I
1139
+ 1a
1140
+ x
1141
+ 94
1142
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
1143
+ p
1144
+ 1
1145
+ x
1146
+ 4
1147
+ args
1148
+ x
1149
+ 7
1150
+ exists?
1151
+ M
1152
+ 1
1153
+ n
1154
+ n
1155
+ x
1156
+ 7
1157
+ exists?
1158
+ i
1159
+ 153
1160
+ 23
1161
+ 0
1162
+ 10
1163
+ 8
1164
+ 1
1165
+ 19
1166
+ 0
1167
+ 15
1168
+ 45
1169
+ 0
1170
+ 1
1171
+ 43
1172
+ 2
1173
+ 20
1174
+ 0
1175
+ 86
1176
+ 3
1177
+ 9
1178
+ 28
1179
+ 20
1180
+ 0
1181
+ 49
1182
+ 4
1183
+ 0
1184
+ 19
1185
+ 0
1186
+ 8
1187
+ 29
1188
+ 1
1189
+ 15
1190
+ 5
1191
+ 48
1192
+ 5
1193
+ 19
1194
+ 1
1195
+ 15
1196
+ 5
1197
+ 20
1198
+ 1
1199
+ 47
1200
+ 49
1201
+ 6
1202
+ 1
1203
+ 19
1204
+ 2
1205
+ 15
1206
+ 20
1207
+ 2
1208
+ 7
1209
+ 7
1210
+ 49
1211
+ 8
1212
+ 1
1213
+ 7
1214
+ 9
1215
+ 64
1216
+ 49
1217
+ 7
1218
+ 1
1219
+ 79
1220
+ 49
1221
+ 10
1222
+ 1
1223
+ 19
1224
+ 2
1225
+ 15
1226
+ 20
1227
+ 0
1228
+ 13
1229
+ 45
1230
+ 11
1231
+ 12
1232
+ 12
1233
+ 49
1234
+ 3
1235
+ 1
1236
+ 10
1237
+ 90
1238
+ 13
1239
+ 45
1240
+ 13
1241
+ 14
1242
+ 12
1243
+ 49
1244
+ 3
1245
+ 1
1246
+ 10
1247
+ 90
1248
+ 8
1249
+ 102
1250
+ 15
1251
+ 20
1252
+ 2
1253
+ 20
1254
+ 0
1255
+ 49
1256
+ 15
1257
+ 1
1258
+ 19
1259
+ 2
1260
+ 8
1261
+ 134
1262
+ 15
1263
+ 20
1264
+ 0
1265
+ 9
1266
+ 133
1267
+ 20
1268
+ 2
1269
+ 5
1270
+ 48
1271
+ 16
1272
+ 5
1273
+ 48
1274
+ 17
1275
+ 49
1276
+ 18
1277
+ 0
1278
+ 49
1279
+ 19
1280
+ 1
1281
+ 20
1282
+ 0
1283
+ 49
1284
+ 20
1285
+ 1
1286
+ 49
1287
+ 15
1288
+ 1
1289
+ 19
1290
+ 2
1291
+ 8
1292
+ 134
1293
+ 1
1294
+ 15
1295
+ 5
1296
+ 48
1297
+ 21
1298
+ 20
1299
+ 2
1300
+ 49
1301
+ 22
1302
+ 0
1303
+ 49
1304
+ 23
1305
+ 1
1306
+ 9
1307
+ 151
1308
+ 2
1309
+ 8
1310
+ 152
1311
+ 3
1312
+ 11
1313
+ I
1314
+ 6
1315
+ I
1316
+ 3
1317
+ I
1318
+ 0
1319
+ I
1320
+ 1
1321
+ n
1322
+ p
1323
+ 24
1324
+ x
1325
+ 12
1326
+ ActiveRecord
1327
+ n
1328
+ x
1329
+ 4
1330
+ Base
1331
+ x
1332
+ 3
1333
+ ===
1334
+ x
1335
+ 2
1336
+ id
1337
+ x
1338
+ 46
1339
+ construct_join_dependency_for_association_find
1340
+ x
1341
+ 39
1342
+ construct_relation_for_association_find
1343
+ x
1344
+ 6
1345
+ select
1346
+ x
1347
+ 6
1348
+ except
1349
+ s
1350
+ 1
1351
+ 1
1352
+ x
1353
+ 5
1354
+ limit
1355
+ x
1356
+ 5
1357
+ Array
1358
+ n
1359
+ x
1360
+ 4
1361
+ Hash
1362
+ n
1363
+ x
1364
+ 5
1365
+ where
1366
+ x
1367
+ 5
1368
+ table
1369
+ x
1370
+ 11
1371
+ primary_key
1372
+ x
1373
+ 4
1374
+ name
1375
+ x
1376
+ 2
1377
+ []
1378
+ x
1379
+ 2
1380
+ eq
1381
+ x
1382
+ 10
1383
+ connection
1384
+ x
1385
+ 6
1386
+ to_sql
1387
+ x
1388
+ 12
1389
+ select_value
1390
+ p
1391
+ 21
1392
+ I
1393
+ -1
1394
+ I
1395
+ ab
1396
+ I
1397
+ 8
1398
+ I
1399
+ ac
1400
+ I
1401
+ 1e
1402
+ I
1403
+ ae
1404
+ I
1405
+ 24
1406
+ I
1407
+ af
1408
+ I
1409
+ 2e
1410
+ I
1411
+ b0
1412
+ I
1413
+ 42
1414
+ I
1415
+ b2
1416
+ I
1417
+ 44
1418
+ I
1419
+ b3
1420
+ I
1421
+ 5b
1422
+ I
1423
+ b4
1424
+ I
1425
+ 67
1426
+ I
1427
+ b6
1428
+ I
1429
+ 87
1430
+ I
1431
+ b9
1432
+ I
1433
+ 99
1434
+ x
1435
+ 94
1436
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
1437
+ p
1438
+ 3
1439
+ x
1440
+ 2
1441
+ id
1442
+ x
1443
+ 15
1444
+ join_dependency
1445
+ x
1446
+ 8
1447
+ relation
1448
+ x
1449
+ 9
1450
+ protected
1451
+ x
1452
+ 22
1453
+ find_with_associations
1454
+ M
1455
+ 1
1456
+ n
1457
+ n
1458
+ x
1459
+ 22
1460
+ find_with_associations
1461
+ i
1462
+ 68
1463
+ 26
1464
+ 93
1465
+ 0
1466
+ 15
1467
+ 29
1468
+ 36
1469
+ 0
1470
+ 5
1471
+ 48
1472
+ 0
1473
+ 19
1474
+ 0
1475
+ 15
1476
+ 5
1477
+ 20
1478
+ 0
1479
+ 47
1480
+ 49
1481
+ 1
1482
+ 1
1483
+ 49
1484
+ 2
1485
+ 0
1486
+ 19
1487
+ 1
1488
+ 15
1489
+ 20
1490
+ 0
1491
+ 20
1492
+ 1
1493
+ 49
1494
+ 3
1495
+ 1
1496
+ 30
1497
+ 8
1498
+ 64
1499
+ 26
1500
+ 93
1501
+ 1
1502
+ 15
1503
+ 24
1504
+ 13
1505
+ 45
1506
+ 4
1507
+ 5
1508
+ 12
1509
+ 49
1510
+ 6
1511
+ 1
1512
+ 10
1513
+ 53
1514
+ 8
1515
+ 59
1516
+ 15
1517
+ 35
1518
+ 0
1519
+ 25
1520
+ 8
1521
+ 64
1522
+ 15
1523
+ 92
1524
+ 1
1525
+ 27
1526
+ 34
1527
+ 92
1528
+ 0
1529
+ 27
1530
+ 11
1531
+ I
1532
+ 7
1533
+ I
1534
+ 2
1535
+ I
1536
+ 0
1537
+ I
1538
+ 0
1539
+ n
1540
+ p
1541
+ 7
1542
+ x
1543
+ 46
1544
+ construct_join_dependency_for_association_find
1545
+ x
1546
+ 39
1547
+ construct_relation_for_association_find
1548
+ x
1549
+ 4
1550
+ to_a
1551
+ x
1552
+ 11
1553
+ instantiate
1554
+ x
1555
+ 11
1556
+ ThrowResult
1557
+ n
1558
+ x
1559
+ 3
1560
+ ===
1561
+ p
1562
+ 13
1563
+ I
1564
+ -1
1565
+ I
1566
+ be
1567
+ I
1568
+ 0
1569
+ I
1570
+ bf
1571
+ I
1572
+ d
1573
+ I
1574
+ c0
1575
+ I
1576
+ 1a
1577
+ I
1578
+ c1
1579
+ I
1580
+ 29
1581
+ I
1582
+ c2
1583
+ I
1584
+ 36
1585
+ I
1586
+ c3
1587
+ I
1588
+ 44
1589
+ x
1590
+ 94
1591
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
1592
+ p
1593
+ 2
1594
+ x
1595
+ 15
1596
+ join_dependency
1597
+ x
1598
+ 4
1599
+ rows
1600
+ x
1601
+ 46
1602
+ construct_join_dependency_for_association_find
1603
+ M
1604
+ 1
1605
+ n
1606
+ n
1607
+ x
1608
+ 46
1609
+ construct_join_dependency_for_association_find
1610
+ i
1611
+ 55
1612
+ 39
1613
+ 0
1614
+ 39
1615
+ 1
1616
+ 81
1617
+ 2
1618
+ 49
1619
+ 3
1620
+ 0
1621
+ 19
1622
+ 0
1623
+ 15
1624
+ 45
1625
+ 4
1626
+ 5
1627
+ 43
1628
+ 6
1629
+ 43
1630
+ 7
1631
+ 43
1632
+ 8
1633
+ 13
1634
+ 71
1635
+ 9
1636
+ 47
1637
+ 9
1638
+ 44
1639
+ 47
1640
+ 49
1641
+ 10
1642
+ 0
1643
+ 13
1644
+ 39
1645
+ 11
1646
+ 20
1647
+ 0
1648
+ 1
1649
+ 47
1650
+ 49
1651
+ 12
1652
+ 3
1653
+ 15
1654
+ 8
1655
+ 52
1656
+ 39
1657
+ 11
1658
+ 20
1659
+ 0
1660
+ 1
1661
+ 49
1662
+ 9
1663
+ 3
1664
+ 19
1665
+ 1
1666
+ 11
1667
+ I
1668
+ 7
1669
+ I
1670
+ 2
1671
+ I
1672
+ 0
1673
+ I
1674
+ 0
1675
+ n
1676
+ p
1677
+ 13
1678
+ x
1679
+ 18
1680
+ @eager_load_values
1681
+ x
1682
+ 16
1683
+ @includes_values
1684
+ x
1685
+ 1
1686
+ +
1687
+ x
1688
+ 4
1689
+ uniq
1690
+ x
1691
+ 12
1692
+ ActiveRecord
1693
+ n
1694
+ x
1695
+ 12
1696
+ Associations
1697
+ x
1698
+ 12
1699
+ ClassMethods
1700
+ x
1701
+ 14
1702
+ JoinDependency
1703
+ x
1704
+ 3
1705
+ new
1706
+ x
1707
+ 8
1708
+ allocate
1709
+ x
1710
+ 6
1711
+ @klass
1712
+ x
1713
+ 10
1714
+ initialize
1715
+ p
1716
+ 7
1717
+ I
1718
+ -1
1719
+ I
1720
+ c6
1721
+ I
1722
+ 0
1723
+ I
1724
+ c7
1725
+ I
1726
+ c
1727
+ I
1728
+ c8
1729
+ I
1730
+ 37
1731
+ x
1732
+ 94
1733
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
1734
+ p
1735
+ 2
1736
+ x
1737
+ 9
1738
+ including
1739
+ x
1740
+ 15
1741
+ join_dependency
1742
+ x
1743
+ 47
1744
+ construct_relation_for_association_calculations
1745
+ M
1746
+ 1
1747
+ n
1748
+ n
1749
+ x
1750
+ 47
1751
+ construct_relation_for_association_calculations
1752
+ i
1753
+ 89
1754
+ 39
1755
+ 0
1756
+ 39
1757
+ 1
1758
+ 81
1759
+ 2
1760
+ 49
1761
+ 3
1762
+ 0
1763
+ 19
1764
+ 0
1765
+ 15
1766
+ 45
1767
+ 4
1768
+ 5
1769
+ 43
1770
+ 6
1771
+ 43
1772
+ 7
1773
+ 43
1774
+ 8
1775
+ 13
1776
+ 71
1777
+ 9
1778
+ 47
1779
+ 9
1780
+ 49
1781
+ 47
1782
+ 49
1783
+ 10
1784
+ 0
1785
+ 13
1786
+ 39
1787
+ 11
1788
+ 20
1789
+ 0
1790
+ 5
1791
+ 48
1792
+ 12
1793
+ 49
1794
+ 13
1795
+ 0
1796
+ 47
1797
+ 49
1798
+ 14
1799
+ 3
1800
+ 15
1801
+ 8
1802
+ 62
1803
+ 39
1804
+ 11
1805
+ 20
1806
+ 0
1807
+ 5
1808
+ 48
1809
+ 12
1810
+ 49
1811
+ 13
1812
+ 0
1813
+ 49
1814
+ 9
1815
+ 3
1816
+ 19
1817
+ 1
1818
+ 15
1819
+ 5
1820
+ 7
1821
+ 15
1822
+ 7
1823
+ 16
1824
+ 7
1825
+ 17
1826
+ 47
1827
+ 49
1828
+ 18
1829
+ 3
1830
+ 19
1831
+ 2
1832
+ 15
1833
+ 5
1834
+ 20
1835
+ 2
1836
+ 20
1837
+ 1
1838
+ 47
1839
+ 49
1840
+ 19
1841
+ 2
1842
+ 11
1843
+ I
1844
+ 8
1845
+ I
1846
+ 3
1847
+ I
1848
+ 0
1849
+ I
1850
+ 0
1851
+ n
1852
+ p
1853
+ 20
1854
+ x
1855
+ 18
1856
+ @eager_load_values
1857
+ x
1858
+ 16
1859
+ @includes_values
1860
+ x
1861
+ 1
1862
+ +
1863
+ x
1864
+ 4
1865
+ uniq
1866
+ x
1867
+ 12
1868
+ ActiveRecord
1869
+ n
1870
+ x
1871
+ 12
1872
+ Associations
1873
+ x
1874
+ 12
1875
+ ClassMethods
1876
+ x
1877
+ 14
1878
+ JoinDependency
1879
+ x
1880
+ 3
1881
+ new
1882
+ x
1883
+ 8
1884
+ allocate
1885
+ x
1886
+ 6
1887
+ @klass
1888
+ x
1889
+ 4
1890
+ arel
1891
+ x
1892
+ 8
1893
+ join_sql
1894
+ x
1895
+ 10
1896
+ initialize
1897
+ x
1898
+ 8
1899
+ includes
1900
+ x
1901
+ 10
1902
+ eager_load
1903
+ x
1904
+ 7
1905
+ preload
1906
+ x
1907
+ 6
1908
+ except
1909
+ x
1910
+ 21
1911
+ apply_join_dependency
1912
+ p
1913
+ 11
1914
+ I
1915
+ -1
1916
+ I
1917
+ cb
1918
+ I
1919
+ 0
1920
+ I
1921
+ cc
1922
+ I
1923
+ c
1924
+ I
1925
+ cd
1926
+ I
1927
+ 41
1928
+ I
1929
+ ce
1930
+ I
1931
+ 4f
1932
+ I
1933
+ cf
1934
+ I
1935
+ 59
1936
+ x
1937
+ 94
1938
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
1939
+ p
1940
+ 3
1941
+ x
1942
+ 9
1943
+ including
1944
+ x
1945
+ 15
1946
+ join_dependency
1947
+ x
1948
+ 8
1949
+ relation
1950
+ x
1951
+ 39
1952
+ construct_relation_for_association_find
1953
+ M
1954
+ 1
1955
+ n
1956
+ n
1957
+ x
1958
+ 39
1959
+ construct_relation_for_association_find
1960
+ i
1961
+ 36
1962
+ 5
1963
+ 7
1964
+ 0
1965
+ 7
1966
+ 1
1967
+ 7
1968
+ 2
1969
+ 7
1970
+ 3
1971
+ 47
1972
+ 49
1973
+ 4
1974
+ 4
1975
+ 5
1976
+ 20
1977
+ 0
1978
+ 47
1979
+ 49
1980
+ 5
1981
+ 1
1982
+ 49
1983
+ 3
1984
+ 1
1985
+ 19
1986
+ 1
1987
+ 15
1988
+ 5
1989
+ 20
1990
+ 1
1991
+ 20
1992
+ 0
1993
+ 47
1994
+ 49
1995
+ 6
1996
+ 2
1997
+ 11
1998
+ I
1999
+ 7
2000
+ I
2001
+ 2
2002
+ I
2003
+ 1
2004
+ I
2005
+ 1
2006
+ n
2007
+ p
2008
+ 7
2009
+ x
2010
+ 8
2011
+ includes
2012
+ x
2013
+ 10
2014
+ eager_load
2015
+ x
2016
+ 7
2017
+ preload
2018
+ x
2019
+ 6
2020
+ select
2021
+ x
2022
+ 6
2023
+ except
2024
+ x
2025
+ 14
2026
+ column_aliases
2027
+ x
2028
+ 21
2029
+ apply_join_dependency
2030
+ p
2031
+ 7
2032
+ I
2033
+ -1
2034
+ I
2035
+ d2
2036
+ I
2037
+ 0
2038
+ I
2039
+ d3
2040
+ I
2041
+ 1a
2042
+ I
2043
+ d4
2044
+ I
2045
+ 24
2046
+ x
2047
+ 94
2048
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
2049
+ p
2050
+ 2
2051
+ x
2052
+ 15
2053
+ join_dependency
2054
+ x
2055
+ 8
2056
+ relation
2057
+ x
2058
+ 21
2059
+ apply_join_dependency
2060
+ M
2061
+ 1
2062
+ n
2063
+ n
2064
+ x
2065
+ 21
2066
+ apply_join_dependency
2067
+ i
2068
+ 93
2069
+ 20
2070
+ 1
2071
+ 49
2072
+ 0
2073
+ 0
2074
+ 56
2075
+ 1
2076
+ 50
2077
+ 2
2078
+ 0
2079
+ 15
2080
+ 5
2081
+ 20
2082
+ 1
2083
+ 49
2084
+ 3
2085
+ 0
2086
+ 47
2087
+ 49
2088
+ 4
2089
+ 1
2090
+ 19
2091
+ 3
2092
+ 15
2093
+ 20
2094
+ 3
2095
+ 10
2096
+ 31
2097
+ 2
2098
+ 8
2099
+ 32
2100
+ 3
2101
+ 13
2102
+ 9
2103
+ 41
2104
+ 15
2105
+ 20
2106
+ 0
2107
+ 49
2108
+ 5
2109
+ 0
2110
+ 9
2111
+ 69
2112
+ 5
2113
+ 20
2114
+ 0
2115
+ 7
2116
+ 6
2117
+ 49
2118
+ 7
2119
+ 1
2120
+ 47
2121
+ 49
2122
+ 8
2123
+ 1
2124
+ 19
2125
+ 4
2126
+ 15
2127
+ 20
2128
+ 0
2129
+ 20
2130
+ 4
2131
+ 49
2132
+ 9
2133
+ 1
2134
+ 19
2135
+ 0
2136
+ 8
2137
+ 70
2138
+ 1
2139
+ 15
2140
+ 20
2141
+ 3
2142
+ 9
2143
+ 78
2144
+ 1
2145
+ 8
2146
+ 89
2147
+ 20
2148
+ 0
2149
+ 7
2150
+ 10
2151
+ 7
2152
+ 11
2153
+ 49
2154
+ 7
2155
+ 2
2156
+ 19
2157
+ 0
2158
+ 15
2159
+ 20
2160
+ 0
2161
+ 11
2162
+ I
2163
+ 8
2164
+ I
2165
+ 5
2166
+ I
2167
+ 2
2168
+ I
2169
+ 2
2170
+ n
2171
+ p
2172
+ 12
2173
+ x
2174
+ 17
2175
+ join_associations
2176
+ M
2177
+ 1
2178
+ p
2179
+ 2
2180
+ x
2181
+ 9
2182
+ for_block
2183
+ t
2184
+ n
2185
+ x
2186
+ 21
2187
+ apply_join_dependency
2188
+ i
2189
+ 18
2190
+ 57
2191
+ 22
2192
+ 1
2193
+ 2
2194
+ 15
2195
+ 21
2196
+ 1
2197
+ 2
2198
+ 21
2199
+ 1
2200
+ 0
2201
+ 49
2202
+ 0
2203
+ 1
2204
+ 22
2205
+ 1
2206
+ 0
2207
+ 11
2208
+ I
2209
+ 3
2210
+ I
2211
+ 0
2212
+ I
2213
+ 1
2214
+ I
2215
+ 1
2216
+ n
2217
+ p
2218
+ 1
2219
+ x
2220
+ 13
2221
+ join_relation
2222
+ p
2223
+ 5
2224
+ I
2225
+ 0
2226
+ I
2227
+ d8
2228
+ I
2229
+ 5
2230
+ I
2231
+ d9
2232
+ I
2233
+ 12
2234
+ x
2235
+ 94
2236
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
2237
+ p
2238
+ 0
2239
+ x
2240
+ 4
2241
+ each
2242
+ x
2243
+ 11
2244
+ reflections
2245
+ x
2246
+ 28
2247
+ using_limitable_reflections?
2248
+ x
2249
+ 11
2250
+ limit_value
2251
+ x
2252
+ 6
2253
+ select
2254
+ x
2255
+ 6
2256
+ except
2257
+ x
2258
+ 31
2259
+ construct_limited_ids_condition
2260
+ x
2261
+ 5
2262
+ where
2263
+ x
2264
+ 5
2265
+ limit
2266
+ x
2267
+ 6
2268
+ offset
2269
+ p
2270
+ 19
2271
+ I
2272
+ -1
2273
+ I
2274
+ d7
2275
+ I
2276
+ 0
2277
+ I
2278
+ d8
2279
+ I
2280
+ b
2281
+ I
2282
+ dc
2283
+ I
2284
+ 18
2285
+ I
2286
+ de
2287
+ I
2288
+ 2b
2289
+ I
2290
+ df
2291
+ I
2292
+ 3a
2293
+ I
2294
+ e0
2295
+ I
2296
+ 45
2297
+ I
2298
+ de
2299
+ I
2300
+ 47
2301
+ I
2302
+ e3
2303
+ I
2304
+ 5a
2305
+ I
2306
+ e5
2307
+ I
2308
+ 5d
2309
+ x
2310
+ 94
2311
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
2312
+ p
2313
+ 5
2314
+ x
2315
+ 8
2316
+ relation
2317
+ x
2318
+ 15
2319
+ join_dependency
2320
+ x
2321
+ 11
2322
+ association
2323
+ x
2324
+ 21
2325
+ limitable_reflections
2326
+ x
2327
+ 20
2328
+ limited_id_condition
2329
+ x
2330
+ 31
2331
+ construct_limited_ids_condition
2332
+ M
2333
+ 1
2334
+ n
2335
+ n
2336
+ x
2337
+ 31
2338
+ construct_limited_ids_condition
2339
+ i
2340
+ 96
2341
+ 20
2342
+ 0
2343
+ 49
2344
+ 0
2345
+ 0
2346
+ 7
2347
+ 1
2348
+ 64
2349
+ 49
2350
+ 2
2351
+ 1
2352
+ 19
2353
+ 1
2354
+ 15
2355
+ 39
2356
+ 3
2357
+ 49
2358
+ 4
2359
+ 0
2360
+ 39
2361
+ 3
2362
+ 49
2363
+ 4
2364
+ 0
2365
+ 39
2366
+ 3
2367
+ 49
2368
+ 5
2369
+ 0
2370
+ 49
2371
+ 6
2372
+ 1
2373
+ 47
2374
+ 101
2375
+ 7
2376
+ 7
2377
+ 8
2378
+ 39
2379
+ 3
2380
+ 49
2381
+ 9
2382
+ 0
2383
+ 47
2384
+ 101
2385
+ 7
2386
+ 63
2387
+ 3
2388
+ 20
2389
+ 1
2390
+ 49
2391
+ 10
2392
+ 2
2393
+ 19
2394
+ 2
2395
+ 15
2396
+ 20
2397
+ 0
2398
+ 20
2399
+ 2
2400
+ 49
2401
+ 11
2402
+ 1
2403
+ 56
2404
+ 12
2405
+ 50
2406
+ 13
2407
+ 0
2408
+ 19
2409
+ 3
2410
+ 15
2411
+ 20
2412
+ 3
2413
+ 49
2414
+ 14
2415
+ 0
2416
+ 9
2417
+ 87
2418
+ 5
2419
+ 45
2420
+ 15
2421
+ 16
2422
+ 47
2423
+ 49
2424
+ 17
2425
+ 1
2426
+ 8
2427
+ 95
2428
+ 5
2429
+ 48
2430
+ 9
2431
+ 20
2432
+ 3
2433
+ 49
2434
+ 18
2435
+ 1
2436
+ 11
2437
+ I
2438
+ 8
2439
+ I
2440
+ 4
2441
+ I
2442
+ 1
2443
+ I
2444
+ 1
2445
+ n
2446
+ p
2447
+ 19
2448
+ x
2449
+ 12
2450
+ order_values
2451
+ s
2452
+ 2
2453
+ ,
2454
+ x
2455
+ 4
2456
+ join
2457
+ x
2458
+ 6
2459
+ @klass
2460
+ x
2461
+ 10
2462
+ connection
2463
+ x
2464
+ 10
2465
+ table_name
2466
+ x
2467
+ 16
2468
+ quote_table_name
2469
+ x
2470
+ 4
2471
+ to_s
2472
+ s
2473
+ 1
2474
+ .
2475
+ x
2476
+ 11
2477
+ primary_key
2478
+ x
2479
+ 8
2480
+ distinct
2481
+ x
2482
+ 6
2483
+ select
2484
+ M
2485
+ 1
2486
+ p
2487
+ 2
2488
+ x
2489
+ 9
2490
+ for_block
2491
+ t
2492
+ n
2493
+ x
2494
+ 31
2495
+ construct_limited_ids_condition
2496
+ i
2497
+ 15
2498
+ 57
2499
+ 19
2500
+ 0
2501
+ 15
2502
+ 20
2503
+ 0
2504
+ 39
2505
+ 0
2506
+ 49
2507
+ 1
2508
+ 0
2509
+ 49
2510
+ 2
2511
+ 1
2512
+ 11
2513
+ I
2514
+ 4
2515
+ I
2516
+ 1
2517
+ I
2518
+ 1
2519
+ I
2520
+ 1
2521
+ n
2522
+ p
2523
+ 3
2524
+ x
2525
+ 6
2526
+ @klass
2527
+ x
2528
+ 11
2529
+ primary_key
2530
+ x
2531
+ 2
2532
+ []
2533
+ p
2534
+ 3
2535
+ I
2536
+ 0
2537
+ I
2538
+ ec
2539
+ I
2540
+ f
2541
+ x
2542
+ 94
2543
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
2544
+ p
2545
+ 1
2546
+ x
2547
+ 3
2548
+ row
2549
+ x
2550
+ 7
2551
+ collect
2552
+ x
2553
+ 6
2554
+ empty?
2555
+ x
2556
+ 11
2557
+ ThrowResult
2558
+ n
2559
+ x
2560
+ 5
2561
+ raise
2562
+ x
2563
+ 2
2564
+ in
2565
+ p
2566
+ 11
2567
+ I
2568
+ -1
2569
+ I
2570
+ e8
2571
+ I
2572
+ 0
2573
+ I
2574
+ e9
2575
+ I
2576
+ e
2577
+ I
2578
+ ea
2579
+ I
2580
+ 37
2581
+ I
2582
+ ec
2583
+ I
2584
+ 46
2585
+ I
2586
+ ed
2587
+ I
2588
+ 60
2589
+ x
2590
+ 94
2591
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
2592
+ p
2593
+ 4
2594
+ x
2595
+ 8
2596
+ relation
2597
+ x
2598
+ 6
2599
+ orders
2600
+ x
2601
+ 6
2602
+ values
2603
+ x
2604
+ 9
2605
+ ids_array
2606
+ x
2607
+ 18
2608
+ find_by_attributes
2609
+ M
2610
+ 1
2611
+ n
2612
+ n
2613
+ x
2614
+ 18
2615
+ find_by_attributes
2616
+ i
2617
+ 96
2618
+ 45
2619
+ 0
2620
+ 1
2621
+ 20
2622
+ 1
2623
+ 56
2624
+ 2
2625
+ 50
2626
+ 3
2627
+ 0
2628
+ 49
2629
+ 4
2630
+ 1
2631
+ 19
2632
+ 3
2633
+ 15
2634
+ 5
2635
+ 20
2636
+ 3
2637
+ 47
2638
+ 49
2639
+ 5
2640
+ 1
2641
+ 20
2642
+ 0
2643
+ 49
2644
+ 6
2645
+ 0
2646
+ 49
2647
+ 7
2648
+ 1
2649
+ 19
2650
+ 4
2651
+ 15
2652
+ 20
2653
+ 0
2654
+ 49
2655
+ 8
2656
+ 0
2657
+ 13
2658
+ 9
2659
+ 48
2660
+ 15
2661
+ 20
2662
+ 4
2663
+ 49
2664
+ 9
2665
+ 0
2666
+ 9
2667
+ 93
2668
+ 5
2669
+ 45
2670
+ 10
2671
+ 11
2672
+ 7
2673
+ 12
2674
+ 39
2675
+ 13
2676
+ 49
2677
+ 14
2678
+ 0
2679
+ 47
2680
+ 101
2681
+ 15
2682
+ 7
2683
+ 16
2684
+ 20
2685
+ 3
2686
+ 49
2687
+ 17
2688
+ 0
2689
+ 56
2690
+ 18
2691
+ 50
2692
+ 19
2693
+ 0
2694
+ 7
2695
+ 20
2696
+ 64
2697
+ 49
2698
+ 21
2699
+ 1
2700
+ 47
2701
+ 101
2702
+ 15
2703
+ 63
2704
+ 4
2705
+ 47
2706
+ 49
2707
+ 22
2708
+ 2
2709
+ 8
2710
+ 95
2711
+ 20
2712
+ 4
2713
+ 11
2714
+ I
2715
+ c
2716
+ I
2717
+ 5
2718
+ I
2719
+ 2
2720
+ I
2721
+ 2
2722
+ I
2723
+ 2
2724
+ p
2725
+ 23
2726
+ x
2727
+ 4
2728
+ Hash
2729
+ n
2730
+ M
2731
+ 1
2732
+ p
2733
+ 2
2734
+ x
2735
+ 9
2736
+ for_block
2737
+ t
2738
+ n
2739
+ x
2740
+ 18
2741
+ find_by_attributes
2742
+ i
2743
+ 23
2744
+ 57
2745
+ 19
2746
+ 0
2747
+ 15
2748
+ 20
2749
+ 0
2750
+ 21
2751
+ 1
2752
+ 2
2753
+ 21
2754
+ 1
2755
+ 1
2756
+ 20
2757
+ 0
2758
+ 49
2759
+ 0
2760
+ 1
2761
+ 49
2762
+ 1
2763
+ 1
2764
+ 35
2765
+ 2
2766
+ 11
2767
+ I
2768
+ 6
2769
+ I
2770
+ 1
2771
+ I
2772
+ 1
2773
+ I
2774
+ 1
2775
+ n
2776
+ p
2777
+ 2
2778
+ x
2779
+ 5
2780
+ index
2781
+ x
2782
+ 2
2783
+ []
2784
+ p
2785
+ 3
2786
+ I
2787
+ 0
2788
+ I
2789
+ f1
2790
+ I
2791
+ 17
2792
+ x
2793
+ 94
2794
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
2795
+ p
2796
+ 1
2797
+ x
2798
+ 1
2799
+ a
2800
+ x
2801
+ 3
2802
+ map
2803
+ x
2804
+ 2
2805
+ []
2806
+ x
2807
+ 5
2808
+ where
2809
+ x
2810
+ 6
2811
+ finder
2812
+ x
2813
+ 4
2814
+ send
2815
+ x
2816
+ 5
2817
+ bang?
2818
+ x
2819
+ 6
2820
+ blank?
2821
+ x
2822
+ 14
2823
+ RecordNotFound
2824
+ n
2825
+ s
2826
+ 14
2827
+ Couldn't find
2828
+ x
2829
+ 6
2830
+ @klass
2831
+ x
2832
+ 4
2833
+ name
2834
+ x
2835
+ 4
2836
+ to_s
2837
+ s
2838
+ 6
2839
+ with
2840
+ x
2841
+ 4
2842
+ to_a
2843
+ M
2844
+ 1
2845
+ p
2846
+ 2
2847
+ x
2848
+ 9
2849
+ for_block
2850
+ t
2851
+ n
2852
+ x
2853
+ 18
2854
+ find_by_attributes
2855
+ i
2856
+ 13
2857
+ 57
2858
+ 19
2859
+ 0
2860
+ 15
2861
+ 20
2862
+ 0
2863
+ 7
2864
+ 0
2865
+ 64
2866
+ 49
2867
+ 1
2868
+ 1
2869
+ 11
2870
+ I
2871
+ 4
2872
+ I
2873
+ 1
2874
+ I
2875
+ 1
2876
+ I
2877
+ 1
2878
+ n
2879
+ p
2880
+ 2
2881
+ s
2882
+ 3
2883
+ =
2884
+ x
2885
+ 4
2886
+ join
2887
+ p
2888
+ 3
2889
+ I
2890
+ 0
2891
+ I
2892
+ f5
2893
+ I
2894
+ d
2895
+ x
2896
+ 94
2897
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
2898
+ p
2899
+ 1
2900
+ x
2901
+ 1
2902
+ p
2903
+ x
2904
+ 7
2905
+ collect
2906
+ s
2907
+ 2
2908
+ ,
2909
+ x
2910
+ 4
2911
+ join
2912
+ x
2913
+ 5
2914
+ raise
2915
+ p
2916
+ 13
2917
+ I
2918
+ -1
2919
+ I
2920
+ f0
2921
+ I
2922
+ 0
2923
+ I
2924
+ f1
2925
+ I
2926
+ 10
2927
+ I
2928
+ f2
2929
+ I
2930
+ 22
2931
+ I
2932
+ f4
2933
+ I
2934
+ 32
2935
+ I
2936
+ f5
2937
+ I
2938
+ 5d
2939
+ I
2940
+ f7
2941
+ I
2942
+ 60
2943
+ x
2944
+ 94
2945
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
2946
+ p
2947
+ 5
2948
+ x
2949
+ 5
2950
+ match
2951
+ x
2952
+ 10
2953
+ attributes
2954
+ x
2955
+ 4
2956
+ args
2957
+ x
2958
+ 10
2959
+ conditions
2960
+ x
2961
+ 6
2962
+ result
2963
+ x
2964
+ 34
2965
+ find_or_instantiator_by_attributes
2966
+ M
2967
+ 1
2968
+ n
2969
+ n
2970
+ x
2971
+ 34
2972
+ find_or_instantiator_by_attributes
2973
+ i
2974
+ 116
2975
+ 44
2976
+ 43
2977
+ 0
2978
+ 78
2979
+ 49
2980
+ 1
2981
+ 1
2982
+ 44
2983
+ 43
2984
+ 0
2985
+ 78
2986
+ 49
2987
+ 1
2988
+ 1
2989
+ 17
2990
+ 2
2991
+ 19
2992
+ 3
2993
+ 15
2994
+ 19
2995
+ 4
2996
+ 15
2997
+ 2
2998
+ 15
2999
+ 20
3000
+ 2
3001
+ 56
3002
+ 2
3003
+ 50
3004
+ 3
3005
+ 0
3006
+ 15
3007
+ 20
3008
+ 3
3009
+ 20
3010
+ 4
3011
+ 49
3012
+ 4
3013
+ 1
3014
+ 20
3015
+ 1
3016
+ 36
3017
+ 1
3018
+ 51
3019
+ 5
3020
+ 0
3021
+ 49
3022
+ 6
3023
+ 0
3024
+ 19
3025
+ 5
3026
+ 15
3027
+ 5
3028
+ 20
3029
+ 5
3030
+ 47
3031
+ 49
3032
+ 7
3033
+ 1
3034
+ 49
3035
+ 8
3036
+ 0
3037
+ 19
3038
+ 6
3039
+ 15
3040
+ 20
3041
+ 6
3042
+ 9
3043
+ 72
3044
+ 1
3045
+ 8
3046
+ 112
3047
+ 39
3048
+ 9
3049
+ 56
3050
+ 10
3051
+ 50
3052
+ 11
3053
+ 0
3054
+ 19
3055
+ 6
3056
+ 15
3057
+ 94
3058
+ 9
3059
+ 91
3060
+ 20
3061
+ 6
3062
+ 60
3063
+ 1
3064
+ 8
3065
+ 92
3066
+ 1
3067
+ 15
3068
+ 20
3069
+ 0
3070
+ 49
3071
+ 12
3072
+ 0
3073
+ 7
3074
+ 13
3075
+ 83
3076
+ 14
3077
+ 9
3078
+ 111
3079
+ 20
3080
+ 6
3081
+ 49
3082
+ 15
3083
+ 0
3084
+ 8
3085
+ 112
3086
+ 1
3087
+ 15
3088
+ 20
3089
+ 6
3090
+ 11
3091
+ I
3092
+ a
3093
+ I
3094
+ 7
3095
+ I
3096
+ 2
3097
+ I
3098
+ 2
3099
+ I
3100
+ 2
3101
+ p
3102
+ 16
3103
+ x
3104
+ 4
3105
+ Hash
3106
+ x
3107
+ 16
3108
+ new_from_literal
3109
+ M
3110
+ 1
3111
+ p
3112
+ 2
3113
+ x
3114
+ 9
3115
+ for_block
3116
+ t
3117
+ n
3118
+ x
3119
+ 34
3120
+ find_or_instantiator_by_attributes
3121
+ i
3122
+ 63
3123
+ 58
3124
+ 37
3125
+ 19
3126
+ 0
3127
+ 15
3128
+ 37
3129
+ 19
3130
+ 1
3131
+ 15
3132
+ 15
3133
+ 20
3134
+ 0
3135
+ 45
3136
+ 0
3137
+ 1
3138
+ 49
3139
+ 2
3140
+ 1
3141
+ 9
3142
+ 36
3143
+ 21
3144
+ 1
3145
+ 2
3146
+ 20
3147
+ 1
3148
+ 49
3149
+ 3
3150
+ 1
3151
+ 49
3152
+ 4
3153
+ 0
3154
+ 22
3155
+ 1
3156
+ 3
3157
+ 8
3158
+ 62
3159
+ 21
3160
+ 1
3161
+ 4
3162
+ 21
3163
+ 1
3164
+ 1
3165
+ 20
3166
+ 1
3167
+ 49
3168
+ 3
3169
+ 1
3170
+ 21
3171
+ 1
3172
+ 2
3173
+ 20
3174
+ 1
3175
+ 49
3176
+ 3
3177
+ 1
3178
+ 13
3179
+ 18
3180
+ 3
3181
+ 49
3182
+ 5
3183
+ 2
3184
+ 15
3185
+ 11
3186
+ I
3187
+ 7
3188
+ I
3189
+ 2
3190
+ I
3191
+ 2
3192
+ I
3193
+ 2
3194
+ n
3195
+ p
3196
+ 6
3197
+ x
3198
+ 4
3199
+ Hash
3200
+ n
3201
+ x
3202
+ 5
3203
+ is_a?
3204
+ x
3205
+ 2
3206
+ []
3207
+ x
3208
+ 23
3209
+ with_indifferent_access
3210
+ x
3211
+ 3
3212
+ []=
3213
+ p
3214
+ 9
3215
+ I
3216
+ 0
3217
+ I
3218
+ fd
3219
+ I
3220
+ a
3221
+ I
3222
+ fe
3223
+ I
3224
+ 14
3225
+ I
3226
+ ff
3227
+ I
3228
+ 24
3229
+ I
3230
+ 101
3231
+ I
3232
+ 3f
3233
+ x
3234
+ 94
3235
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
3236
+ p
3237
+ 2
3238
+ x
3239
+ 3
3240
+ arg
3241
+ x
3242
+ 1
3243
+ i
3244
+ x
3245
+ 15
3246
+ each_with_index
3247
+ x
3248
+ 5
3249
+ merge
3250
+ x
3251
+ 5
3252
+ slice
3253
+ x
3254
+ 14
3255
+ symbolize_keys
3256
+ x
3257
+ 5
3258
+ where
3259
+ x
3260
+ 5
3261
+ first
3262
+ x
3263
+ 6
3264
+ @klass
3265
+ M
3266
+ 1
3267
+ p
3268
+ 2
3269
+ x
3270
+ 9
3271
+ for_block
3272
+ t
3273
+ n
3274
+ x
3275
+ 34
3276
+ find_or_instantiator_by_attributes
3277
+ i
3278
+ 50
3279
+ 57
3280
+ 19
3281
+ 0
3282
+ 15
3283
+ 21
3284
+ 1
3285
+ 3
3286
+ 49
3287
+ 0
3288
+ 0
3289
+ 9
3290
+ 15
3291
+ 1
3292
+ 8
3293
+ 26
3294
+ 20
3295
+ 0
3296
+ 7
3297
+ 1
3298
+ 21
3299
+ 1
3300
+ 3
3301
+ 2
3302
+ 49
3303
+ 2
3304
+ 3
3305
+ 15
3306
+ 21
3307
+ 1
3308
+ 4
3309
+ 49
3310
+ 0
3311
+ 0
3312
+ 9
3313
+ 38
3314
+ 1
3315
+ 8
3316
+ 49
3317
+ 20
3318
+ 0
3319
+ 7
3320
+ 1
3321
+ 21
3322
+ 1
3323
+ 4
3324
+ 3
3325
+ 49
3326
+ 2
3327
+ 3
3328
+ 11
3329
+ I
3330
+ 6
3331
+ I
3332
+ 1
3333
+ I
3334
+ 1
3335
+ I
3336
+ 1
3337
+ n
3338
+ p
3339
+ 3
3340
+ x
3341
+ 6
3342
+ empty?
3343
+ x
3344
+ 11
3345
+ attributes=
3346
+ x
3347
+ 4
3348
+ send
3349
+ p
3350
+ 7
3351
+ I
3352
+ 0
3353
+ I
3354
+ 10a
3355
+ I
3356
+ 4
3357
+ I
3358
+ 10b
3359
+ I
3360
+ 1b
3361
+ I
3362
+ 10c
3363
+ I
3364
+ 32
3365
+ x
3366
+ 94
3367
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
3368
+ p
3369
+ 1
3370
+ x
3371
+ 1
3372
+ r
3373
+ x
3374
+ 3
3375
+ new
3376
+ x
3377
+ 12
3378
+ instantiator
3379
+ x
3380
+ 6
3381
+ create
3382
+ x
3383
+ 2
3384
+ ==
3385
+ x
3386
+ 4
3387
+ save
3388
+ p
3389
+ 21
3390
+ I
3391
+ -1
3392
+ I
3393
+ fb
3394
+ I
3395
+ 0
3396
+ I
3397
+ fc
3398
+ I
3399
+ 18
3400
+ I
3401
+ fd
3402
+ I
3403
+ 20
3404
+ I
3405
+ 105
3406
+ I
3407
+ 34
3408
+ I
3409
+ 107
3410
+ I
3411
+ 41
3412
+ I
3413
+ 109
3414
+ I
3415
+ 48
3416
+ I
3417
+ 10a
3418
+ I
3419
+ 52
3420
+ I
3421
+ 10e
3422
+ I
3423
+ 5d
3424
+ I
3425
+ 10f
3426
+ I
3427
+ 71
3428
+ I
3429
+ 112
3430
+ I
3431
+ 74
3432
+ x
3433
+ 94
3434
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
3435
+ p
3436
+ 7
3437
+ x
3438
+ 5
3439
+ match
3440
+ x
3441
+ 10
3442
+ attributes
3443
+ x
3444
+ 4
3445
+ args
3446
+ x
3447
+ 31
3448
+ protected_attributes_for_create
3449
+ x
3450
+ 33
3451
+ unprotected_attributes_for_create
3452
+ x
3453
+ 10
3454
+ conditions
3455
+ x
3456
+ 6
3457
+ record
3458
+ x
3459
+ 13
3460
+ find_with_ids
3461
+ M
3462
+ 1
3463
+ n
3464
+ n
3465
+ x
3466
+ 13
3467
+ find_with_ids
3468
+ i
3469
+ 153
3470
+ 94
3471
+ 9
3472
+ 14
3473
+ 5
3474
+ 48
3475
+ 0
3476
+ 56
3477
+ 1
3478
+ 50
3479
+ 2
3480
+ 0
3481
+ 11
3482
+ 8
3483
+ 15
3484
+ 1
3485
+ 15
3486
+ 20
3487
+ 0
3488
+ 49
3489
+ 3
3490
+ 0
3491
+ 45
3492
+ 4
3493
+ 5
3494
+ 49
3495
+ 6
3496
+ 1
3497
+ 19
3498
+ 1
3499
+ 15
3500
+ 20
3501
+ 1
3502
+ 13
3503
+ 9
3504
+ 44
3505
+ 15
3506
+ 20
3507
+ 0
3508
+ 49
3509
+ 3
3510
+ 0
3511
+ 49
3512
+ 7
3513
+ 0
3514
+ 9
3515
+ 54
3516
+ 20
3517
+ 0
3518
+ 49
3519
+ 3
3520
+ 0
3521
+ 11
3522
+ 8
3523
+ 55
3524
+ 1
3525
+ 15
3526
+ 20
3527
+ 0
3528
+ 49
3529
+ 8
3530
+ 0
3531
+ 49
3532
+ 9
3533
+ 0
3534
+ 49
3535
+ 10
3536
+ 0
3537
+ 19
3538
+ 0
3539
+ 15
3540
+ 20
3541
+ 0
3542
+ 49
3543
+ 11
3544
+ 0
3545
+ 13
3546
+ 78
3547
+ 12
3548
+ 49
3549
+ 12
3550
+ 1
3551
+ 9
3552
+ 108
3553
+ 15
3554
+ 5
3555
+ 45
3556
+ 13
3557
+ 14
3558
+ 7
3559
+ 15
3560
+ 39
3561
+ 16
3562
+ 49
3563
+ 17
3564
+ 0
3565
+ 47
3566
+ 101
3567
+ 18
3568
+ 7
3569
+ 19
3570
+ 63
3571
+ 3
3572
+ 47
3573
+ 49
3574
+ 20
3575
+ 2
3576
+ 8
3577
+ 152
3578
+ 13
3579
+ 79
3580
+ 12
3581
+ 49
3582
+ 12
3583
+ 1
3584
+ 9
3585
+ 144
3586
+ 15
3587
+ 5
3588
+ 20
3589
+ 0
3590
+ 49
3591
+ 3
3592
+ 0
3593
+ 47
3594
+ 49
3595
+ 21
3596
+ 1
3597
+ 19
3598
+ 2
3599
+ 15
3600
+ 20
3601
+ 1
3602
+ 9
3603
+ 140
3604
+ 20
3605
+ 2
3606
+ 35
3607
+ 1
3608
+ 8
3609
+ 142
3610
+ 20
3611
+ 2
3612
+ 8
3613
+ 152
3614
+ 15
3615
+ 5
3616
+ 20
3617
+ 0
3618
+ 47
3619
+ 49
3620
+ 22
3621
+ 1
3622
+ 11
3623
+ I
3624
+ 8
3625
+ I
3626
+ 3
3627
+ I
3628
+ 0
3629
+ I
3630
+ 0
3631
+ I
3632
+ 0
3633
+ p
3634
+ 23
3635
+ x
3636
+ 4
3637
+ to_a
3638
+ M
3639
+ 1
3640
+ p
3641
+ 2
3642
+ x
3643
+ 9
3644
+ for_block
3645
+ t
3646
+ n
3647
+ x
3648
+ 13
3649
+ find_with_ids
3650
+ i
3651
+ 11
3652
+ 59
3653
+ 36
3654
+ 19
3655
+ 0
3656
+ 15
3657
+ 20
3658
+ 0
3659
+ 36
3660
+ 61
3661
+ 0
3662
+ 11
3663
+ I
3664
+ 3
3665
+ I
3666
+ 1
3667
+ I
3668
+ 0
3669
+ I
3670
+ 0
3671
+ I
3672
+ 0
3673
+ p
3674
+ 0
3675
+ p
3676
+ 3
3677
+ I
3678
+ 0
3679
+ I
3680
+ 116
3681
+ I
3682
+ b
3683
+ x
3684
+ 94
3685
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
3686
+ p
3687
+ 1
3688
+ x
3689
+ 10
3690
+ block_args
3691
+ x
3692
+ 4
3693
+ find
3694
+ x
3695
+ 5
3696
+ first
3697
+ x
3698
+ 5
3699
+ Array
3700
+ n
3701
+ x
3702
+ 8
3703
+ kind_of?
3704
+ x
3705
+ 6
3706
+ empty?
3707
+ x
3708
+ 7
3709
+ flatten
3710
+ x
3711
+ 7
3712
+ compact
3713
+ x
3714
+ 4
3715
+ uniq
3716
+ x
3717
+ 4
3718
+ size
3719
+ x
3720
+ 3
3721
+ ===
3722
+ x
3723
+ 14
3724
+ RecordNotFound
3725
+ n
3726
+ s
3727
+ 14
3728
+ Couldn't find
3729
+ x
3730
+ 6
3731
+ @klass
3732
+ x
3733
+ 4
3734
+ name
3735
+ x
3736
+ 4
3737
+ to_s
3738
+ s
3739
+ 14
3740
+ without an ID
3741
+ x
3742
+ 5
3743
+ raise
3744
+ x
3745
+ 8
3746
+ find_one
3747
+ x
3748
+ 9
3749
+ find_some
3750
+ p
3751
+ 25
3752
+ I
3753
+ -1
3754
+ I
3755
+ 115
3756
+ I
3757
+ 0
3758
+ I
3759
+ 116
3760
+ I
3761
+ 10
3762
+ I
3763
+ 118
3764
+ I
3765
+ 1e
3766
+ I
3767
+ 119
3768
+ I
3769
+ 38
3770
+ I
3771
+ 11b
3772
+ I
3773
+ 46
3774
+ I
3775
+ 11d
3776
+ I
3777
+ 4b
3778
+ I
3779
+ 11e
3780
+ I
3781
+ 54
3782
+ I
3783
+ 11f
3784
+ I
3785
+ 6c
3786
+ I
3787
+ 120
3788
+ I
3789
+ 75
3790
+ I
3791
+ 121
3792
+ I
3793
+ 82
3794
+ I
3795
+ 122
3796
+ I
3797
+ 91
3798
+ I
3799
+ 124
3800
+ I
3801
+ 99
3802
+ x
3803
+ 94
3804
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
3805
+ p
3806
+ 3
3807
+ x
3808
+ 3
3809
+ ids
3810
+ x
3811
+ 13
3812
+ expects_array
3813
+ x
3814
+ 6
3815
+ result
3816
+ x
3817
+ 8
3818
+ find_one
3819
+ M
3820
+ 1
3821
+ n
3822
+ n
3823
+ x
3824
+ 8
3825
+ find_one
3826
+ i
3827
+ 114
3828
+ 45
3829
+ 0
3830
+ 1
3831
+ 43
3832
+ 2
3833
+ 20
3834
+ 0
3835
+ 86
3836
+ 3
3837
+ 9
3838
+ 20
3839
+ 20
3840
+ 0
3841
+ 49
3842
+ 4
3843
+ 0
3844
+ 19
3845
+ 0
3846
+ 8
3847
+ 21
3848
+ 1
3849
+ 15
3850
+ 5
3851
+ 5
3852
+ 48
3853
+ 5
3854
+ 20
3855
+ 0
3856
+ 49
3857
+ 6
3858
+ 1
3859
+ 47
3860
+ 49
3861
+ 7
3862
+ 1
3863
+ 49
3864
+ 8
3865
+ 0
3866
+ 19
3867
+ 1
3868
+ 15
3869
+ 20
3870
+ 1
3871
+ 9
3872
+ 48
3873
+ 1
3874
+ 8
3875
+ 110
3876
+ 5
3877
+ 48
3878
+ 9
3879
+ 49
3880
+ 10
3881
+ 0
3882
+ 19
3883
+ 2
3884
+ 15
3885
+ 20
3886
+ 2
3887
+ 9
3888
+ 76
3889
+ 7
3890
+ 11
3891
+ 20
3892
+ 2
3893
+ 47
3894
+ 101
3895
+ 12
3896
+ 7
3897
+ 13
3898
+ 63
3899
+ 3
3900
+ 19
3901
+ 2
3902
+ 8
3903
+ 77
3904
+ 1
3905
+ 15
3906
+ 5
3907
+ 45
3908
+ 14
3909
+ 15
3910
+ 7
3911
+ 16
3912
+ 39
3913
+ 17
3914
+ 49
3915
+ 18
3916
+ 0
3917
+ 47
3918
+ 101
3919
+ 12
3920
+ 7
3921
+ 19
3922
+ 20
3923
+ 0
3924
+ 47
3925
+ 101
3926
+ 12
3927
+ 20
3928
+ 2
3929
+ 47
3930
+ 101
3931
+ 12
3932
+ 63
3933
+ 5
3934
+ 47
3935
+ 49
3936
+ 20
3937
+ 2
3938
+ 15
3939
+ 20
3940
+ 1
3941
+ 11
3942
+ I
3943
+ a
3944
+ I
3945
+ 3
3946
+ I
3947
+ 1
3948
+ I
3949
+ 1
3950
+ n
3951
+ p
3952
+ 21
3953
+ x
3954
+ 12
3955
+ ActiveRecord
3956
+ n
3957
+ x
3958
+ 4
3959
+ Base
3960
+ x
3961
+ 3
3962
+ ===
3963
+ x
3964
+ 2
3965
+ id
3966
+ x
3967
+ 11
3968
+ primary_key
3969
+ x
3970
+ 2
3971
+ eq
3972
+ x
3973
+ 5
3974
+ where
3975
+ x
3976
+ 5
3977
+ first
3978
+ x
3979
+ 4
3980
+ arel
3981
+ x
3982
+ 9
3983
+ where_sql
3984
+ s
3985
+ 2
3986
+ [
3987
+ x
3988
+ 4
3989
+ to_s
3990
+ s
3991
+ 1
3992
+ ]
3993
+ x
3994
+ 14
3995
+ RecordNotFound
3996
+ n
3997
+ s
3998
+ 14
3999
+ Couldn't find
4000
+ x
4001
+ 6
4002
+ @klass
4003
+ x
4004
+ 4
4005
+ name
4006
+ s
4007
+ 9
4008
+ with ID=
4009
+ x
4010
+ 5
4011
+ raise
4012
+ p
4013
+ 17
4014
+ I
4015
+ -1
4016
+ I
4017
+ 128
4018
+ I
4019
+ 0
4020
+ I
4021
+ 129
4022
+ I
4023
+ 16
4024
+ I
4025
+ 12b
4026
+ I
4027
+ 29
4028
+ I
4029
+ 12d
4030
+ I
4031
+ 30
4032
+ I
4033
+ 12e
4034
+ I
4035
+ 39
4036
+ I
4037
+ 12f
4038
+ I
4039
+ 4e
4040
+ I
4041
+ 130
4042
+ I
4043
+ 6f
4044
+ I
4045
+ 133
4046
+ I
4047
+ 72
4048
+ x
4049
+ 94
4050
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
4051
+ p
4052
+ 3
4053
+ x
4054
+ 2
4055
+ id
4056
+ x
4057
+ 6
4058
+ record
4059
+ x
4060
+ 10
4061
+ conditions
4062
+ x
4063
+ 9
4064
+ find_some
4065
+ M
4066
+ 1
4067
+ n
4068
+ n
4069
+ x
4070
+ 9
4071
+ find_some
4072
+ i
4073
+ 221
4074
+ 5
4075
+ 5
4076
+ 48
4077
+ 0
4078
+ 20
4079
+ 0
4080
+ 49
4081
+ 1
4082
+ 1
4083
+ 47
4084
+ 49
4085
+ 2
4086
+ 1
4087
+ 49
4088
+ 3
4089
+ 0
4090
+ 19
4091
+ 1
4092
+ 15
4093
+ 39
4094
+ 4
4095
+ 13
4096
+ 9
4097
+ 34
4098
+ 15
4099
+ 20
4100
+ 0
4101
+ 49
4102
+ 5
4103
+ 0
4104
+ 39
4105
+ 4
4106
+ 85
4107
+ 6
4108
+ 9
4109
+ 40
4110
+ 39
4111
+ 4
4112
+ 8
4113
+ 45
4114
+ 20
4115
+ 0
4116
+ 49
4117
+ 5
4118
+ 0
4119
+ 19
4120
+ 2
4121
+ 15
4122
+ 39
4123
+ 7
4124
+ 13
4125
+ 9
4126
+ 67
4127
+ 15
4128
+ 20
4129
+ 0
4130
+ 49
4131
+ 5
4132
+ 0
4133
+ 39
4134
+ 7
4135
+ 82
4136
+ 8
4137
+ 20
4138
+ 2
4139
+ 84
4140
+ 9
4141
+ 9
4142
+ 82
4143
+ 20
4144
+ 0
4145
+ 49
4146
+ 5
4147
+ 0
4148
+ 39
4149
+ 7
4150
+ 82
4151
+ 8
4152
+ 19
4153
+ 2
4154
+ 8
4155
+ 83
4156
+ 1
4157
+ 15
4158
+ 20
4159
+ 1
4160
+ 49
4161
+ 5
4162
+ 0
4163
+ 20
4164
+ 2
4165
+ 83
4166
+ 10
4167
+ 9
4168
+ 99
4169
+ 20
4170
+ 1
4171
+ 8
4172
+ 220
4173
+ 5
4174
+ 48
4175
+ 11
4176
+ 49
4177
+ 12
4178
+ 0
4179
+ 56
4180
+ 13
4181
+ 50
4182
+ 14
4183
+ 0
4184
+ 7
4185
+ 15
4186
+ 64
4187
+ 49
4188
+ 16
4189
+ 1
4190
+ 19
4191
+ 3
4192
+ 15
4193
+ 20
4194
+ 3
4195
+ 49
4196
+ 17
4197
+ 0
4198
+ 9
4199
+ 141
4200
+ 7
4201
+ 18
4202
+ 20
4203
+ 3
4204
+ 47
4205
+ 101
4206
+ 19
4207
+ 7
4208
+ 20
4209
+ 63
4210
+ 3
4211
+ 19
4212
+ 3
4213
+ 8
4214
+ 142
4215
+ 1
4216
+ 15
4217
+ 7
4218
+ 21
4219
+ 39
4220
+ 22
4221
+ 49
4222
+ 23
4223
+ 0
4224
+ 49
4225
+ 24
4226
+ 0
4227
+ 47
4228
+ 101
4229
+ 19
4230
+ 7
4231
+ 25
4232
+ 63
4233
+ 3
4234
+ 19
4235
+ 4
4236
+ 15
4237
+ 20
4238
+ 4
4239
+ 7
4240
+ 26
4241
+ 20
4242
+ 0
4243
+ 7
4244
+ 15
4245
+ 64
4246
+ 49
4247
+ 16
4248
+ 1
4249
+ 47
4250
+ 101
4251
+ 19
4252
+ 7
4253
+ 27
4254
+ 20
4255
+ 3
4256
+ 47
4257
+ 101
4258
+ 19
4259
+ 7
4260
+ 28
4261
+ 20
4262
+ 1
4263
+ 49
4264
+ 5
4265
+ 0
4266
+ 47
4267
+ 101
4268
+ 19
4269
+ 7
4270
+ 29
4271
+ 20
4272
+ 2
4273
+ 47
4274
+ 101
4275
+ 19
4276
+ 7
4277
+ 27
4278
+ 63
4279
+ 9
4280
+ 49
4281
+ 30
4282
+ 1
4283
+ 15
4284
+ 5
4285
+ 45
4286
+ 31
4287
+ 32
4288
+ 20
4289
+ 4
4290
+ 47
4291
+ 49
4292
+ 33
4293
+ 2
4294
+ 11
4295
+ I
4296
+ f
4297
+ I
4298
+ 5
4299
+ I
4300
+ 1
4301
+ I
4302
+ 1
4303
+ n
4304
+ p
4305
+ 34
4306
+ x
4307
+ 11
4308
+ primary_key
4309
+ x
4310
+ 2
4311
+ in
4312
+ x
4313
+ 5
4314
+ where
4315
+ x
4316
+ 3
4317
+ all
4318
+ x
4319
+ 12
4320
+ @limit_value
4321
+ x
4322
+ 4
4323
+ size
4324
+ x
4325
+ 1
4326
+ >
4327
+ x
4328
+ 13
4329
+ @offset_value
4330
+ x
4331
+ 1
4332
+ -
4333
+ x
4334
+ 1
4335
+ <
4336
+ x
4337
+ 2
4338
+ ==
4339
+ x
4340
+ 4
4341
+ arel
4342
+ x
4343
+ 6
4344
+ wheres
4345
+ M
4346
+ 1
4347
+ p
4348
+ 2
4349
+ x
4350
+ 9
4351
+ for_block
4352
+ t
4353
+ n
4354
+ x
4355
+ 9
4356
+ find_some
4357
+ i
4358
+ 10
4359
+ 57
4360
+ 19
4361
+ 0
4362
+ 15
4363
+ 20
4364
+ 0
4365
+ 49
4366
+ 0
4367
+ 0
4368
+ 11
4369
+ I
4370
+ 3
4371
+ I
4372
+ 1
4373
+ I
4374
+ 1
4375
+ I
4376
+ 1
4377
+ n
4378
+ p
4379
+ 1
4380
+ x
4381
+ 5
4382
+ value
4383
+ p
4384
+ 3
4385
+ I
4386
+ 0
4387
+ I
4388
+ 148
4389
+ I
4390
+ a
4391
+ x
4392
+ 94
4393
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
4394
+ p
4395
+ 1
4396
+ x
4397
+ 1
4398
+ x
4399
+ x
4400
+ 3
4401
+ map
4402
+ s
4403
+ 2
4404
+ ,
4405
+ x
4406
+ 4
4407
+ join
4408
+ x
4409
+ 8
4410
+ present?
4411
+ s
4412
+ 8
4413
+ [WHERE
4414
+ x
4415
+ 4
4416
+ to_s
4417
+ s
4418
+ 1
4419
+ ]
4420
+ s
4421
+ 18
4422
+ Couldn't find all
4423
+ x
4424
+ 6
4425
+ @klass
4426
+ x
4427
+ 4
4428
+ name
4429
+ x
4430
+ 9
4431
+ pluralize
4432
+ s
4433
+ 10
4434
+ with IDs
4435
+ s
4436
+ 1
4437
+ (
4438
+ s
4439
+ 1
4440
+ )
4441
+ s
4442
+ 8
4443
+ (found
4444
+ s
4445
+ 30
4446
+ results, but was looking for
4447
+ x
4448
+ 2
4449
+ <<
4450
+ x
4451
+ 14
4452
+ RecordNotFound
4453
+ n
4454
+ x
4455
+ 5
4456
+ raise
4457
+ p
4458
+ 33
4459
+ I
4460
+ -1
4461
+ I
4462
+ 136
4463
+ I
4464
+ 0
4465
+ I
4466
+ 137
4467
+ I
4468
+ 13
4469
+ I
4470
+ 13a
4471
+ I
4472
+ 24
4473
+ I
4474
+ 13b
4475
+ I
4476
+ 28
4477
+ I
4478
+ 13d
4479
+ I
4480
+ 2d
4481
+ I
4482
+ 139
4483
+ I
4484
+ 30
4485
+ I
4486
+ 141
4487
+ I
4488
+ 45
4489
+ I
4490
+ 142
4491
+ I
4492
+ 52
4493
+ I
4494
+ 141
4495
+ I
4496
+ 54
4497
+ I
4498
+ 145
4499
+ I
4500
+ 5f
4501
+ I
4502
+ 146
4503
+ I
4504
+ 63
4505
+ I
4506
+ 148
4507
+ I
4508
+ 77
4509
+ I
4510
+ 149
4511
+ I
4512
+ 8f
4513
+ I
4514
+ 14b
4515
+ I
4516
+ a3
4517
+ I
4518
+ 14c
4519
+ I
4520
+ d2
4521
+ I
4522
+ 14d
4523
+ I
4524
+ dd
4525
+ x
4526
+ 94
4527
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
4528
+ p
4529
+ 5
4530
+ x
4531
+ 3
4532
+ ids
4533
+ x
4534
+ 6
4535
+ result
4536
+ x
4537
+ 13
4538
+ expected_size
4539
+ x
4540
+ 10
4541
+ conditions
4542
+ x
4543
+ 5
4544
+ error
4545
+ x
4546
+ 10
4547
+ find_first
4548
+ M
4549
+ 1
4550
+ n
4551
+ n
4552
+ x
4553
+ 10
4554
+ find_first
4555
+ i
4556
+ 36
4557
+ 5
4558
+ 47
4559
+ 49
4560
+ 0
4561
+ 0
4562
+ 9
4563
+ 14
4564
+ 39
4565
+ 1
4566
+ 49
4567
+ 2
4568
+ 0
4569
+ 8
4570
+ 35
4571
+ 39
4572
+ 3
4573
+ 13
4574
+ 10
4575
+ 35
4576
+ 15
4577
+ 5
4578
+ 79
4579
+ 47
4580
+ 49
4581
+ 4
4582
+ 1
4583
+ 49
4584
+ 5
4585
+ 0
4586
+ 78
4587
+ 49
4588
+ 6
4589
+ 1
4590
+ 38
4591
+ 3
4592
+ 11
4593
+ I
4594
+ 2
4595
+ I
4596
+ 0
4597
+ I
4598
+ 0
4599
+ I
4600
+ 0
4601
+ n
4602
+ p
4603
+ 7
4604
+ x
4605
+ 7
4606
+ loaded?
4607
+ x
4608
+ 8
4609
+ @records
4610
+ x
4611
+ 5
4612
+ first
4613
+ x
4614
+ 6
4615
+ @first
4616
+ x
4617
+ 5
4618
+ limit
4619
+ x
4620
+ 4
4621
+ to_a
4622
+ x
4623
+ 2
4624
+ []
4625
+ p
4626
+ 9
4627
+ I
4628
+ -1
4629
+ I
4630
+ 151
4631
+ I
4632
+ 0
4633
+ I
4634
+ 152
4635
+ I
4636
+ 7
4637
+ I
4638
+ 153
4639
+ I
4640
+ e
4641
+ I
4642
+ 155
4643
+ I
4644
+ 24
4645
+ x
4646
+ 94
4647
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
4648
+ p
4649
+ 0
4650
+ x
4651
+ 9
4652
+ find_last
4653
+ M
4654
+ 1
4655
+ n
4656
+ n
4657
+ x
4658
+ 9
4659
+ find_last
4660
+ i
4661
+ 37
4662
+ 5
4663
+ 47
4664
+ 49
4665
+ 0
4666
+ 0
4667
+ 9
4668
+ 14
4669
+ 39
4670
+ 1
4671
+ 49
4672
+ 2
4673
+ 0
4674
+ 8
4675
+ 36
4676
+ 39
4677
+ 3
4678
+ 13
4679
+ 10
4680
+ 36
4681
+ 15
4682
+ 5
4683
+ 48
4684
+ 4
4685
+ 79
4686
+ 49
4687
+ 5
4688
+ 1
4689
+ 49
4690
+ 6
4691
+ 0
4692
+ 78
4693
+ 49
4694
+ 7
4695
+ 1
4696
+ 38
4697
+ 3
4698
+ 11
4699
+ I
4700
+ 2
4701
+ I
4702
+ 0
4703
+ I
4704
+ 0
4705
+ I
4706
+ 0
4707
+ n
4708
+ p
4709
+ 8
4710
+ x
4711
+ 7
4712
+ loaded?
4713
+ x
4714
+ 8
4715
+ @records
4716
+ x
4717
+ 4
4718
+ last
4719
+ x
4720
+ 5
4721
+ @last
4722
+ x
4723
+ 13
4724
+ reverse_order
4725
+ x
4726
+ 5
4727
+ limit
4728
+ x
4729
+ 4
4730
+ to_a
4731
+ x
4732
+ 2
4733
+ []
4734
+ p
4735
+ 9
4736
+ I
4737
+ -1
4738
+ I
4739
+ 159
4740
+ I
4741
+ 0
4742
+ I
4743
+ 15a
4744
+ I
4745
+ 7
4746
+ I
4747
+ 15b
4748
+ I
4749
+ e
4750
+ I
4751
+ 15d
4752
+ I
4753
+ 25
4754
+ x
4755
+ 94
4756
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
4757
+ p
4758
+ 0
4759
+ x
4760
+ 14
4761
+ column_aliases
4762
+ M
4763
+ 1
4764
+ n
4765
+ n
4766
+ x
4767
+ 14
4768
+ column_aliases
4769
+ i
4770
+ 20
4771
+ 20
4772
+ 0
4773
+ 49
4774
+ 0
4775
+ 0
4776
+ 56
4777
+ 1
4778
+ 50
4779
+ 2
4780
+ 0
4781
+ 49
4782
+ 3
4783
+ 0
4784
+ 7
4785
+ 4
4786
+ 64
4787
+ 49
4788
+ 5
4789
+ 1
4790
+ 11
4791
+ I
4792
+ 3
4793
+ I
4794
+ 1
4795
+ I
4796
+ 1
4797
+ I
4798
+ 1
4799
+ n
4800
+ p
4801
+ 6
4802
+ x
4803
+ 5
4804
+ joins
4805
+ M
4806
+ 1
4807
+ p
4808
+ 2
4809
+ x
4810
+ 9
4811
+ for_block
4812
+ t
4813
+ n
4814
+ x
4815
+ 14
4816
+ column_aliases
4817
+ i
4818
+ 15
4819
+ 57
4820
+ 19
4821
+ 0
4822
+ 15
4823
+ 20
4824
+ 0
4825
+ 49
4826
+ 0
4827
+ 0
4828
+ 56
4829
+ 1
4830
+ 50
4831
+ 2
4832
+ 0
4833
+ 11
4834
+ I
4835
+ 4
4836
+ I
4837
+ 1
4838
+ I
4839
+ 1
4840
+ I
4841
+ 1
4842
+ n
4843
+ p
4844
+ 3
4845
+ x
4846
+ 23
4847
+ column_names_with_alias
4848
+ M
4849
+ 1
4850
+ p
4851
+ 2
4852
+ x
4853
+ 9
4854
+ for_block
4855
+ t
4856
+ n
4857
+ x
4858
+ 14
4859
+ column_aliases
4860
+ i
4861
+ 48
4862
+ 58
4863
+ 37
4864
+ 19
4865
+ 0
4866
+ 15
4867
+ 37
4868
+ 19
4869
+ 1
4870
+ 15
4871
+ 15
4872
+ 5
4873
+ 48
4874
+ 0
4875
+ 21
4876
+ 1
4877
+ 0
4878
+ 49
4879
+ 1
4880
+ 0
4881
+ 49
4882
+ 2
4883
+ 1
4884
+ 47
4885
+ 101
4886
+ 3
4887
+ 7
4888
+ 4
4889
+ 5
4890
+ 48
4891
+ 0
4892
+ 20
4893
+ 0
4894
+ 49
4895
+ 5
4896
+ 1
4897
+ 47
4898
+ 101
4899
+ 3
4900
+ 7
4901
+ 6
4902
+ 20
4903
+ 1
4904
+ 47
4905
+ 101
4906
+ 3
4907
+ 63
4908
+ 5
4909
+ 11
4910
+ I
4911
+ 8
4912
+ I
4913
+ 2
4914
+ I
4915
+ 2
4916
+ I
4917
+ 2
4918
+ n
4919
+ p
4920
+ 7
4921
+ x
4922
+ 10
4923
+ connection
4924
+ x
4925
+ 18
4926
+ aliased_table_name
4927
+ x
4928
+ 16
4929
+ quote_table_name
4930
+ x
4931
+ 4
4932
+ to_s
4933
+ s
4934
+ 1
4935
+ .
4936
+ x
4937
+ 17
4938
+ quote_column_name
4939
+ s
4940
+ 4
4941
+ AS
4942
+ p
4943
+ 5
4944
+ I
4945
+ 0
4946
+ I
4947
+ 162
4948
+ I
4949
+ a
4950
+ I
4951
+ 163
4952
+ I
4953
+ 30
4954
+ x
4955
+ 94
4956
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
4957
+ p
4958
+ 2
4959
+ x
4960
+ 11
4961
+ column_name
4962
+ x
4963
+ 12
4964
+ aliased_name
4965
+ x
4966
+ 7
4967
+ collect
4968
+ p
4969
+ 3
4970
+ I
4971
+ 0
4972
+ I
4973
+ 162
4974
+ I
4975
+ f
4976
+ x
4977
+ 94
4978
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
4979
+ p
4980
+ 1
4981
+ x
4982
+ 4
4983
+ join
4984
+ x
4985
+ 7
4986
+ collect
4987
+ x
4988
+ 7
4989
+ flatten
4990
+ s
4991
+ 2
4992
+ ,
4993
+ x
4994
+ 4
4995
+ join
4996
+ p
4997
+ 9
4998
+ I
4999
+ -1
5000
+ I
5001
+ 161
5002
+ I
5003
+ 0
5004
+ I
5005
+ 162
5006
+ I
5007
+ d
5008
+ I
5009
+ 163
5010
+ I
5011
+ 10
5012
+ I
5013
+ 162
5014
+ I
5015
+ 14
5016
+ x
5017
+ 94
5018
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
5019
+ p
5020
+ 1
5021
+ x
5022
+ 15
5023
+ join_dependency
5024
+ x
5025
+ 28
5026
+ using_limitable_reflections?
5027
+ M
5028
+ 1
5029
+ n
5030
+ n
5031
+ x
5032
+ 28
5033
+ using_limitable_reflections?
5034
+ i
5035
+ 8
5036
+ 20
5037
+ 0
5038
+ 56
5039
+ 0
5040
+ 50
5041
+ 1
5042
+ 0
5043
+ 11
5044
+ I
5045
+ 3
5046
+ I
5047
+ 1
5048
+ I
5049
+ 1
5050
+ I
5051
+ 1
5052
+ n
5053
+ p
5054
+ 2
5055
+ M
5056
+ 1
5057
+ p
5058
+ 2
5059
+ x
5060
+ 9
5061
+ for_block
5062
+ t
5063
+ n
5064
+ x
5065
+ 28
5066
+ using_limitable_reflections?
5067
+ i
5068
+ 10
5069
+ 57
5070
+ 19
5071
+ 0
5072
+ 15
5073
+ 20
5074
+ 0
5075
+ 49
5076
+ 0
5077
+ 0
5078
+ 11
5079
+ I
5080
+ 3
5081
+ I
5082
+ 1
5083
+ I
5084
+ 1
5085
+ I
5086
+ 1
5087
+ n
5088
+ p
5089
+ 1
5090
+ x
5091
+ 11
5092
+ collection?
5093
+ p
5094
+ 3
5095
+ I
5096
+ 0
5097
+ I
5098
+ 167
5099
+ I
5100
+ a
5101
+ x
5102
+ 94
5103
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
5104
+ p
5105
+ 1
5106
+ x
5107
+ 1
5108
+ r
5109
+ x
5110
+ 5
5111
+ none?
5112
+ p
5113
+ 5
5114
+ I
5115
+ -1
5116
+ I
5117
+ 166
5118
+ I
5119
+ 0
5120
+ I
5121
+ 167
5122
+ I
5123
+ 8
5124
+ x
5125
+ 94
5126
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
5127
+ p
5128
+ 1
5129
+ x
5130
+ 11
5131
+ reflections
5132
+ p
5133
+ 43
5134
+ I
5135
+ 2
5136
+ I
5137
+ 5f
5138
+ I
5139
+ 10
5140
+ I
5141
+ 72
5142
+ I
5143
+ 1e
5144
+ I
5145
+ 80
5146
+ I
5147
+ 2c
5148
+ I
5149
+ 8e
5150
+ I
5151
+ 3a
5152
+ I
5153
+ ab
5154
+ I
5155
+ 48
5156
+ I
5157
+ bc
5158
+ I
5159
+ 4c
5160
+ I
5161
+ be
5162
+ I
5163
+ 5a
5164
+ I
5165
+ c6
5166
+ I
5167
+ 68
5168
+ I
5169
+ cb
5170
+ I
5171
+ 76
5172
+ I
5173
+ d2
5174
+ I
5175
+ 84
5176
+ I
5177
+ d7
5178
+ I
5179
+ 92
5180
+ I
5181
+ e8
5182
+ I
5183
+ a0
5184
+ I
5185
+ f0
5186
+ I
5187
+ ae
5188
+ I
5189
+ fb
5190
+ I
5191
+ bc
5192
+ I
5193
+ 115
5194
+ I
5195
+ ca
5196
+ I
5197
+ 128
5198
+ I
5199
+ d8
5200
+ I
5201
+ 136
5202
+ I
5203
+ e6
5204
+ I
5205
+ 151
5206
+ I
5207
+ f4
5208
+ I
5209
+ 159
5210
+ I
5211
+ 102
5212
+ I
5213
+ 161
5214
+ I
5215
+ 110
5216
+ I
5217
+ 166
5218
+ I
5219
+ 11e
5220
+ x
5221
+ 94
5222
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
5223
+ p
5224
+ 0
5225
+ x
5226
+ 13
5227
+ attach_method
5228
+ p
5229
+ 3
5230
+ I
5231
+ 2
5232
+ I
5233
+ 5
5234
+ I
5235
+ 1c
5236
+ x
5237
+ 94
5238
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
5239
+ p
5240
+ 0
5241
+ x
5242
+ 13
5243
+ attach_method
5244
+ p
5245
+ 7
5246
+ I
5247
+ 0
5248
+ I
5249
+ 1
5250
+ I
5251
+ 9
5252
+ I
5253
+ 2
5254
+ I
5255
+ 12
5256
+ I
5257
+ 4
5258
+ I
5259
+ 2e
5260
+ x
5261
+ 94
5262
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/relation/finder_methods.rb
5263
+ p
5264
+ 0