Skip to content

Commit b94ed1a

Browse files
authored
Add driver for pgx v5 (#848)
* Add driver for pgx v5 Fixes #827 - Move existing driver into database/pgx/v4 - Make exported items into database/pgx into links to database/pgx/v4, marked as Deprecated - Remove most tests in database/pgx, leaving a couple of e2e tests behind to help ensure backwards compatibility. - Mark defunct ErrDatabaseDirty as Deprecated - no code returns it - Bump pgx/v4 dependency - Add test runs for newer Postgres versions * Tweak pgx tags and registration strings * Tweak registration strings
1 parent c34675f commit b94ed1a

File tree

11 files changed

+1343
-25
lines changed

11 files changed

+1343
-25
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
SOURCE ?= file go_bindata github github_ee bitbucket aws_s3 google_cloud_storage godoc_vfs gitlab
2-
DATABASE ?= postgres mysql redshift cassandra spanner cockroachdb yugabytedb clickhouse mongodb sqlserver firebird neo4j pgx
2+
DATABASE ?= postgres mysql redshift cassandra spanner cockroachdb yugabytedb clickhouse mongodb sqlserver firebird neo4j pgx pgx5
33
DATABASE_TEST ?= $(DATABASE) sqlite sqlite3 sqlcipher
44
VERSION ?= $(shell git describe --tags 2>/dev/null | cut -c 2-)
55
TEST_FLAGS ?=

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ Forked from [mattes/migrate](https://github.com/mattes/migrate)
2424
Database drivers run migrations. [Add a new database?](database/driver.go)
2525

2626
* [PostgreSQL](database/postgres)
27-
* [PGX](database/pgx)
27+
* [PGX v4](database/pgx)
28+
* [PGX v5](database/pgx/v5)
2829
* [Redshift](database/redshift)
2930
* [Ql](database/ql)
3031
* [Cassandra](database/cassandra)

database/pgx/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# pgx
22

3+
This package is for [pgx/v4](https://pkg.go.dev/github.com/jackc/pgx/v4). A backend for the newer [pgx/v5](https://pkg.go.dev/github.com/jackc/pgx/v5) is [also available](v5).
4+
35
`pgx://user:password@host:port/dbname?query`
46

57
| URL Query | WithInstance Config | Description |

database/pgx/pgx.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ import (
2828
func init() {
2929
db := Postgres{}
3030
database.Register("pgx", &db)
31+
database.Register("pgx4", &db)
3132
}
3233

3334
var (
@@ -150,7 +151,7 @@ func (p *Postgres) Open(url string) (database.Driver, error) {
150151
// i.e. pgx://user:password@host:port/db => postgres://user:password@host:port/db
151152
purl.Scheme = "postgres"
152153

153-
db, err := sql.Open("pgx", migrate.FilterCustomQuery(purl).String())
154+
db, err := sql.Open("pgx/v4", migrate.FilterCustomQuery(purl).String())
154155
if err != nil {
155156
return nil, err
156157
}

database/pgx/pgx_test.go

+6-5
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,17 @@ import (
88
sqldriver "database/sql/driver"
99
"errors"
1010
"fmt"
11-
"log"
12-
1311
"io"
12+
"log"
1413
"strconv"
1514
"strings"
1615
"sync"
1716
"testing"
1817

19-
"github.com/golang-migrate/migrate/v4"
20-
2118
"github.com/dhui/dktest"
22-
19+
"github.com/golang-migrate/migrate/v4"
2320
"github.com/golang-migrate/migrate/v4/database"
21+
2422
dt "github.com/golang-migrate/migrate/v4/database/testing"
2523
"github.com/golang-migrate/migrate/v4/dktesting"
2624
_ "github.com/golang-migrate/migrate/v4/source/file"
@@ -41,6 +39,9 @@ var (
4139
{ImageName: "postgres:10", Options: opts},
4240
{ImageName: "postgres:11", Options: opts},
4341
{ImageName: "postgres:12", Options: opts},
42+
{ImageName: "postgres:13", Options: opts},
43+
{ImageName: "postgres:14", Options: opts},
44+
{ImageName: "postgres:15", Options: opts},
4445
}
4546
)
4647

database/pgx/v5/README.md

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# pgx
2+
3+
This package is for [pgx/v5](https://pkg.go.dev/github.com/jackc/pgx/v5). A backend for the older [pgx/v4](https://pkg.go.dev/github.com/jackc/pgx/v4). is [also available](..).
4+
5+
`pgx://user:password@host:port/dbname?query`
6+
7+
| URL Query | WithInstance Config | Description |
8+
|------------|---------------------|-------------|
9+
| `x-migrations-table` | `MigrationsTable` | Name of the migrations table |
10+
| `x-migrations-table-quoted` | `MigrationsTableQuoted` | By default, migrate quotes the migration table for SQL injection safety reasons. This option disable quoting and naively checks that you have quoted the migration table name. e.g. `"my_schema"."schema_migrations"` |
11+
| `x-statement-timeout` | `StatementTimeout` | Abort any statement that takes more than the specified number of milliseconds |
12+
| `x-multi-statement` | `MultiStatementEnabled` | Enable multi-statement execution (default: false) |
13+
| `x-multi-statement-max-size` | `MultiStatementMaxSize` | Maximum size of single statement in bytes (default: 10MB) |
14+
| `dbname` | `DatabaseName` | The name of the database to connect to |
15+
| `search_path` | | This variable specifies the order in which schemas are searched when an object is referenced by a simple name with no schema specified. |
16+
| `user` | | The user to sign in as |
17+
| `password` | | The user's password |
18+
| `host` | | The host to connect to. Values that start with / are for unix domain sockets. (default is localhost) |
19+
| `port` | | The port to bind to. (default is 5432) |
20+
| `fallback_application_name` | | An application_name to fall back to if one isn't provided. |
21+
| `connect_timeout` | | Maximum wait for connection, in seconds. Zero or not specified means wait indefinitely. |
22+
| `sslcert` | | Cert file location. The file must contain PEM encoded data. |
23+
| `sslkey` | | Key file location. The file must contain PEM encoded data. |
24+
| `sslrootcert` | | The location of the root certificate file. The file must contain PEM encoded data. |
25+
| `sslmode` | | Whether or not to use SSL (disable\|require\|verify-ca\|verify-full) |
26+
27+
28+
## Upgrading from v1
29+
30+
1. Write down the current migration version from schema_migrations
31+
1. `DROP TABLE schema_migrations`
32+
2. Wrap your existing migrations in transactions ([BEGIN/COMMIT](https://www.postgresql.org/docs/current/static/transaction-iso.html)) if you use multiple statements within one migration.
33+
3. Download and install the latest migrate version.
34+
4. Force the current migration version with `migrate force <current_version>`.
35+
36+
## Multi-statement mode
37+
38+
In PostgreSQL running multiple SQL statements in one `Exec` executes them inside a transaction. Sometimes this
39+
behavior is not desirable because some statements can be only run outside of transaction (e.g.
40+
`CREATE INDEX CONCURRENTLY`). If you want to use `CREATE INDEX CONCURRENTLY` without activating multi-statement mode
41+
you have to put such statements in a separate migration files.

0 commit comments

Comments
 (0)