Sign in
apache
/
cloudberry
/
refs/heads/cbdb-postgres-merge
/
.
/
src
/
test
/
regress
/
expected
/
gp_xml.out
blob: d8e57bfee09020b3cf3769fe56ab2f4a6c9c33fa [
file
] [
log
] [
blame
]
SELECT XMLPARSE
(
CONTENT
'<abc>x</abc>'
::
text STRIP WHITESPACE
)
AS
"xmlparse"
;
xmlparse
--------------
<abc>
x
</
abc
>
(
1
row
)
SELECT XMLPARSE
(
CONTENT
'<abc>x</abc>'
::
text PRESERVE WHITESPACE
)
AS
"xmlparse"
;
xmlparse
--------------
<abc>
x
</
abc
>
(
1
row
)