mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 00:25:46 -06:00
fix sql query in GetAdminStats. fixes #3883
This commit is contained in:
parent
64fa9a6394
commit
79e7ae4424
@ -83,7 +83,7 @@ func GetAdminStats(query *m.GetAdminStatsQuery) error {
|
||||
FROM ` + dialect.Quote("playlist") + `
|
||||
) AS playlist_count,
|
||||
(
|
||||
SELECT COUNT (DISTINCT ` + dialect.Quote("dashboard_id") + ` )
|
||||
SELECT COUNT(DISTINCT ` + dialect.Quote("dashboard_id") + ` )
|
||||
FROM ` + dialect.Quote("star") + `
|
||||
) AS starred_db_count,
|
||||
(
|
||||
|
Loading…
Reference in New Issue
Block a user