Hi, thanks for the great extension.
is it possible to build pipelines in a way that enables “real-time” aggregates? For example by combining latest raw data and pre-aggregates:
‘’’
select * from view_counts where ts <= last_incremental_update
union all
select (aggregates that created view_counts) from raw_views where ts > last_incremental_update
‘’’