simonvandel opened a new issue, #8245: URL: https://github.com/apache/arrow-datafusion/issues/8245
### Is your feature request related to a problem or challenge? https://docs.rs/datafusion/latest/datafusion/dataframe/struct.DataFrame.html#method.with_param_values allows filling query parameters with values. However, each parameter is positional, so that it corresponds to `$1`,`$2` and so forth. In certain situations, it might be clearer to use named parameters, e.g `$foo`. ### Describe the solution you'd like Would it be possible to support named query parameters? On a cursory look, it seems like the underlying LogicalPlan already supports mapping parameter ids to values, so this might "just" be change the `with_param_values` API. ### Describe alternatives you've considered Keep using positional query parameters. ### Additional context _No response_ -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
