提交 bba46623 编写于 作者: Y Yorick Peterse

Fixed UNION syntax for MySQL

MySQL doesn't support the previous syntax.
上级 24c8f422
......@@ -238,9 +238,9 @@ class User < ActiveRecord::Base
# Arel doesn't allow for chaining operations on union nodes, thus we have
# to write this query by hand. See the following issue for more info:
# https://github.com/rails/arel/issues/98.
sql = '(SELECT * FROM users WHERE email = :email
sql = '(SELECT * FROM users WHERE email = :email)
UNION
SELECT users.*
(SELECT users.*
FROM emails
INNER JOIN users ON users.id = emails.user_id
WHERE emails.email = :email)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册