1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

PostgreSQL does not work in the same way of the other adapters

This commit is contained in:
Rafael Mendonça França 2012-02-08 16:34:29 -02:00
parent 06b9c905a9
commit 78a6b6a5fd

View file

@ -485,8 +485,12 @@ class CalculationsTest < ActiveRecord::TestCase
end
def test_pluck_not_auto_table_name_prefix_if_column_joined
c = Company.create!(:name => "test", :contracts => [Contract.new(:developer_id => 7)])
# No chance for typecast here
assert_equal ["7"], Company.joins(:contracts).pluck(:developer_id)
Company.create!(:name => "test", :contracts => [Contract.new(:developer_id => 7)])
# FIXME: PostgreSQL should works in the same way of the other adapters
if current_adapter?(:PostgreSQLAdapter)
assert_equal ["7"], Company.joins(:contracts).pluck(:developer_id)
else
assert_equal [7], Company.joins(:contracts).pluck(:developer_id)
end
end
end