tabix
tabix copied to clipboard
DB::Exception: when double clicking on a clikhouse inner table
Hi,
When double click on a clickhouse table with a dot in it (as created by a materialized view) the GUI hangs
example:
CREATE TABLE A ( `id` Int32 ) ENGINE = AggregatingMergeTree() PARTITION BY tuple() ORDER BY id
CREATE MATERIALIZED VIEW A_mv ( `id` Int32(), ) ENGINE = AggregatingMergeTree() PARTITION BY tuple() ORDER BY series_id SETTINGS index_granularity = 8192 AS SELECT sumState(id) AS ids FROM A
click on reload structure double click on the created inner table ".inner.A_mv" The GUI hangs
when looking in the chrome developer console i can see the following form data send:
describe table timedb..inner.A_mv
which should be
describe table timedb.".inner.A_mv"
together with the error: DB::Exception: Logical error: more than two components in table expression #217