WITH events AS()

in src/data/gleanSql.js [75:84]


WITH events AS (
  SELECT
    -- The table is partitioned by submission timestamp, so we need to
    -- include it in the query. We use event_timestamp instead to understand
    -- when the event happened exactly at the source.
    submission_timestamp,
    event_timestamp,
    event,
    event_extra
  FROM ${table} as e