| Geoserver wrapes column and table names in quotes when sending SQL queries. It is unexpected behavior because DBMS may treated this situation in a special way. For example, WFS-T transaction:
<wfs:Insert>
<feature:LOG xmlns:feature="http://www.opengeospatial.net/blabla">
<feature:user_name>name1</feature:user_name>
...
</feature:LOG>
</wfs:Insert>
and part of generated SQL query: INSERT INTO "blabla"."blabla" ( "user_name", ...) VALUES ( $1, ...) must be: INSERT INTO blabla.blabla ( user_name, ...) VALUES ( $1, ...) |