select mo_ctl('cn', 'task', 'disable');
drop database if exists db1;
create database db1;
use db1;
create table t0 (
a int,
b int,
c varchar(20),
primary key(a, b)
);
insert into t0 select result, result, result || 'test' from generate_series(1, 100) g;
set experimental_fulltext_index=1;
create fulltext index ftidx on t0 (c);
create table t1 (
a int,
b int,
c varchar(20),
primary key(a, b)
);
set experimental_fulltext_index=1;
create fulltext index ftidx on t1 (c);
use db1;
insert into t1 select * from t0 where a = 1 and b = 1;
insert into t1 select * from t0 where a = 1 and b = 1; -- should CN report error
Is there an existing issue for the same bug?
Branch Name
main
Commit ID
lastest
Other Environment Information
Actual Behavior
TN report error
Expected Behavior
No response
Steps to Reproduce
Additional information
No response