mirror of
https://github.com/plausible/analytics.git
synced 2024-11-23 11:12:15 +03:00
adcce15632
* default to v2 * allow N defaults in data migration prompt and custom messages * join domains lookup * remove duplicate test runs from ci (both are v2)
43 lines
924 B
Elixir
43 lines
924 B
Elixir
INSERT INTO tmp_events_v2 (
|
|
site_id, timestamp, name, user_id,
|
|
session_id, hostname, pathname, referrer,
|
|
referrer_source, country_code, screen_size,
|
|
operating_system, browser, utm_medium,
|
|
utm_source, utm_campaign, meta.key,
|
|
meta.value, browser_version, operating_system_version,
|
|
subdivision1_code, subdivision2_code,
|
|
city_geoname_id, utm_content, utm_term,
|
|
transferred_from
|
|
)
|
|
SELECT
|
|
site_id,
|
|
timestamp,
|
|
name,
|
|
user_id,
|
|
session_id,
|
|
hostname,
|
|
pathname,
|
|
referrer,
|
|
referrer_source,
|
|
country_code,
|
|
screen_size,
|
|
operating_system,
|
|
browser,
|
|
utm_medium,
|
|
utm_source,
|
|
utm_campaign,
|
|
meta.key,
|
|
meta.value,
|
|
browser_version,
|
|
operating_system_version,
|
|
subdivision1_code,
|
|
subdivision2_code,
|
|
city_geoname_id,
|
|
utm_content,
|
|
utm_term,
|
|
transferred_from
|
|
FROM
|
|
events
|
|
INNER JOIN domains_lookup ON domains_lookup.domain = events.domain
|
|
WHERE (_partition_id = '<%= @partition %>')
|