We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d50380f + 615f96d commit c971e7fCopy full SHA for c971e7f
activerecord/test/cases/calculations_test.rb
@@ -249,7 +249,7 @@ def test_should_group_by_summed_field_having_condition
249
end
250
251
def test_should_group_by_summed_field_having_condition_from_select
252
- skip if current_adapter?(:PostgreSQLAdapter)
+ skip if current_adapter?(:PostgreSQLAdapter, :OracleAdapter)
253
c = Account.select("MIN(credit_limit) AS min_credit_limit").group(:firm_id).having("min_credit_limit > 50").sum(:credit_limit)
254
assert_nil c[1]
255
assert_equal 60, c[2]
0 commit comments