package pgx
import "github.com/golang-migrate/migrate/v4/database/pgx"
Index ¶
- Constants
- Variables
- func WithInstance(instance *sql.DB, config *Config) (database.Driver, error)
- type Config
- type Postgres
- func (p *Postgres) Close() error
- func (p *Postgres) Drop() (err error)
- func (p *Postgres) Lock() error
- func (p *Postgres) Open(url string) (database.Driver, error)
- func (p *Postgres) Run(migration io.Reader) error
- func (p *Postgres) SetVersion(version int, dirty bool) error
- func (p *Postgres) Unlock() error
- func (p *Postgres) Version() (version int, dirty bool, err error)
Constants ¶
const ( LockStrategyAdvisory = "advisory" LockStrategyTable = "table" )
Variables ¶
var ( DefaultMigrationsTable = "schema_migrations" DefaultMultiStatementMaxSize = 10 * 1 << 20 // 10 MB DefaultLockTable = "schema_lock" DefaultLockStrategy = LockStrategyAdvisory )
var ( ErrNilConfig = fmt.Errorf("no config") ErrNoDatabaseName = fmt.Errorf("no database name") ErrNoSchema = fmt.Errorf("no schema") ErrDatabaseDirty = fmt.Errorf("database is dirty") )
Functions ¶
func WithInstance ¶
Types ¶
type Config ¶
type Config struct { MigrationsTable string DatabaseName string SchemaName string LockTable string LockStrategy string StatementTimeout time.Duration MigrationsTableQuoted bool MultiStatementEnabled bool MultiStatementMaxSize int // contains filtered or unexported fields }
type Postgres ¶
type Postgres struct {
// contains filtered or unexported fields
}
func (*Postgres) Close ¶
func (*Postgres) Drop ¶
func (*Postgres) Lock ¶
func (*Postgres) Open ¶
func (*Postgres) Run ¶
func (*Postgres) SetVersion ¶
func (*Postgres) Unlock ¶
func (*Postgres) Version ¶
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
database/pgx/v5 |
- Version
- v4.18.3 (latest)
- Published
- Apr 17, 2025
- Platform
- darwin/amd64
- Imports
- 18 packages
- Last checked
- 39 minutes ago –
Tools for package owners.