GetCurrentSchema implements adapter.ConnectionHolder.
()
| 232 | } |
| 233 | |
| 234 | // GetTxn implements adapter.ConnectionHolder. |
| 235 | func (sess *Session) GetTxn(ctx context.Context, options *stdsql.TxOptions) (*stdsql.Tx, error) { |
| 236 | return sess.db.Pool().GetTxn(ctx, sess.ID(), sess.GetCurrentDatabase(), options) |
| 237 | } |
| 238 | |
| 239 | // GetCatalogTxn implements adapter.ConnectionHolder. |
nothing calls this directly
no test coverage detected