0
0
Fork 0

Fix slow distinct queries where grouped queries are faster (#15287)

About 2x speed-up on inboxes query
This commit is contained in:
Eugen Rochko 2020-12-07 12:08:30 +01:00 committed by GitHub
parent a8c471fcc0
commit 48bef17cc9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View file

@ -51,7 +51,7 @@ class Form::AccountBatch
end
def account_domains
accounts.pluck(Arel.sql('distinct domain')).compact
accounts.group(:domain).pluck(:domain).compact
end
def accounts