[CP] [OBKV] add obkv error code for filter syntax error && rename query_sync to query_async && error code is overwritten

This commit is contained in:
shenyunlong.syl
2024-05-14 16:44:55 +00:00
committed by ob-robot
parent 1acdd6ecd5
commit 8700ec2bbe
21 changed files with 216 additions and 213 deletions

View File

@ -12,25 +12,25 @@ RowFilter(<=, 'binaryprefix:abc') AND RowFilter(!=, 'binaryprefix:abc') OR Value
RowFilter(<=, 'binaryprefix:abc') OR RowFilter(!=, 'binaryprefix:abc') AND ValueFilter(=, 'substring:abc*123')
(RowFilter(<=, 'binaryprefix:abc') OR RowFilter(!=, 'binaryprefix:abc')) AND ValueFilter(=, 'substring:abc*123')
Skip While Skip RowFilter(<=, 'binaryprefix:abc') OR RowFilter(!=, 'binaryprefix:abc') AND ValueFilter(=, 'substring:abc*123')
--error 5006
--error 10514
RowFilter(<=>, 'binary:abc')
--error 5006
--error 10514
RowF(<, 'binary:abc')
--error 5006
--error 10514
RowFilter(<, 'binary
--error 5006
--error 10514
RowFilter(<, 'binary'')
--error 5006
--error 10514
RowFilter(<, 'binary''')
--error 5006
--error 10514
RowFilter(<, 'binary:abc'))
--error 5006
--error 10514
(RowFilter(<, 'binary:abc')
--error 5006
--error 10514
RowFilter(>, 'substring:abc')
--error 5006
--error 10514
RowFilter(>=, 'regexstring:abc')
--error 5006
--error 10514
( singlecolumnvaluefilter ( !=, 'substring:abc', 'cf1', 'c1') )
( singlecolumnvaluefilter ( 'cf1', 'c1', !=, 'substring:abc') )
PrefixFilter ( 'abc' )