mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
fix mysql event data query
This commit is contained in:
parent
82f9a42313
commit
ce95ae3bb3
1 changed files with 2 additions and 2 deletions
|
|
@ -37,7 +37,7 @@ async function relationalQuery(
|
|||
ed.event_key as field,
|
||||
ed.data_type as type,
|
||||
ed.string_value as value,
|
||||
count(ed.*) as total
|
||||
count(*) as total
|
||||
from event_data as ed
|
||||
inner join website_event as we
|
||||
on we.event_id = ed.website_event_id
|
||||
|
|
@ -56,7 +56,7 @@ async function relationalQuery(
|
|||
we.event_name as event,
|
||||
ed.event_key as field,
|
||||
ed.data_type as type,
|
||||
count(ed.*) as total
|
||||
count(*) as total
|
||||
from event_data as ed
|
||||
inner join website_event as we
|
||||
on we.event_id = ed.website_event_id
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue