From RDB Loader v4.0.0 onwards, load_tstamp is added to the events table. This breaks the Redshift models at the insert step, where the events_staged table gets populated:
INSERT INTO {{.scratch_schema}}.events_staged{{.entropy}} (
SELECT * FROM {{.scratch_schema}}.events_this_run{{.entropy}}
The new column should be added to the table definitions for events_staged to avoid the INSERT has more expressions than target columns issue.
From RDB Loader v4.0.0 onwards,
load_tstamp
is added to the events table. This breaks the Redshift models at the insert step, where theevents_staged
table gets populated:The new column should be added to the table definitions for
events_staged
to avoid the INSERT has more expressions than target columns issue.