jwills / buenavista

A Postgres Proxy Server in Python
Apache License 2.0
252 stars 26 forks source link

Handle params according to the param_oids in handle_bind #31

Open ChaosEternal opened 2 months ago

ChaosEternal commented 2 months ago

Currently the handle_bind code can't support nested array data type, and more seriously, if the parameter is a string contains ',' or '}' , the parameters get is totall wrong.

Maybe we should use "converters" introduced by the "pg8000" project to properly handle this?

jwills commented 2 months ago

Oooh-- point me at it?