Closed chengqianli-git closed 3 weeks ago
https://github.com/StarRocks/starrocks/issues/44523 same problem
repeated:
CREATE TABLE t
(
k
BIGINT NOT NULL COMMENT "",
v1
string COMMENT "",
v2
string COMMENT "",
INDEX idx1 (v2) USING BITMAP,
INDEX idx2 (v1) USING GIN ('parser' = 'english')
) ENGINE=OLAP
DUPLICATE KEY(k
, v1)
DISTRIBUTED BY HASH(k
,v1
) BUCKETS 1
PROPERTIES (
"replication_num" = "1",
"in_memory" = "false",
"enable_persistent_index" = "false",
"replicated_storage" = "false",
"compression" = "LZ4"
);
insert into t values (1,"a","b");
create materialized view mv1 as select k, v1 from t;
We have marked this issue as stale because it has been inactive for 6 months. If this issue is still relevant, removing the stale label or adding a comment will keep it active. Otherwise, we'll close it in 10 days to keep the issue queue tidy. Thank you for your contribution to StarRocks!
Steps to reproduce the behavior (Required)
Expected behavior (Required)
Real behavior (Required)
StarRocks version (Required)
select current_version()
main-f493d17