composite_primary_keys 11.0.0.rc2 → 11.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (162) hide show
  1. checksums.yaml +4 -4
  2. data/History.rdoc +774 -763
  3. data/Rakefile +37 -37
  4. data/lib/composite_primary_keys.rb +120 -122
  5. data/lib/composite_primary_keys/arel/sqlserver.rb +37 -37
  6. data/lib/composite_primary_keys/arel/to_sql.rb +32 -32
  7. data/lib/composite_primary_keys/associations/association.rb +23 -23
  8. data/lib/composite_primary_keys/associations/association_scope.rb +68 -68
  9. data/lib/composite_primary_keys/associations/collection_association.rb +31 -31
  10. data/lib/composite_primary_keys/associations/foreign_association.rb +15 -15
  11. data/lib/composite_primary_keys/associations/has_many_association.rb +34 -34
  12. data/lib/composite_primary_keys/associations/join_dependency.rb +102 -102
  13. data/lib/composite_primary_keys/associations/preloader/association.rb +117 -117
  14. data/lib/composite_primary_keys/attribute_methods.rb +9 -9
  15. data/lib/composite_primary_keys/attribute_methods/read.rb +27 -27
  16. data/lib/composite_primary_keys/attribute_methods/write.rb +44 -44
  17. data/lib/composite_primary_keys/autosave_association.rb +32 -32
  18. data/lib/composite_primary_keys/base.rb +130 -130
  19. data/lib/composite_primary_keys/composite_arrays.rb +51 -51
  20. data/lib/composite_primary_keys/composite_predicates.rb +69 -69
  21. data/lib/composite_primary_keys/composite_relation.rb +29 -29
  22. data/lib/composite_primary_keys/connection_adapters/abstract_adapter.rb +10 -10
  23. data/lib/composite_primary_keys/connection_adapters/abstract_mysql_adapter.rb +29 -29
  24. data/lib/composite_primary_keys/connection_adapters/postgresql/database_statements.rb +26 -26
  25. data/lib/composite_primary_keys/connection_adapters/sqlite3_adapter.rb +22 -22
  26. data/lib/composite_primary_keys/core.rb +54 -54
  27. data/lib/composite_primary_keys/counter_cache.rb +28 -28
  28. data/lib/composite_primary_keys/fixtures.rb +26 -26
  29. data/lib/composite_primary_keys/persistence.rb +120 -112
  30. data/lib/composite_primary_keys/reflection.rb +20 -20
  31. data/lib/composite_primary_keys/relation.rb +88 -88
  32. data/lib/composite_primary_keys/relation/calculations.rb +79 -79
  33. data/lib/composite_primary_keys/relation/finder_methods.rb +229 -229
  34. data/lib/composite_primary_keys/relation/predicate_builder/association_query_value.rb +20 -20
  35. data/lib/composite_primary_keys/relation/query_methods.rb +42 -42
  36. data/lib/composite_primary_keys/relation/where_clause.rb +24 -24
  37. data/lib/composite_primary_keys/sanitization.rb +42 -42
  38. data/lib/composite_primary_keys/validations/uniqueness.rb +32 -32
  39. data/lib/composite_primary_keys/version.rb +8 -8
  40. data/scripts/console.rb +48 -48
  41. data/scripts/txt2html +76 -76
  42. data/scripts/txt2js +65 -65
  43. data/tasks/databases/mysql.rake +40 -40
  44. data/tasks/databases/oracle.rake +41 -41
  45. data/tasks/databases/postgresql.rake +38 -38
  46. data/tasks/databases/sqlite.rake +25 -25
  47. data/tasks/databases/sqlserver.rake +43 -43
  48. data/tasks/website.rake +18 -18
  49. data/test/README_tests.rdoc +56 -56
  50. data/test/abstract_unit.rb +120 -120
  51. data/test/connections/connection_spec.rb +27 -27
  52. data/test/connections/databases.ci.yml +16 -16
  53. data/test/connections/databases.example.yml +40 -40
  54. data/test/connections/databases.yml +40 -40
  55. data/test/db_test.rb +52 -52
  56. data/test/fixtures/article.rb +6 -6
  57. data/test/fixtures/articles.yml +6 -6
  58. data/test/fixtures/capitol.rb +3 -3
  59. data/test/fixtures/capitols.yml +16 -16
  60. data/test/fixtures/comment.rb +7 -7
  61. data/test/fixtures/comments.yml +15 -15
  62. data/test/fixtures/db_definitions/db2-create-tables.sql +126 -126
  63. data/test/fixtures/db_definitions/db2-drop-tables.sql +18 -18
  64. data/test/fixtures/db_definitions/mysql.sql +226 -226
  65. data/test/fixtures/db_definitions/oracle.drop.sql +49 -49
  66. data/test/fixtures/db_definitions/oracle.sql +246 -246
  67. data/test/fixtures/db_definitions/postgresql.sql +229 -229
  68. data/test/fixtures/db_definitions/sqlite.sql +214 -214
  69. data/test/fixtures/db_definitions/sqlserver.sql +211 -211
  70. data/test/fixtures/department.rb +5 -5
  71. data/test/fixtures/departments.yml +15 -15
  72. data/test/fixtures/dorm.rb +2 -2
  73. data/test/fixtures/dorms.yml +4 -4
  74. data/test/fixtures/employee.rb +10 -10
  75. data/test/fixtures/employees.yml +18 -18
  76. data/test/fixtures/group.rb +2 -2
  77. data/test/fixtures/groups.yml +6 -6
  78. data/test/fixtures/hack.rb +4 -4
  79. data/test/fixtures/hacks.yml +2 -2
  80. data/test/fixtures/membership.rb +6 -6
  81. data/test/fixtures/membership_status.rb +2 -2
  82. data/test/fixtures/membership_statuses.yml +16 -16
  83. data/test/fixtures/memberships.yml +10 -10
  84. data/test/fixtures/pk_called_id.rb +5 -5
  85. data/test/fixtures/pk_called_ids.yml +11 -11
  86. data/test/fixtures/product.rb +9 -9
  87. data/test/fixtures/product_tariff.rb +5 -5
  88. data/test/fixtures/product_tariffs.yml +14 -14
  89. data/test/fixtures/products.yml +11 -11
  90. data/test/fixtures/reading.rb +4 -4
  91. data/test/fixtures/readings.yml +10 -10
  92. data/test/fixtures/reference_code.rb +7 -7
  93. data/test/fixtures/reference_code_using_composite_key_alias.rb +8 -8
  94. data/test/fixtures/reference_code_using_simple_key_alias.rb +8 -8
  95. data/test/fixtures/reference_codes.yml +28 -28
  96. data/test/fixtures/reference_type.rb +12 -12
  97. data/test/fixtures/reference_types.yml +9 -9
  98. data/test/fixtures/restaurant.rb +9 -9
  99. data/test/fixtures/restaurants.yml +14 -14
  100. data/test/fixtures/restaurants_suburb.rb +2 -2
  101. data/test/fixtures/restaurants_suburbs.yml +10 -10
  102. data/test/fixtures/room.rb +11 -11
  103. data/test/fixtures/room_assignment.rb +13 -13
  104. data/test/fixtures/room_assignments.yml +24 -24
  105. data/test/fixtures/room_attribute.rb +2 -2
  106. data/test/fixtures/room_attribute_assignment.rb +4 -4
  107. data/test/fixtures/room_attribute_assignments.yml +4 -4
  108. data/test/fixtures/room_attributes.yml +2 -2
  109. data/test/fixtures/rooms.yml +12 -12
  110. data/test/fixtures/salary.rb +5 -5
  111. data/test/fixtures/seat.rb +5 -5
  112. data/test/fixtures/seats.yml +8 -8
  113. data/test/fixtures/street.rb +2 -2
  114. data/test/fixtures/streets.yml +16 -16
  115. data/test/fixtures/student.rb +3 -3
  116. data/test/fixtures/students.yml +15 -15
  117. data/test/fixtures/suburb.rb +5 -5
  118. data/test/fixtures/suburbs.yml +14 -14
  119. data/test/fixtures/tariff.rb +5 -5
  120. data/test/fixtures/tariffs.yml +14 -14
  121. data/test/fixtures/topic.rb +5 -5
  122. data/test/fixtures/topic_source.rb +6 -6
  123. data/test/fixtures/topic_sources.yml +3 -3
  124. data/test/fixtures/topics.yml +8 -8
  125. data/test/fixtures/user.rb +10 -10
  126. data/test/fixtures/users.yml +10 -10
  127. data/test/plugins/pagination.rb +405 -405
  128. data/test/plugins/pagination_helper.rb +135 -135
  129. data/test/setup.rb +50 -50
  130. data/test/test_aliases.rb +18 -18
  131. data/test/test_associations.rb +345 -345
  132. data/test/test_attribute_methods.rb +63 -63
  133. data/test/test_attributes.rb +60 -60
  134. data/test/test_calculations.rb +42 -42
  135. data/test/test_callbacks.rb +99 -99
  136. data/test/test_composite_arrays.rb +24 -24
  137. data/test/test_counter_cache.rb +30 -30
  138. data/test/test_create.rb +164 -164
  139. data/test/test_delete.rb +167 -167
  140. data/test/test_dumpable.rb +15 -15
  141. data/test/test_dup.rb +37 -37
  142. data/test/test_enum.rb +21 -21
  143. data/test/test_equal.rb +26 -26
  144. data/test/test_exists.rb +39 -39
  145. data/test/test_find.rb +137 -137
  146. data/test/test_habtm.rb +141 -141
  147. data/test/test_ids.rb +113 -113
  148. data/test/test_miscellaneous.rb +32 -32
  149. data/test/test_nested_attributes.rb +124 -124
  150. data/test/test_optimistic.rb +18 -18
  151. data/test/test_pagination.rb +35 -35
  152. data/test/test_polymorphic.rb +27 -27
  153. data/test/test_predicates.rb +59 -59
  154. data/test/test_preload.rb +94 -94
  155. data/test/test_santiago.rb +23 -23
  156. data/test/test_suite.rb +34 -34
  157. data/test/test_touch.rb +23 -23
  158. data/test/test_tutorial_example.rb +25 -25
  159. data/test/test_update.rb +76 -76
  160. data/test/test_validations.rb +13 -13
  161. metadata +32 -33
  162. data/lib/composite_primary_keys/locking/optimistic.rb +0 -56
