Hi
I noted that the DB Insert node quotes the identifiers of the query. Is there a way to make it not quote the identifiers.
Example:
-- now
insert into
"budget"."budget_log"."ladevorgaenge"
(
"id"
)
values
(
'33349332-76eb-40f2-b3bf-ce1a042511a9'
)
-- then
insert into
budget.budget_log.ladevorgaenge
(
id
)
values
(
'33349332-76eb-40f2-b3bf-ce1a042511a9'
)