You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
giko45
changed the title
DB::Exception: Logical error: more than two components in table expression
DB::Exception: when double clicking on a clikhouse inner table
Jun 4, 2020
Hi,
When double click on a clickhouse table with a dot in it (as created by a materialized view) the GUI hangs
example:
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
The text was updated successfully, but these errors were encountered: