Is your enhancement related to a problem? Please describe.
Currently, statement parameters are replaced with null. This is fine for most statements as far as I can tell but will cause issues in INSERTs when inserting into a non-nullable column.
Posting this here in case you have some ideas on the feasibility of either:
Sending a (not null) parameter array in syntax analysis based on the type
Analyzing without passing any parameter value (pgClient.query(fileText) with parameters errors out)
For now I'm simply ignoring inserts altogether so it's not that big an issue:
Is your enhancement related to a problem? Please describe.
Currently, statement parameters are replaced with
null
. This is fine for most statements as far as I can tell but will cause issues inINSERT
s when inserting into a non-nullable column.Posting this here in case you have some ideas on the feasibility of either:
null
) parameter array in syntax analysis based on the typepgClient.query(fileText)
with parameters errors out)For now I'm simply ignoring
insert
s altogether so it's not that big an issue:Describe the solution you would like
Describe alternatives you have considered
Additional context