fix filter err

This commit is contained in:
yihaoDeng 2023-04-23 08:32:59 +00:00
parent 2699a01444
commit acee9e1862
1 changed files with 10 additions and 0 deletions

View File

@ -123,6 +123,16 @@ sql select * from $mt where tgcol = 1
if $rows != 100 then
return -1
endi
sql select * from $mt where tgcol = "1.0"
if $rows != 100 then
return -1
endi
sql select * from $mt where tgcol = "1"
if $rows != 100 then
return -1
endi
sql select * from $mt where tgcol <> 1
if $rows != 100 then
return -1