提交 a0363e2c 编写于 作者: Y Yasuo Honda

Address ORA-00911 errors because of the heading underscore.

上级 f48e7676
......@@ -176,7 +176,7 @@ def exists?(id = false)
join_dependency = construct_join_dependency_for_association_find
relation = construct_relation_for_association_find(join_dependency)
relation = relation.except(:select, :order).select("1 AS _one").limit(1)
relation = relation.except(:select, :order).select("1 AS one").limit(1)
case id
when Array, Hash
......
......@@ -46,7 +46,7 @@ def test_exists
end
def test_exists_does_not_select_columns_without_alias
assert_sql(/SELECT\W+1 AS _one FROM ["`]topics["`]\W+LIMIT 1/) do
assert_sql(/SELECT\W+1 AS one FROM ["`]topics["`]/i) do
Topic.exists?
end
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册