mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
336c2cbb8f
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@522 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
19 lines
626 B
Ruby
19 lines
626 B
Ruby
require 'abstract_unit'
|
|
require 'fixtures/topic'
|
|
|
|
class TestColumnAlias < Test::Unit::TestCase
|
|
|
|
def test_column_alias
|
|
topic = Topic.find(1)
|
|
if ActiveRecord::ConnectionAdapters.const_defined? :OracleAdapter
|
|
if ActiveRecord::Base.connection.instance_of?(ActiveRecord::ConnectionAdapters::OracleAdapter)
|
|
records = topic.connection.select_all("SELECT id AS pk FROM topics WHERE ROWNUM < 2")
|
|
assert_equal(records[0].keys[0], "pk")
|
|
end
|
|
else
|
|
records = topic.connection.select_all("SELECT id AS pk FROM topics LIMIT 1")
|
|
assert_equal(records[0].keys[0], "pk")
|
|
end
|
|
end
|
|
|
|
end
|