You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
Describe the solution you would like
Describe alternatives you have considered
Additional context
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: