From e702d8abd18df53f42e1a24dffec6fb42d88e886 Mon Sep 17 00:00:00 2001 From: Marcel Coetzee Date: Sat, 23 Mar 2024 22:33:45 +0200 Subject: [PATCH] Remove old comment #1055 Signed-off-by: Marcel Coetzee --- dlt/destinations/impl/clickhouse/clickhouse.py | 1 - 1 file changed, 1 deletion(-) diff --git a/dlt/destinations/impl/clickhouse/clickhouse.py b/dlt/destinations/impl/clickhouse/clickhouse.py index 4524ff8d2b..dcbbd4987e 100644 --- a/dlt/destinations/impl/clickhouse/clickhouse.py +++ b/dlt/destinations/impl/clickhouse/clickhouse.py @@ -192,7 +192,6 @@ def __init__( schema: Schema, config: ClickhouseClientConfiguration, ) -> None: - # TODO: There are no schemas in Clickhouse. No point in having schemas, only dataset names and table names for example "dataset1_mytable". self.sql_client: ClickhouseSqlClient = ClickhouseSqlClient( config.normalize_dataset_name(schema), config.credentials )