Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aebf2c1 commit 3200134Copy full SHA for 3200134
1 file changed
lib/core/agent.py
@@ -335,7 +335,7 @@ def nullAndCastField(self, field):
335
nulledCastedField = field
336
else:
337
nulledCastedField = rootQuery.cast.query % field
338
- if Backend.isDbms(DBMS.ACCESS):
+ if Backend.getIdentifiedDbms() in (DBMS.ACCESS,):
339
nulledCastedField = rootQuery.isnull.query % (nulledCastedField, nulledCastedField)
340
341
nulledCastedField = rootQuery.isnull.query % nulledCastedField
0 commit comments