mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
Fixed PostgreSQL 12/13 syntax error in Journeys feature
This commit is contained in:
parent
860e6390f1
commit
8286af1453
1 changed files with 1 additions and 1 deletions
|
|
@ -119,7 +119,7 @@ async function relationalQuery(
|
|||
select distinct
|
||||
website_event.visit_id,
|
||||
website_event.referrer_path,
|
||||
coalesce(nullIf(website_event.event_name, ''), website_event.url_path) event,
|
||||
coalesce(nullIf(website_event.event_name, ''), website_event.url_path) "event",
|
||||
row_number() OVER (PARTITION BY visit_id ORDER BY website_event.created_at) AS event_number
|
||||
from website_event
|
||||
${cohortQuery}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue