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
Our team is trying to use StarRocks as a unified query engine layer. We are encountering issues when querying materialized views in ClickHouse.
e.g.
ClickHouse
CREATEDATABASEdb0;
CREATETABLEdb0.simple (id UInt64, val SimpleAggregateFunction(sum, UInt64)) ENGINE=AggregatingMergeTree() ORDER BY id;
INSERT INTOdb0.simple(id, val) VALUES (1, 10),(1, 11),(2, 12);
Expected Result
ClickHouse :) select id, sum(val) from db0.simple GROUP BY id;
SELECT
id,
sum(val)
FROM db0.simple
GROUP BY id
Query id: da27ce92-1f98-4790-9a3d-00f5e9d72b03
┌─id─┬─sum(val)─┐
1. │ 2 │ 12 │
2. │ 1 │ 21 │
└────┴──────────┘
2 rows in set. Elapsed: 0.004 sec.
Enhancement
StarRocks as Query Engine
Our team is trying to use StarRocks as a unified query engine layer. We are encountering issues when querying materialized views in ClickHouse.
e.g.
ClickHouse
Expected Result
StarRocks
Query ClickHouse table from StarRocks
Got Error:
Features Required
The text was updated successfully, but these errors were encountered: