Rebrand to Syncfuse

This commit is contained in:
DinuraSellapperuma 2026-02-12 14:09:22 +05:30
parent 0a09df5470
commit 92025c9dba
144 changed files with 1796 additions and 1977 deletions

View file

@ -1,4 +1,4 @@
CREATE TABLE umami.website_event_join
CREATE TABLE syncfuse.website_event_join
(
session_id UUID,
visit_id UUID,
@ -8,7 +8,7 @@ CREATE TABLE umami.website_event_join
ORDER BY (session_id, created_at)
SETTINGS index_granularity = 8192;
INSERT INTO umami.website_event_join
INSERT INTO syncfuse.website_event_join
SELECT DISTINCT
s.session_id,
generateUUIDv4() visit_id,
@ -18,7 +18,7 @@ FROM (SELECT DISTINCT session_id,
FROM website_event) s;
-- create new table
CREATE TABLE umami.website_event_new
CREATE TABLE syncfuse.website_event_new
(
website_id UUID,
session_id UUID,
@ -49,7 +49,7 @@ CREATE TABLE umami.website_event_new
ORDER BY (website_id, session_id, created_at)
SETTINGS index_granularity = 8192;
INSERT INTO umami.website_event_new
INSERT INTO syncfuse.website_event_new
SELECT we.website_id,
we.session_id,
j.visit_id,
@ -74,17 +74,17 @@ SELECT we.website_id,
we.event_name,
we.created_at,
we.job_id
FROM umami.website_event we
JOIN umami.website_event_join j
FROM syncfuse.website_event we
JOIN syncfuse.website_event_join j
ON we.session_id = j.session_id
and date_trunc('hour', we.created_at) = j.created_at
RENAME TABLE umami.website_event TO umami.website_event_old;
RENAME TABLE umami.website_event_new TO umami.website_event;
RENAME TABLE syncfuse.website_event TO syncfuse.website_event_old;
RENAME TABLE syncfuse.website_event_new TO syncfuse.website_event;
/*
DROP TABLE umami.website_event_old
DROP TABLE umami.website_event_join
DROP TABLE syncfuse.website_event_old
DROP TABLE syncfuse.website_event_join
*/