Skip to content

Commit 800b05e

Browse files
committed
fix(clickhouse): remove semicolon from migration comment
The testcontainers migration parser splits Up statements on ';', including semicolons inside comments, which produced a comments-only fragment rejected by ClickHouse as 'Empty query.'
1 parent 7c7ea0f commit 800b05e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal-packages/clickhouse/schema/038_add_task_events_inserted_at_index.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-- +goose Up
22
-- Source index supporting closed projector windows on newly written parts.
3-
-- ADD INDEX only defines the index for new parts; existing parts are not materialized.
3+
-- ADD INDEX only defines the index for new parts and does not materialize existing parts.
44
ALTER TABLE trigger_dev.task_events_v2
55
ADD INDEX IF NOT EXISTS idx_inserted_at_projector inserted_at TYPE minmax GRANULARITY 1;
66

0 commit comments

Comments
 (0)