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);
Is there an existing issue for the same bug?
Branch Name
main
Commit ID
5faa2c0c0
Other Environment Information
Actual Behavior
Expected Behavior
No response
Steps to Reproduce
Additional information
No response