aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/column_alias_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/column_alias_test.rb')
-rw-r--r--activerecord/test/column_alias_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/column_alias_test.rb b/activerecord/test/column_alias_test.rb
index 729a252eef..19526cf9b3 100644
--- a/activerecord/test/column_alias_test.rb
+++ b/activerecord/test/column_alias_test.rb
@@ -4,7 +4,7 @@ require 'fixtures/topic'
class TestColumnAlias < Test::Unit::TestCase
fixtures :topics
- QUERY = if 'OCI' == ActiveRecord::Base.connection.adapter_name
+ QUERY = if 'Oracle' == ActiveRecord::Base.connection.adapter_name
'SELECT id AS pk FROM topics WHERE ROWNUM < 2'
else
'SELECT id AS pk FROM topics'