type database/sql/driver.TxOptions

9 uses

	database/sql/driver (current package)
		driver.go#L267: type TxOptions struct {
		driver.go#L286: 	BeginTx(ctx context.Context, opts TxOptions) (Tx, error)

	database/sql
		ctxutil.go#L99: 		dopts := driver.TxOptions{}

	contrib.go.opencensus.io/integrations/ocsql
		driver.go#L348: 	return c.BeginTx(context.TODO(), driver.TxOptions{})
		driver.go#L384: func (c *ocConn) BeginTx(ctx context.Context, opts driver.TxOptions) (tx driver.Tx, err error) {

	github.com/jackc/pgx/v4/stdlib
		sql.go#L285: 	return c.BeginTx(context.Background(), driver.TxOptions{})
		sql.go#L288: func (c *Conn) BeginTx(ctx context.Context, opts driver.TxOptions) (driver.Tx, error) {

	github.com/lib/pq
		conn_go18.go#L46: func (cn *conn) BeginTx(ctx context.Context, opts driver.TxOptions) (driver.Tx, error) {

	golang.org/x/pkgsite/internal/database
		driver.go#L85: func (c *wrapConn) BeginTx(ctx context.Context, opts driver.TxOptions) (driver.Tx, error) {