dhegberg commented on issue #13570:
URL: https://github.com/apache/datafusion/issues/13570#issuecomment-2667446243

   I was looking at how to support named parameters for PREPARE statements.
   
   I expected the supported syntax in SQL dialects to looks something like:
   
   ```
   PREPARE function_name AS SELECT * FROM example WHERE column_a > :a_param AND 
column_b < :b_param"
   ```
   
   ```
   EXECUTE function_name USING :a_param = 10, :b_param = 20.5
   ```
   
   That sort of syntax does not seem to be present in most dialects, with a few 
exceptions (like [sqlite](https://www.sqlite.org/c3ref/bind_blob.html))
   
   What is the expected behavior / syntax we're look for with named parameters 
in the context of a prepared statement?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to