Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
-- +goose Up
-- Source index supporting closed projector windows on newly written parts.
-- ADD INDEX only defines the index for new parts and does not materialize existing parts.
ALTER TABLE trigger_dev.task_events_v2
ADD INDEX IF NOT EXISTS idx_inserted_at_projector inserted_at TYPE minmax GRANULARITY 1;
Comment thread
carderne marked this conversation as resolved.

-- +goose Down
ALTER TABLE trigger_dev.task_events_v2
DROP INDEX IF EXISTS idx_inserted_at_projector;