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 5b6c01d commit 4595b2cCopy full SHA for 4595b2c
1 file changed
lib/core/common.py
@@ -3448,7 +3448,11 @@ def _(value):
3448
retVal = retVal.decode("utf-16-le")
3449
except UnicodeDecodeError:
3450
pass
3451
-
+ elif Backend.isDbms(DBMS.HSQL):
3452
+ try:
3453
+ retVal = retVal.decode("utf-16-be")
3454
+ except UnicodeDecodeError:
3455
+ pass
3456
if not isinstance(retVal, unicode):
3457
retVal = getUnicode(retVal, "utf8")
3458
0 commit comments