OpenMLDB icon indicating copy to clipboard operation
OpenMLDB copied to clipboard

The deleted column is not an index and cannot run successfully. The table does not delete data

Open wuyou10206 opened this issue 3 years ago • 0 comments

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;

wuyou10206 avatar Jul 30 '22 00:07 wuyou10206