mirror of
https://github.com/kaminari/kaminari.git
synced 2022-11-09 13:44:37 -05:00
MySQL quotes with ``, not ""
This commit is contained in:
parent
7f997c7f42
commit
93136e02fe
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ class User < ActiveRecord::Base
|
||||||
cols = if connection.adapter_name == "PostgreSQL"
|
cols = if connection.adapter_name == "PostgreSQL"
|
||||||
column_names.map { |column| %{"users"."#{column}"} }
|
column_names.map { |column| %{"users"."#{column}"} }
|
||||||
else
|
else
|
||||||
['"users"."id"']
|
['users.id']
|
||||||
end
|
end
|
||||||
group(*cols).select("count(readerships.id) AS read_count, #{cols.join(', ')}").order('read_count DESC')
|
group(*cols).select("count(readerships.id) AS read_count, #{cols.join(', ')}").order('read_count DESC')
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue