OpenMLDB
OpenMLDB copied to clipboard
The deleted column is not an index and cannot run successfully. The table does not delete data
Bug Description The deleted column is not an index and cannot run successfully. The table does not delete data.
Expected Behavior Prompt error message.
Steps to Reproduce
create table auto_GRaFKeEv(
c1 string,
c2 smallint,
c3 int,
c4 bigint,
c5 float,
c6 double,
c7 timestamp,
c8 date,
c9 bool,
index(key=(c1),ts=c7))options(partitionnum=1,replicanum=1);
delete from auto_GRaFKeEv where c2=1;