mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-16 02:05:04 +01:00
fix mysql event data query
This commit is contained in:
parent
82f9a42313
commit
ce95ae3bb3
@ -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…
Reference in New Issue
Block a user