Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3200134

Browse files
committed
Fix for a regression test #30 test case fail (Firebird inline)
1 parent aebf2c1 commit 3200134

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/core/agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ def nullAndCastField(self, field):
335335
nulledCastedField = field
336336
else:
337337
nulledCastedField = rootQuery.cast.query % field
338-
if Backend.isDbms(DBMS.ACCESS):
338+
if Backend.getIdentifiedDbms() in (DBMS.ACCESS,):
339339
nulledCastedField = rootQuery.isnull.query % (nulledCastedField, nulledCastedField)
340340
else:
341341
nulledCastedField = rootQuery.isnull.query % nulledCastedField

0 commit comments

Comments
 (0)