mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-16 02:05:04 +01:00
reorder getfunnel where to match index
This commit is contained in:
parent
927ebd7c39
commit
7df142b02b
@ -57,12 +57,14 @@ async function relationalQuery(
|
|||||||
from level${i} l
|
from level${i} l
|
||||||
join website_event we
|
join website_event we
|
||||||
on l.session_id = we.session_id
|
on l.session_id = we.session_id
|
||||||
where we.created_at between l.created_at
|
where we.website_id = {{websiteId::uuid}}
|
||||||
and ${getAddMinutesQuery(`l.created_at `, windowMinutes)}
|
and we.created_at between l.created_at and ${getAddMinutesQuery(
|
||||||
|
`l.created_at `,
|
||||||
|
windowMinutes,
|
||||||
|
)}
|
||||||
and we.referrer_path = {{${i - 1}}}
|
and we.referrer_path = {{${i - 1}}}
|
||||||
and we.url_path = {{${i}}}
|
and we.url_path = {{${i}}}
|
||||||
and we.created_at <= {{endDate}}
|
and we.created_at <= {{endDate}}
|
||||||
and we.website_id = {{websiteId::uuid}}
|
|
||||||
)`;
|
)`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user