@@ -1,112 +1,120 @@
1
- module ActiveRecord
2
- module Persistence
3
- module ClassMethods
4
- def delete(id_or_array)
5
- # CPK
6
- if self.composite?
7
- id_or_array = if id_or_array.is_a?(CompositePrimaryKeys::CompositeKeys)
8
- [id_or_array]
9
- else
10
- Array(id_or_array)
11
- end
12
-
13
- id_or_array.each do |id|
14
- # Is the passed in id actually a record?
15
- id = id.kind_of?(::ActiveRecord::Base) ? id.id : id
16
- where(cpk_id_predicate(self.arel_table, self.primary_key, id)).delete_all
17
- end
18
- else
19
- where(primary_key => id_or_array).delete_all
20
- end
21
- end
22
-
23
- def _update_record(values, id, id_was) # :nodoc:
24
- # # CPK
25
- # if self.composite?
26
- # relation = @klass.unscoped.where(cpk_id_predicate(@klass.arel_table, @klass.primary_key, id_was || id))
27
- # else
28
- # relation = scope.where(@klass.primary_key => (id_was || id))
29
- # end
30
-
31
- # CPK
32
- # bind = predicate_builder.build_bind_attribute(primary_key, id_was || id)
33
- # um = arel_table.where(
34
- # arel_attribute(primary_key).eq(bind)
35
- # ).compile_update(_substitute_values(values), primary_key)
36
-
37
- # CPK
38
- if self.composite?
39
- predicate = cpk_id_predicate(arel_table, primary_key, id_was || id)
40
- um = arel_table.where(predicate).compile_update(_substitute_values(values), primary_key)
41
- else
42
- bind = predicate_builder.build_bind_attribute(primary_key, id_was || id)
43
- um = arel_table.where(
44
- arel_attribute(primary_key).eq(bind)
45
- ).compile_update(_substitute_values(values), primary_key)
46
- end
47
-
48
- connection.update(um, "#{self} Update")
49
- end
50
- end
51
-
52
- def _relation_for_itself
53
- # CPK
54
- if self.composite?
55
- relation = self.class.unscoped
56
-
57
- Array(self.class.primary_key).each do |key|
58
- column = self.class.arel_table[key]
59
- value = self[key]
60
- relation = relation.where(column.eq(value))
61
- end
62
-
63
- relation
64
- else
65
- self.class.unscoped.where(self.class.primary_key => id)
66
- end
67
- end
68
-
69
- def touch(*names, time: nil)
70
- raise ActiveRecordError, "cannot touch on a new record object" unless persisted?
71
-
72
- time ||= current_time_from_proper_timezone
73
- attributes = timestamp_attributes_for_update_in_model
74
- attributes.concat(names)
75
-
76
- unless attributes.empty?
77
- changes = {}
78
-
79
- attributes.each do |column|
80
- column = column.to_s
81
- changes[column] = write_attribute(column, time)
82
- end
83
-
84
- clear_attribute_changes(changes.keys)
85
- primary_key = self.class.primary_key
86
- scope = self.class.unscoped.where(primary_key => _read_attribute(primary_key))
87
-
88
- if locking_enabled?
89
- locking_column = self.class.locking_column
90
- scope = scope.where(locking_column => _read_attribute(locking_column))
91
- changes[locking_column] = increment_lock
92
- end
93
-
94
- # CPK
95
- if composite?
96
- primary_key_predicate = self.class.unscoped.cpk_id_predicate(self.class.arel_table, Array(primary_key), Array(id))
97
- scope = self.class.unscoped.where(primary_key_predicate)
98
- end
99
-
100
- result = scope.update_all(changes) == 1
101
-
102
- if !result && locking_enabled?
103
- raise ActiveRecord::StaleObjectError.new(self, "touch")
104
- end
105
-
106
- result
107
- else
108
- true
109
- end
110
- end
111
- end
112
- end
1
+ module ActiveRecord
2
+ module Persistence
3
+ module ClassMethods
4
+ def delete(id_or_array)
5
+ # CPK
6
+ if self.composite?
7
+ id_or_array = if id_or_array.is_a?(CompositePrimaryKeys::CompositeKeys)
8
+ [id_or_array]
9
+ else
10
+ Array(id_or_array)
11
+ end
12
+
13
+ id_or_array.each do |id|
14
+ # Is the passed in id actually a record?
15
+ id = id.kind_of?(::ActiveRecord::Base) ? id.id : id
16
+ where(cpk_id_predicate(self.arel_table, self.primary_key, id)).delete_all
17
+ end
18
+ else
19
+ where(primary_key => id_or_array).delete_all
20
+ end
21
+ end
22
+
23
+ def _update_record(values, constraints) # :nodoc:
24
+ # CPK
25
+ if self.composite? && constraints[primary_key]
26
+ primary_key_values = constraints.delete(primary_key)
27
+ primary_key.each_with_index do |key, i|
28
+ constraints[key] = primary_key_values[i]
29
+ end
30
+ end
31
+
32
+ constraints = _substitute_values(constraints).map { |attr, bind| attr.eq(bind) }
33
+
34
+ um = arel_table.where(
35
+ constraints.reduce(&:and)
36
+ ).compile_update(_substitute_values(values), primary_key)
37
+
38
+ connection.update(um, "#{self} Update")
39
+ end
40
+
41
+ def _delete_record(constraints) # :nodoc:
42
+ # CPK
43
+ if self.composite? && constraints[primary_key]
44
+ primary_key_values = constraints.delete(primary_key)
45
+ primary_key.each_with_index do |key, i|
46
+ constraints[key] = primary_key_values[i]
47
+ end
48
+ end
49
+
50
+ constraints = _substitute_values(constraints).map { |attr, bind| attr.eq(bind) }
51
+
52
+ dm = Arel::DeleteManager.new
53
+ dm.from(arel_table)
54
+ dm.wheres = constraints
55
+
56
+ connection.delete(dm, "#{self} Destroy")
57
+ end
58
+ end
59
+
60
+ def _relation_for_itself
61
+ # CPK
62
+ if self.composite?
63
+ relation = self.class.unscoped
64
+
65
+ Array(self.class.primary_key).each do |key|
66
+ column = self.class.arel_table[key]
67
+ value = self[key]
68
+ relation = relation.where(column.eq(value))
69
+ end
70
+
71
+ relation
72
+ else
73
+ self.class.unscoped.where(self.class.primary_key => id)
74
+ end
75
+ end
76
+
77
+ def touch(*names, time: nil)
78
+ raise ActiveRecordError, "cannot touch on a new record object" unless persisted?
79
+
80
+ time ||= current_time_from_proper_timezone
81
+ attributes = timestamp_attributes_for_update_in_model
82
+ attributes.concat(names)
83
+
84
+ unless attributes.empty?
85
+ changes = {}
86
+
87
+ attributes.each do |column|
88
+ column = column.to_s
89
+ changes[column] = write_attribute(column, time)
90
+ end
91
+
92
+ clear_attribute_changes(changes.keys)
93
+ primary_key = self.class.primary_key
94
+ scope = self.class.unscoped.where(primary_key => _read_attribute(primary_key))
95
+
96
+ if locking_enabled?
97
+ locking_column = self.class.locking_column
98
+ scope = scope.where(locking_column => _read_attribute(locking_column))
99
+ changes[locking_column] = increment_lock
100
+ end
101
+
102
+ # CPK
103
+ if composite?
104
+ primary_key_predicate = self.class.unscoped.cpk_id_predicate(self.class.arel_table, Array(primary_key), Array(id))
105
+ scope = self.class.unscoped.where(primary_key_predicate)
106
+ end
107
+
108
+ result = scope.update_all(changes) == 1
109
+
110
+ if !result && locking_enabled?
111
+ raise ActiveRecord::StaleObjectError.new(self, "touch")
112
+ end
113
+
114
+ result
115
+ else
116
+ true
117
+ end
118
+ end
119
+ end
120
+ end
@@ -1,20 +1,20 @@
1
- module ActiveRecord
2
- module Reflection
3
- class AbstractReflection
4
- def build_join_constraint(table, foreign_table)
5
- key = join_keys.key
6
- foreign_key = join_keys.foreign_key
7
-
8
- # CPK
9
- #constraint = table[key].eq(foreign_table[foreign_key])
10
- constraint = cpk_join_predicate(table, key, foreign_table, foreign_key)
11
-
12
- if klass.finder_needs_type_condition?
13
- table.create_and([constraint, klass.send(:type_condition, table)])
14
- else
15
- constraint
16
- end
17
- end
18
- end
19
- end
20
- end
1
+ module ActiveRecord
2
+ module Reflection
3
+ class AbstractReflection
4
+ def build_join_constraint(table, foreign_table)
5
+ key = join_keys.key
6
+ foreign_key = join_keys.foreign_key
7
+
8
+ # CPK
9
+ #constraint = table[key].eq(foreign_table[foreign_key])
10
+ constraint = cpk_join_predicate(table, key, foreign_table, foreign_key)
11
+
12
+ if klass.finder_needs_type_condition?
13
+ table.create_and([constraint, klass.send(:type_condition, table)])
14
+ else
15
+ constraint
16
+ end
17
+ end
18
+ end
19
+ end
20
+ end
@@ -1,88 +1,88 @@
1
- module ActiveRecord
2
- class Relation
3
- alias :initialize_without_cpk :initialize
4
- def initialize(klass, table: klass.arel_table, predicate_builder: klass.predicate_builder, values: {})
5
- initialize_without_cpk(klass, table: table, predicate_builder: predicate_builder, values: values)
6
- add_cpk_support if klass && klass.composite?
7
- end
8
-
9
- alias :initialize_copy_without_cpk :initialize_copy
10
- def initialize_copy(other)
11
- initialize_copy_without_cpk(other)
12
- add_cpk_support if klass.composite?
13
- end
14
-
15
- def add_cpk_support
16
- extend CompositePrimaryKeys::CompositeRelation
17
- end
18
-
19
- def update_all(updates)
20
- raise ArgumentError, "Empty list of attributes to change" if updates.blank?
21
-
22
- if eager_loading?
23
- relation = apply_join_dependency
24
- return relation.update_all(updates)
25
- end
26
-
27
- stmt = Arel::UpdateManager.new
28
-
29
- stmt.set Arel.sql(@klass.send(:sanitize_sql_for_assignment, updates))
30
- stmt.table(table)
31
-
32
- if has_join_values?
33
- # CPK
34
- #@klass.connection.join_to_update(stmt, arel, arel_attribute(primary_key))
35
- if primary_key.kind_of?(Array)
36
- attributes = primary_key.map do |key|
37
- arel_attribute(key)
38
- end
39
- @klass.connection.join_to_update(stmt, arel, attributes.to_composite_keys)
40
- else
41
- @klass.connection.join_to_update(stmt, arel, arel_attribute(primary_key))
42
- end
43
- else
44
- stmt.key = arel_attribute(primary_key)
45
- stmt.take(arel.limit)
46
- stmt.order(*arel.orders)
47
- stmt.wheres = arel.constraints
48
- end
49
-
50
- @klass.connection.update stmt, "#{@klass} Update All"
51
- end
52
-
53
- def delete_all
54
- invalid_methods = INVALID_METHODS_FOR_DELETE_ALL.select do |method|
55
- value = get_value(method)
56
- SINGLE_VALUE_METHODS.include?(method) ? value : value.any?
57
- end
58
- if invalid_methods.any?
59
- raise ActiveRecordError.new("delete_all doesn't support #{invalid_methods.join(', ')}")
60
- end
61
-
62
- if eager_loading?
63
- relation = apply_join_dependency
64
- return relation.delete_all
65
- end
66
-
67
- stmt = Arel::DeleteManager.new
68
- stmt.from(table)
69
-
70
- # CPK
71
- if has_join_values? && @klass.composite?
72
- arel_attributes = primary_key.map do |key|
73
- arel_attribute(key)
74
- end.to_composite_keys
75
- @klass.connection.join_to_delete(stmt, arel, arel_attributes)
76
- elsif has_join_values? || has_limit_or_offset?
77
- @klass.connection.join_to_delete(stmt, arel, arel_attribute(primary_key))
78
- else
79
- stmt.wheres = arel.constraints
80
- end
81
-
82
- affected = @klass.connection.delete(stmt, "#{@klass} Destroy")
83
-
84
- reset
85
- affected
86
- end
87
- end
88
- end
1
+ module ActiveRecord
2
+ class Relation
3
+ alias :initialize_without_cpk :initialize
4
+ def initialize(klass, table: klass.arel_table, predicate_builder: klass.predicate_builder, values: {})
5
+ initialize_without_cpk(klass, table: table, predicate_builder: predicate_builder, values: values)
6
+ add_cpk_support if klass && klass.composite?
7
+ end
8
+
9
+ alias :initialize_copy_without_cpk :initialize_copy
10
+ def initialize_copy(other)
11
+ initialize_copy_without_cpk(other)
12
+ add_cpk_support if klass.composite?
13
+ end
14
+
15
+ def add_cpk_support
16
+ extend CompositePrimaryKeys::CompositeRelation
17
+ end
18
+
19
+ def update_all(updates)
20
+ raise ArgumentError, "Empty list of attributes to change" if updates.blank?
21
+
22
+ if eager_loading?
23
+ relation = apply_join_dependency
24
+ return relation.update_all(updates)
25
+ end
26
+
27
+ stmt = Arel::UpdateManager.new
28
+
29
+ stmt.set Arel.sql(@klass.send(:sanitize_sql_for_assignment, updates))
30
+ stmt.table(table)
31
+
32
+ if has_join_values?
33
+ # CPK
34
+ #@klass.connection.join_to_update(stmt, arel, arel_attribute(primary_key))
35
+ if primary_key.kind_of?(Array)
36
+ attributes = primary_key.map do |key|
37
+ arel_attribute(key)
38
+ end
39
+ @klass.connection.join_to_update(stmt, arel, attributes.to_composite_keys)
40
+ else
41
+ @klass.connection.join_to_update(stmt, arel, arel_attribute(primary_key))
42
+ end
43
+ else
44
+ stmt.key = arel_attribute(primary_key)
45
+ stmt.take(arel.limit)
46
+ stmt.order(*arel.orders)
47
+ stmt.wheres = arel.constraints
48
+ end
49
+
50
+ @klass.connection.update stmt, "#{@klass} Update All"
51
+ end
52
+
53
+ def delete_all
54
+ invalid_methods = INVALID_METHODS_FOR_DELETE_ALL.select do |method|
55
+ value = get_value(method)
56
+ SINGLE_VALUE_METHODS.include?(method) ? value : value.any?
57
+ end
58
+ if invalid_methods.any?
59
+ raise ActiveRecordError.new("delete_all doesn't support #{invalid_methods.join(', ')}")
60
+ end
61
+
62
+ if eager_loading?
63
+ relation = apply_join_dependency
64
+ return relation.delete_all
65
+ end
66
+
67
+ stmt = Arel::DeleteManager.new
68
+ stmt.from(table)
69
+
70
+ # CPK
71
+ if has_join_values? && @klass.composite?
72
+ arel_attributes = primary_key.map do |key|
73
+ arel_attribute(key)
74
+ end.to_composite_keys
75
+ @klass.connection.join_to_delete(stmt, arel, arel_attributes)
76
+ elsif has_join_values? || has_limit_or_offset?
77
+ @klass.connection.join_to_delete(stmt, arel, arel_attribute(primary_key))
78
+ else
79
+ stmt.wheres = arel.constraints
80
+ end
81
+
82
+ affected = @klass.connection.delete(stmt, "#{@klass} Destroy")
83
+
84
+ reset
85
+ affected
86
+ end
87
+ end
88
+ end
@@ -1,79 +1,79 @@
1
- module CompositePrimaryKeys
2
- module ActiveRecord
3
- module Calculations
4
- def aggregate_column(column_name)
5
- # CPK
6
- if column_name.kind_of?(Array)
7
- column_name.map do |column|
8
- Arel::Attribute.new(@klass.unscoped.table, column)
9
- end
10
- elsif @klass.column_names.include?(column_name.to_s)
11
- Arel::Attribute.new(@klass.unscoped.table, column_name)
12
- else
13
- Arel.sql(column_name == :all ? "*" : column_name.to_s)
14
- end
15
- end
16
-
17
- def execute_simple_calculation(operation, column_name, distinct) #:nodoc:
18
- column_alias = column_name
19
-
20
- # CPK
21
- # if operation == "count" && has_limit_or_offset?
22
- # # Shortcut when limit is zero.
23
- # return 0 if limit_value == 0
24
- #
25
- # query_builder = build_count_subquery(spawn, column_name, distinct)
26
- if operation == "count"
27
- relation = unscope(:order)
28
- query_builder = build_count_subquery(relation, column_name, distinct)
29
- else
30
- # PostgreSQL doesn't like ORDER BY when there are no GROUP BY
31
- relation = unscope(:order).distinct!(false)
32
-
33
- column = aggregate_column(column_name)
34
-
35
- select_value = operation_over_aggregate_column(column, operation, distinct)
36
- if operation == "sum" && distinct
37
- select_value.distinct = true
38
- end
39
-
40
- column_alias = select_value.alias
41
- column_alias ||= @klass.connection.column_name_for_operation(operation, select_value)
42
- relation.select_values = [select_value]
43
-
44
- query_builder = relation.arel
45
- end
46
-
47
- result = skip_query_cache_if_necessary { @klass.connection.select_all(query_builder, nil) }
48
- row = result.first
49
- value = row && row.values.first
50
- type = result.column_types.fetch(column_alias) do
51
- type_for(column_name)
52
- end
53
-
54
- type_cast_calculated_value(value, type, operation)
55
- end
56
-
57
- def build_count_subquery(relation, column_name, distinct)
58
- relation.select_values = [
59
- if column_name == :all
60
- distinct ? table[Arel.star] : Arel.sql(::ActiveRecord::FinderMethods::ONE_AS_ONE)
61
- # CPK
62
- elsif column_name.is_a?(Array)
63
- relation.select_values = column_name.map do |column|
64
- Arel::Attribute.new(@klass.unscoped.table, column)
65
- end
66
- else
67
- column_alias = Arel.sql("count_column")
68
- aggregate_column(column_name).as(column_alias)
69
- end
70
- ]
71
-
72
- subquery = relation.arel.as(Arel.sql("subquery_for_count"))
73
- select_value = operation_over_aggregate_column(column_alias || Arel.star, "count", false)
74
-
75
- Arel::SelectManager.new(subquery).project(select_value)
76
- end
77
- end
78
- end
79
- end
1
+ module CompositePrimaryKeys
2
+ module ActiveRecord
3
+ module Calculations
4
+ def aggregate_column(column_name)
5
+ # CPK
6
+ if column_name.kind_of?(Array)
7
+ column_name.map do |column|
8
+ Arel::Attribute.new(@klass.unscoped.table, column)
9
+ end
10
+ elsif @klass.column_names.include?(column_name.to_s)
11
+ Arel::Attribute.new(@klass.unscoped.table, column_name)
12
+ else
13
+ Arel.sql(column_name == :all ? "*" : column_name.to_s)
14
+ end
15
+ end
16
+
17
+ def execute_simple_calculation(operation, column_name, distinct) #:nodoc:
18
+ column_alias = column_name
19
+
20
+ # CPK
21
+ # if operation == "count" && has_limit_or_offset?
22
+ # # Shortcut when limit is zero.
23
+ # return 0 if limit_value == 0
24
+ #
25
+ # query_builder = build_count_subquery(spawn, column_name, distinct)
26
+ if operation == "count"
27
+ relation = unscope(:order)
28
+ query_builder = build_count_subquery(relation, column_name, distinct)
29
+ else
30
+ # PostgreSQL doesn't like ORDER BY when there are no GROUP BY
31
+ relation = unscope(:order).distinct!(false)
32
+
33
+ column = aggregate_column(column_name)
34
+
35
+ select_value = operation_over_aggregate_column(column, operation, distinct)
36
+ if operation == "sum" && distinct
37
+ select_value.distinct = true
38
+ end
39
+
40
+ column_alias = select_value.alias
41
+ column_alias ||= @klass.connection.column_name_for_operation(operation, select_value)
42
+ relation.select_values = [select_value]
43
+
44
+ query_builder = relation.arel
45
+ end
46
+
47
+ result = skip_query_cache_if_necessary { @klass.connection.select_all(query_builder, nil) }
48
+ row = result.first
49
+ value = row && row.values.first
50
+ type = result.column_types.fetch(column_alias) do
51
+ type_for(column_name)
52
+ end
53
+
54
+ type_cast_calculated_value(value, type, operation)
55
+ end
56
+
57
+ def build_count_subquery(relation, column_name, distinct)
58
+ relation.select_values = [
59
+ if column_name == :all
60
+ distinct ? table[Arel.star] : Arel.sql(::ActiveRecord::FinderMethods::ONE_AS_ONE)
61
+ # CPK
62
+ elsif column_name.is_a?(Array)
63
+ relation.select_values = column_name.map do |column|
64
+ Arel::Attribute.new(@klass.unscoped.table, column)
65
+ end
66
+ else
67
+ column_alias = Arel.sql("count_column")
68
+ aggregate_column(column_name).as(column_alias)
69
+ end
70
+ ]
71
+
72
+ subquery = relation.arel.as(Arel.sql("subquery_for_count"))
73
+ select_value = operation_over_aggregate_column(column_alias || Arel.star, "count", false)
74
+
75
+ Arel::SelectManager.new(subquery).project(select_value)
76
+ end
77
+ end
78
+ end
79
+ end