-
Notifications
You must be signed in to change notification settings - Fork 185
On binary XML storage insignificant whitespaces are removed. #880
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Documentation note on this can be found here: |
Raised it with ASKTom, as documentation is not mentioning data-infidelity. It smells like an Oracle bug. Not much we can do about it. |
LiveSQL demo of issue: |
Follow up question on XMLTABLE reading these data. |
Some of the changes been implemented in PR #895 |
@lwasylow - what should we do about this issue? |
I think we close it for now. Only problem is a whitespace vs double space. Not much we can do and no one raised as an issue. |
We should probably mention it in documentation. |
Yes it's only when we use xml as part of cursor comparison. Once we stop 11. 2 we could switch to json maybe. |
Updated tests o represent the issue more clearly. Closes #880
One more Idea that comes to my mind is to use |
On binary XML storage insignificant whitespaces are removed.
This is default way of storing XML data post 12.1 release and causing trimming of whitespaces.
Using CLOBS is inefficient.
e.g
select * from table(ut_varchar2_list(' '))
select * from table(ut_varchar2_list(''))
are showing as equal.
The text was updated successfully, but these errors were encountered: