I am trying to run multiple queries in one Databricks transaction. I am using golang for that. But getting not implemented
error.
When I look at the library code:
// Not supported in Databricks.
func (c *conn) Begin() (driver.Tx, error) {
return nil, dbsqlerrint.NewDriverError(context.TODO(), dbsqlerr.ErrNotImplemented, nil)
}
// Not supported in Databricks.
func (c *conn) BeginTx(ctx context.Context, opts driver.TxOptions) (driver.Tx, error) {
return nil, dbsqlerrint.NewDriverError(context.TODO(), dbsqlerr.ErrNotImplemented, nil)
}
Is there a way I can run multiple queries in one transaction in databricks?