Added tests for in operator in rql2sql tool

This commit is contained in:
João Antônio Duarte 2019-03-25 11:29:35 -03:00
parent b25d8a97f9
commit 2f9f6cfffc
2 changed files with 3 additions and 1 deletions

View File

@ -767,7 +767,6 @@ end;
function TRQL2SQL.MatchFieldArrayValue(out lFieldValue: string): Boolean;
var
lChar: Char;
lToken: TRQLToken;
begin
Result := True;
while True do

View File

@ -1,3 +1,6 @@
in(name,['joão','duarte'])
and(eq(name,"João"),in(codperson,[1,2,3]))
in(codperson,[1,2,3])
eq(name,-1)
contains(nome,"João")
sort(+last_name);limit(0,1)