
|
If you were logged in you would be able to see more operations.
|
|
|
| Planning Status: |
Unspecified
|
|
Example: The 'İ' (U+0130) is composed by two bytes. But its lowercase is composed by 1 byte. It was throwing errors, but correct result would be:
SQL> SELECT LOWER('İA') FROM RDB$DATABASE;
LOWER
========
ia
SQL> SELECT LOWER('AӴЁΪΣƓİ') FROM RDB$DATABASE;
LOWER
============================
aӵёϊσɠi
|
|
Description
|
Example: The 'İ' (U+0130) is composed by two bytes. But its lowercase is composed by 1 byte. It was throwing errors, but correct result would be:
SQL> SELECT LOWER('İA') FROM RDB$DATABASE;
LOWER
========
ia
SQL> SELECT LOWER('AӴЁΪΣƓİ') FROM RDB$DATABASE;
LOWER
============================
aӵёϊσɠi
|
Show » |
Fixed CORE-2355 - Incorrect handling of LOWER/UPPER when result string shrinks in terms of byte length
|
|
|
Backport fix for CORE-2355 - Incorrect handling of LOWER/UPPER when result string shrinks in terms of byte length
|
|
|
Backport fix for CORE-2355 - Incorrect handling of LOWER/UPPER when result string shrinks in terms of byte length.
|
|
|
|