Merge pull request #1380 from iosonogio/bugfix/netwitness-null
[bugfix] netwitness and netwitness-epl backends have incoherent null expressions
This commit is contained in:
@@ -55,8 +55,8 @@ class NetWitnessEplBackend(SingleTextQueryBackend):
|
||||
listSeparator = ", "
|
||||
valueExpression = "\'%s\'"
|
||||
keyExpression = "%s"
|
||||
nullExpression = "%s exists"
|
||||
notNullExpression = "%s exists"
|
||||
nullExpression = "%s is null"
|
||||
notNullExpression = "%s is not null"
|
||||
mapExpression = "(%s=%s)"
|
||||
mapListsSpecialHandling = True
|
||||
|
||||
|
||||
@@ -37,7 +37,7 @@ class NetWitnessBackend(SingleTextQueryBackend):
|
||||
listSeparator = ", "
|
||||
valueExpression = "\'%s\'"
|
||||
keyExpression = "%s"
|
||||
nullExpression = "%s exists"
|
||||
nullExpression = "%s !exists"
|
||||
notNullExpression = "%s exists"
|
||||
mapExpression = "(%s=%s)"
|
||||
mapListsSpecialHandling = True
|
||||
|
||||
Reference in New Issue
Block a user