diff options
author | Heinrich Lee Yu <heinrich@gitlab.com> | 2019-07-11 05:39:39 +0800 |
---|---|---|
committer | Heinrich Lee Yu <heinrich@gitlab.com> | 2019-07-11 13:46:17 +0800 |
commit | 0131750549c40a65111b63745d2cffaf10d3069e (patch) | |
tree | 46d33f1604d201de4823284ce47c4135f913043f | |
parent | 056166db0adbc34a8f7d8cf04136ed1ae976c9bb (diff) | |
download | gitlab-ce-0131750549c40a65111b63745d2cffaf10d3069e.tar.gz |
Pass string directly to #from51575-remove-rails-4-specific-code-from-fromunion-from_union
-rw-r--r-- | app/models/concerns/from_union.rb | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/app/models/concerns/from_union.rb b/app/models/concerns/from_union.rb index 9b8595b1211..e28dee34815 100644 --- a/app/models/concerns/from_union.rb +++ b/app/models/concerns/from_union.rb @@ -40,11 +40,7 @@ module FromUnion .new(members, remove_duplicates: remove_duplicates) .to_sql - # This pattern is necessary as a bug in Rails 4 can cause the use of - # `from("string here").includes(:foo)` to break ActiveRecord. This is - # fixed in https://github.com/rails/rails/pull/25374, which is released as - # part of Rails 5. - from([Arel.sql("(#{union}) #{alias_as}")]) + from(Arel.sql("(#{union}) #{alias_as}")) end # rubocop: enable Gitlab/Union end |