presto-python-client
presto-python-client copied to clipboard
Add support for PREPARE statement
- When the client sends a query with a
PREPARE
statement, the coordinator replies with a HTTPheader X-Presto-Added-Prepare
- The client is then expected to send further requests with the HTTP header
X-Presto-Prepared-Statement
for exampleX-Presto-Prepared-Statement: my_select=SELECT+*%0AFROM%0A++some_table%0A
Is this the same as https://github.com/prestodb/presto/pull/10673 ?
Do you have any work planned in this topic?