Bug 1721878 Comment 1 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

Specifically, the query will look like:

```
SELECT
  submission_date,
  client_id,
  aborts_content_sum,
  ...
FROM
  `moz-fx-data-shared-prod.telemetry_derived.clients_last_seen_v1`
WHERE
  submission_date = @submission_date
  -- Only include clients seen today.
  AND mozfun.bits28.days_since_seen(days_seen_bits) = 0
```

Back to Bug 1721878 Comment 1