matrixorigin / matrixone

Hyperconverged cloud-edge native database
https://docs.matrixorigin.cn/en
Apache License 2.0
1.79k stars 277 forks source link

[Bug]: create fullindex report 'internal error: primary key cannot be empty for fulltext index'. #20563

Closed Ariznawlll closed 10 hours ago

Ariznawlll commented 10 hours ago

Is there an existing issue for the same bug?

Branch Name

main

Commit ID

5faa2c0c0

Other Environment Information

- Hardware parameters:
- OS type:
- Others:

Actual Behavior

image

Expected Behavior

No response

Steps to Reproduce

drop table if exists ab01;
create table ab01(col1 int, col2 char, col3 varchar(10));
insert into ab01 values (1,2,'da');
insert into ab01 values (2,3,'e4r34f');
select * from ab01;
create fulltext index f01 on ab01 (col2);
create fulltext index f02 on ab01 (col2);

Additional information

No response

Ariznawlll commented 10 hours ago
image

不是bug