From b0dbf8fd968f7ee76b7631e1e2af87ef9a332024 Mon Sep 17 00:00:00 2001 From: Aidan Haran Date: Tue, 19 Sep 2023 16:45:19 +0100 Subject: [PATCH] Update calculate monkey-patch (#1090) --- .../sqlserver/core_ext/calculations.rb | 35 +++++++++++++++---- .../sqlserver/core_ext/finder_methods.rb | 12 +++++-- 2 files changed, 39 insertions(+), 8 deletions(-) diff --git a/lib/active_record/connection_adapters/sqlserver/core_ext/calculations.rb b/lib/active_record/connection_adapters/sqlserver/core_ext/calculations.rb index da0e37f80..34355ef53 100644 --- a/lib/active_record/connection_adapters/sqlserver/core_ext/calculations.rb +++ b/lib/active_record/connection_adapters/sqlserver/core_ext/calculations.rb @@ -8,18 +8,43 @@ module ConnectionAdapters module SQLServer module CoreExt module Calculations - # Same as original except we don't perform PostgreSQL hack that removes ordering. def calculate(operation, column_name) - return super unless klass.connection.adapter_name == "SQLServer" + if klass.connection.sqlserver? + _calculate(operation, column_name) + else + super + end + end + + private + + # Same as original `calculate` method except we don't perform PostgreSQL hack that removes ordering. + def _calculate(operation, column_name) + operation = operation.to_s.downcase + + if @none + case operation + when "count", "sum" + result = group_values.any? ? Hash.new : 0 + return @async ? Promise::Complete.new(result) : result + when "average", "minimum", "maximum" + result = group_values.any? ? Hash.new : nil + return @async ? Promise::Complete.new(result) : result + end + end if has_include?(column_name) relation = apply_join_dependency - if operation.to_s.downcase == "count" + if operation == "count" unless distinct_value || distinct_select?(column_name || select_for_count) relation.distinct! - relation.select_values = [klass.primary_key || table[Arel.star]] + relation.select_values = [ klass.primary_key || table[Arel.star] ] end + # PostgreSQL: ORDER BY expressions must appear in SELECT list when using DISTINCT + # Start of monkey-patch + # relation.order_values = [] if group_values.empty? + # End of monkey-patch end relation.calculate(operation, column_name) @@ -28,8 +53,6 @@ def calculate(operation, column_name) end end - private - def build_count_subquery(relation, column_name, distinct) return super unless klass.connection.adapter_name == "SQLServer" diff --git a/lib/active_record/connection_adapters/sqlserver/core_ext/finder_methods.rb b/lib/active_record/connection_adapters/sqlserver/core_ext/finder_methods.rb index 03932d492..fe9271508 100644 --- a/lib/active_record/connection_adapters/sqlserver/core_ext/finder_methods.rb +++ b/lib/active_record/connection_adapters/sqlserver/core_ext/finder_methods.rb @@ -10,18 +10,26 @@ module CoreExt module FinderMethods private - # Same as original except we order by values in distinct select if present. def construct_relation_for_exists(conditions) - return super unless klass.connection.adapter_name == "SQLServer" + if klass.connection.sqlserver? + _construct_relation_for_exists(conditions) + else + super + end + end + # Same as original except we order by values in distinct select if present. + def _construct_relation_for_exists(conditions) conditions = sanitize_forbidden_attributes(conditions) if distinct_value && offset_value + # Start of monkey-patch if select_values.present? relation = order(*select_values).limit!(1) else relation = except(:order).limit!(1) end + # End of monkey-patch else relation = except(:select, :distinct, :order)._select!(::ActiveRecord::FinderMethods::ONE_AS_ONE).limit!(1) end