Skip to content

Commit

Permalink
Add attributes to derived_events
Browse files Browse the repository at this point in the history
  • Loading branch information
JosephVolosin authored and pranav-super committed Jan 22, 2025
1 parent 5a28d95 commit f31e76f
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ select distinct on (event_key, derivation_group_name)
output.duration,
output.start_time,
output.source_range,
output.valid_at
output.valid_at,
output.attributes
from (
-- select the events from the sources and include them as they fit into the ranges determined by sub
select
Expand All @@ -25,7 +26,8 @@ from (
s.derivation_group_name,
ee.start_time,
s.source_range,
s.valid_at
s.valid_at,
ee.attributes
from merlin.external_event ee
join (
with base_ranges as (
Expand Down

0 comments on commit f31e76f

Please sign in to comment.