v0.2.3
- Added support for common parameters in StatementExecutionBackend (#59). The
StatementExecutionBackend
class in thedatabricks.labs.lsql
package'sbackends.py
file now supports the passing of common parameters through keyword arguments (kwargs). This enhancement allows for greater customization and flexibility in the backend's operation, as the kwargs are passed to theStatementExecutionExt
constructor. This change empowers users to control the behavior of the backend, making it more adaptable to various use cases. The key modification in this commit is the addition of the**kwargs
parameter in the constructor signature and passing it toStatementExecutionExt
, with no changes made to any methods within the class.
Contributors: @bishwajit-db