No idea why it did not work

This commit is contained in:
Alexey Milovidov 2023-11-11 07:37:39 +01:00
parent 629c5c0e45
commit 4460abafbe

View File

@ -15,17 +15,7 @@ CLICKHOUSE_CI_LOGS_USER=${CLICKHOUSE_CI_LOGS_USER:-ci}
# Pre-configured destination cluster, where to export the data
CLICKHOUSE_CI_LOGS_CLUSTER=${CLICKHOUSE_CI_LOGS_CLUSTER:-system_logs_export}
EXTRA_COLUMNS=${EXTRA_COLUMNS:-"
pull_request_number UInt32,
commit_sha String,
check_start_time DateTime('UTC'),
check_name LowCardinality(String),
instance_type LowCardinality(String),
instance_id String,
INDEX ix_pr (pull_request_number) TYPE set(100),
INDEX ix_commit (commit_sha) TYPE set(100),
INDEX ix_check_time (check_start_time) TYPE minmax,
"}
EXTRA_COLUMNS=${EXTRA_COLUMNS:-"pull_request_number UInt32, commit_sha String, check_start_time DateTime('UTC'), check_name LowCardinality(String), instance_type LowCardinality(String), instance_id String, INDEX ix_pr (pull_request_number) TYPE set(100), INDEX ix_commit (commit_sha) TYPE set(100), INDEX ix_check_time (check_start_time) TYPE minmax, "}
EXTRA_COLUMNS_EXPRESSION=${EXTRA_COLUMNS_EXPRESSION:-"CAST(0 AS UInt32) AS pull_request_number, '' AS commit_sha, now() AS check_start_time, '' AS check_name, '' AS instance_type, '' AS instance_id"}
EXTRA_ORDER_BY_COLUMNS=${EXTRA_ORDER_BY_COLUMNS:-"check_name, "}