mirror of https://github.com/jackc/pgx.git
Rename base package to pgconn
parent
b89ba28919
commit
9990e4894d
12
conn.go
12
conn.go
|
@ -22,7 +22,7 @@ import (
|
||||||
|
|
||||||
"github.com/pkg/errors"
|
"github.com/pkg/errors"
|
||||||
|
|
||||||
"github.com/jackc/pgx/base"
|
"github.com/jackc/pgx/pgconn"
|
||||||
"github.com/jackc/pgx/pgio"
|
"github.com/jackc/pgx/pgio"
|
||||||
"github.com/jackc/pgx/pgproto3"
|
"github.com/jackc/pgx/pgproto3"
|
||||||
"github.com/jackc/pgx/pgtype"
|
"github.com/jackc/pgx/pgtype"
|
||||||
|
@ -94,7 +94,7 @@ type ConnConfig struct {
|
||||||
// Use ConnPool to manage access to multiple database connections from multiple
|
// Use ConnPool to manage access to multiple database connections from multiple
|
||||||
// goroutines.
|
// goroutines.
|
||||||
type Conn struct {
|
type Conn struct {
|
||||||
pgConn *base.PgConn
|
pgConn *pgconn.PgConn
|
||||||
wbuf []byte
|
wbuf []byte
|
||||||
config ConnConfig // config used when establishing this connection
|
config ConnConfig // config used when establishing this connection
|
||||||
preparedStatements map[string]*PreparedStatement
|
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
|
// ErrTLSRefused occurs when the connection attempt requires TLS and the
|
||||||
// PostgreSQL server refuses to use TLS
|
// 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
|
// ErrConnBusy occurs when the connection is busy (for example, in the middle of
|
||||||
// reading query results) and another action is attempted.
|
// 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) {
|
func (c *Conn) connect(config ConnConfig, tlsConfig *tls.Config) (err error) {
|
||||||
cc := base.ConnConfig{
|
cc := pgconn.ConnConfig{
|
||||||
Host: config.Host,
|
Host: config.Host,
|
||||||
Port: config.Port,
|
Port: config.Port,
|
||||||
Database: config.Database,
|
Database: config.Database,
|
||||||
User: config.User,
|
User: config.User,
|
||||||
Password: config.Password,
|
Password: config.Password,
|
||||||
TLSConfig: tlsConfig,
|
TLSConfig: tlsConfig,
|
||||||
Dial: base.DialFunc(config.Dial),
|
Dial: pgconn.DialFunc(config.Dial),
|
||||||
RuntimeParams: config.RuntimeParams,
|
RuntimeParams: config.RuntimeParams,
|
||||||
}
|
}
|
||||||
|
|
||||||
c.pgConn, err = base.Connect(cc)
|
c.pgConn, err = pgconn.Connect(cc)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,7 @@ import (
|
||||||
"reflect"
|
"reflect"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/jackc/pgx/base"
|
"github.com/jackc/pgx/pgconn"
|
||||||
"github.com/jackc/pgx/pgio"
|
"github.com/jackc/pgx/pgio"
|
||||||
"github.com/jackc/pgx/pgtype"
|
"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
|
// Notice represents a notice response message reported by the PostgreSQL
|
||||||
// server. Be aware that this is distinct from LISTEN/NOTIFY notification.
|
// server. Be aware that this is distinct from LISTEN/NOTIFY notification.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package base
|
package pgconn
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"crypto/md5"
|
"crypto/md5"
|
|
@ -1,7 +1,7 @@
|
||||||
package base_test
|
package pgconn_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/jackc/pgx/base"
|
"github.com/jackc/pgx/pgconn"
|
||||||
|
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestSimple(t *testing.T) {
|
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)
|
require.Nil(t, err)
|
||||||
|
|
||||||
pgConn.SendExec("select current_database()")
|
pgConn.SendExec("select current_database()")
|
Loading…
Reference in New Issue