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

Skip to content

Commit ca933fc

Browse files
committed
Another patch for #1539
1 parent a212f0c commit ca933fc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/core/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2950,7 +2950,7 @@ def decodeIntToUnicode(value):
29502950

29512951
if Backend.isDbms(DBMS.MSSQL):
29522952
retVal = getUnicode(raw, "UTF-16-BE")
2953-
elif Backend.isDbms(DBMS.PGSQL):
2953+
elif Backend.getIdentifiedDbms() in (DBMS.PGSQL, DBMS.ORACLE):
29542954
retVal = unichr(value)
29552955
else:
29562956
retVal = getUnicode(raw, conf.charset)

0 commit comments

Comments
 (0)