type database/sql.IsolationLevel

8 uses

	database/sql (current package)
		sql.go#L119: type IsolationLevel int
		sql.go#L126: 	LevelDefault IsolationLevel = iota
		sql.go#L137: func (i IsolationLevel) String() string {
		sql.go#L166: 	Isolation IsolationLevel

	github.com/jackc/pgx/v4/stdlib
		sql.go#L299: 	switch sql.IsolationLevel(opts.Isolation) {

	github.com/lib/pq
		conn_go18.go#L49: 	switch sql.IsolationLevel(opts.Isolation) {

	golang.org/x/pkgsite/internal/database
		database.go#L173: func (db *DB) Transact(ctx context.Context, iso sql.IsolationLevel, txFunc func(*DB) error) (err error) {
		database.go#L184: func isRetryable(iso sql.IsolationLevel) bool {