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
Postgres' extended query flow allows clients to present a statement for parsing that contains placeholder vars ($1, $2, ...$n) and later fill in these vars at the bind phase. However, sqlparser doesn't currently support placeholders (see apache/datafusion-sqlparser-rs#145).
Once the parser supports this, we should:
Pass the relevant data from the stream to ClientMessage::Bind (this is presently read, but immediately discarded)
Update the portal interface to accept param bindings
Fill out a proper ParameterDescription in response to prepared statement describe requests
The text was updated successfully, but these errors were encountered:
Postgres' extended query flow allows clients to present a statement for parsing that contains placeholder vars (
$1
,$2
, ...$n
) and later fill in these vars at the bind phase. However, sqlparser doesn't currently support placeholders (see apache/datafusion-sqlparser-rs#145).Once the parser supports this, we should:
ClientMessage::Bind
(this is presently read, but immediately discarded)ParameterDescription
in response to prepared statement describe requestsThe text was updated successfully, but these errors were encountered: