sentry
sentry copied to clipboard
feat(discover): Allow arithmetic on datetime
- This allows arithmetic on datetime fields by converting them to unix timestamps, doing the math, then converting them back
- eg. timestamp + 3600 becomes:
toDateTime64(toUnixTimestamp(timestamp) + 3600, 1)