Rename base package to pgconn

v4-experimental
Jack Christensen 2018-12-28 17:09:56 -06:00
parent b89ba28919
commit 9990e4894d
5 changed files with 13 additions and 13 deletions

12
conn.go
View File

@ -22,7 +22,7 @@ import (
"github.com/pkg/errors"
"github.com/jackc/pgx/base"
"github.com/jackc/pgx/pgconn"
"github.com/jackc/pgx/pgio"
"github.com/jackc/pgx/pgproto3"
"github.com/jackc/pgx/pgtype"
@ -94,7 +94,7 @@ type ConnConfig struct {
// Use ConnPool to manage access to multiple database connections from multiple
// goroutines.
type Conn struct {
pgConn *base.PgConn
pgConn *pgconn.PgConn
wbuf []byte
config ConnConfig // config used when establishing this connection
preparedStatements map[string]*PreparedStatement
@ -179,7 +179,7 @@ var ErrDeadConn = errors.New("conn is dead")
// ErrTLSRefused occurs when the connection attempt requires TLS and the
// PostgreSQL server refuses to use TLS
var ErrTLSRefused = base.ErrTLSRefused
var ErrTLSRefused = pgconn.ErrTLSRefused
// ErrConnBusy occurs when the connection is busy (for example, in the middle of
// reading query results) and another action is attempted.
@ -244,18 +244,18 @@ func connect(config ConnConfig, connInfo *pgtype.ConnInfo) (c *Conn, err error)
}
func (c *Conn) connect(config ConnConfig, tlsConfig *tls.Config) (err error) {
cc := base.ConnConfig{
cc := pgconn.ConnConfig{
Host: config.Host,
Port: config.Port,
Database: config.Database,
User: config.User,
Password: config.Password,
TLSConfig: tlsConfig,
Dial: base.DialFunc(config.Dial),
Dial: pgconn.DialFunc(config.Dial),
RuntimeParams: config.RuntimeParams,
}
c.pgConn, err = base.Connect(cc)
c.pgConn, err = pgconn.Connect(cc)
if err != nil {
return err
}

View File

@ -6,7 +6,7 @@ import (
"reflect"
"time"
"github.com/jackc/pgx/base"
"github.com/jackc/pgx/pgconn"
"github.com/jackc/pgx/pgio"
"github.com/jackc/pgx/pgtype"
)
@ -79,7 +79,7 @@ func (fd FieldDescription) Type() reflect.Type {
}
}
type PgError = base.PgError
type PgError = pgconn.PgError
// Notice represents a notice response message reported by the PostgreSQL
// server. Be aware that this is distinct from LISTEN/NOTIFY notification.

View File

@ -1,4 +1,4 @@
package base
package pgconn
import (
"crypto/md5"

View File

@ -1,7 +1,7 @@
package base_test
package pgconn_test
import (
"github.com/jackc/pgx/base"
"github.com/jackc/pgx/pgconn"
"testing"
@ -10,7 +10,7 @@ import (
)
func TestSimple(t *testing.T) {
pgConn, err := base.Connect(base.ConnConfig{Host: "/var/run/postgresql", User: "jack", Database: "pgx_test"})
pgConn, err := pgconn.Connect(pgconn.ConnConfig{Host: "/var/run/postgresql", User: "jack", Database: "pgx_test"})
require.Nil(t, err)
pgConn.SendExec("select current_database()")

2
v4.md
View File

@ -34,7 +34,7 @@ Minor Potential Changes:
## Changes
`base.PgConn` now contains core PostgreSQL connection functionality.
`pgconn.PgConn` now contains core PostgreSQL connection functionality.
### Incompatible Changes