From 7eeb71ed252f0ad489e0e6b671ae552388e5a8dd Mon Sep 17 00:00:00 2001 From: Kraiem Taha Yassine Date: Tue, 19 Nov 2024 11:38:59 +0100 Subject: [PATCH] Dev (#2761) * fix(chalice): fixed Math-operators validation refactor(chalice): search for sessions that have events for heatmaps * refactor(chalice): search for sessions that have at least 1 location event for heatmaps * fix(chalice): fixed Math-operators validation refactor(chalice): search for sessions that have events for heatmaps * refactor(chalice): search for sessions that have at least 1 location event for heatmaps * feat(chalice): autocomplete return top 10 with stats * fix(chalice): fixed autocomplete top 10 meta-filters * refactor(DB): allow CH drop of massive tables --- ee/scripts/schema/db/init_dbs/clickhouse/1.21.0/1.21.0.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ee/scripts/schema/db/init_dbs/clickhouse/1.21.0/1.21.0.sql b/ee/scripts/schema/db/init_dbs/clickhouse/1.21.0/1.21.0.sql index b7639787c..8be350f82 100644 --- a/ee/scripts/schema/db/init_dbs/clickhouse/1.21.0/1.21.0.sql +++ b/ee/scripts/schema/db/init_dbs/clickhouse/1.21.0/1.21.0.sql @@ -1,6 +1,6 @@ CREATE OR REPLACE FUNCTION openreplay_version AS() -> 'v1.21.0-ee'; -DROP TABLE IF EXISTS experimental.resources_l7d_mv; +DROP TABLE IF EXISTS experimental.resources_l7d_mv SETTINGS max_table_size_to_drop = 0; -DROP TABLE IF EXISTS experimental.resources; \ No newline at end of file +DROP TABLE IF EXISTS experimental.resources SETTINGS max_table_size_to_drop = 0; \ No newline at end of file