Update main pgx package to compile with new pgconn

pull/483/head
Jack Christensen 2019-01-05 19:00:41 -06:00
parent e78fd95296
commit 1257b89df7
2 changed files with 15 additions and 15 deletions

28
conn.go
View File

@ -1002,9 +1002,10 @@ func quoteIdentifier(s string) string {
} }
func doCancel(c *Conn) error { func doCancel(c *Conn) error {
ctx, cancel := context.WithTimeout(context.Background(), 15*time.Second) // ctx, cancel := context.WithTimeout(context.Background(), 15*time.Second)
defer cancel() // defer cancel()
return c.pgConn.CancelRequest(ctx) // return c.pgConn.CancelRequest(ctx)
return errors.New("TODO - reimplement cancellation")
} }
// cancelQuery sends a cancel request to the PostgreSQL server. It returns an // cancelQuery sends a cancel request to the PostgreSQL server. It returns an
@ -1217,12 +1218,15 @@ func (c *Conn) Exec(ctx context.Context, sql string, arguments ...interface{}) (
func (c *Conn) exec(ctx context.Context, sql string, arguments ...interface{}) (commandTag pgconn.CommandTag, err error) { func (c *Conn) exec(ctx context.Context, sql string, arguments ...interface{}) (commandTag pgconn.CommandTag, err error) {
if len(arguments) == 0 { if len(arguments) == 0 {
c.lastStmtSent = true c.lastStmtSent = true
result, err := c.pgConn.Exec(ctx, sql) results, err := c.pgConn.Exec(ctx, sql).ReadAll()
if err != nil { if err != nil {
return "", err return "", err
} }
if len(results) == 0 {
return "", nil
}
return result.CommandTag, nil return results[len(results)-1].CommandTag, nil
} else { } else {
psd, err := c.pgConn.Prepare(ctx, "", sql, nil) psd, err := c.pgConn.Prepare(ctx, "", sql, nil)
if err != nil { if err != nil {
@ -1244,7 +1248,7 @@ func (c *Conn) exec(ctx context.Context, sql string, arguments ...interface{}) (
ps.ParameterOIDs[i] = pgtype.OID(psd.ParamOIDs[i]) ps.ParameterOIDs[i] = pgtype.OID(psd.ParamOIDs[i])
} }
for i := range ps.FieldDescriptions { for i := range ps.FieldDescriptions {
c.pgconnFieldDescriptionToPgxFieldDescription(&psd.Fields[i], &ps.FieldDescriptions[i]) c.pgproto3FieldDescriptionToPgxFieldDescription(&psd.Fields[i], &ps.FieldDescriptions[i])
} }
arguments, err = convertDriverValuers(arguments) arguments, err = convertDriverValuers(arguments)
@ -1269,12 +1273,8 @@ func (c *Conn) exec(ctx context.Context, sql string, arguments ...interface{}) (
} }
c.lastStmtSent = true c.lastStmtSent = true
result, err := c.pgConn.ExecPrepared(ctx, psd.Name, paramValues, paramFormats, resultFormats) result := c.pgConn.ExecPrepared(ctx, psd.Name, paramValues, paramFormats, resultFormats).Read()
if err != nil { return result.CommandTag, result.Err
return "", err
}
return result.CommandTag, nil
} }
} }
@ -1329,9 +1329,9 @@ func newencodePreparedStatementArgument(ci *pgtype.ConnInfo, oid pgtype.OID, arg
return nil, SerializationError(fmt.Sprintf("Cannot encode %T into oid %v - %T must implement Encoder or be converted to a string", arg, oid, arg)) return nil, SerializationError(fmt.Sprintf("Cannot encode %T into oid %v - %T must implement Encoder or be converted to a string", arg, oid, arg))
} }
// pgconnFieldDescriptionToPgxFieldDescription copies and converts the data from a pgproto3.FieldDescription to a // pgproto3FieldDescriptionToPgxFieldDescription copies and converts the data from a pgproto3.FieldDescription to a
// FieldDescription. // FieldDescription.
func (c *Conn) pgconnFieldDescriptionToPgxFieldDescription(src *pgconn.FieldDescription, dst *FieldDescription) { func (c *Conn) pgproto3FieldDescriptionToPgxFieldDescription(src *pgproto3.FieldDescription, dst *FieldDescription) {
dst.Name = src.Name dst.Name = src.Name
dst.Table = pgtype.OID(src.TableOID) dst.Table = pgtype.OID(src.TableOID)
dst.AttributeNumber = src.TableAttributeNumber dst.AttributeNumber = src.TableAttributeNumber

View File

@ -289,7 +289,7 @@ func TestTxCommitExCancel(t *testing.T) {
script.Steps = append(script.Steps, pgmock.PgxInitSteps()...) script.Steps = append(script.Steps, pgmock.PgxInitSteps()...)
script.Steps = append(script.Steps, script.Steps = append(script.Steps,
pgmock.ExpectMessage(&pgproto3.Query{String: "begin"}), pgmock.ExpectMessage(&pgproto3.Query{String: "begin"}),
pgmock.SendMessage(&pgproto3.CommandComplete{CommandTag: []byte("BEGIN")}), pgmock.SendMessage(&pgproto3.CommandComplete{CommandTag: "BEGIN"}),
pgmock.SendMessage(&pgproto3.ReadyForQuery{TxStatus: 'T'}), pgmock.SendMessage(&pgproto3.ReadyForQuery{TxStatus: 'T'}),
pgmock.WaitForClose(), pgmock.WaitForClose(),
) )