mirror of https://github.com/jackc/pgx.git
Remove unused variables
parent
66625e6489
commit
de40fea100
7
conn.go
7
conn.go
|
@ -41,17 +41,14 @@ type Conn struct {
|
||||||
logger Logger
|
logger Logger
|
||||||
logLevel LogLevel
|
logLevel LogLevel
|
||||||
fp *fastpath
|
fp *fastpath
|
||||||
poolResetCount int
|
|
||||||
preallocatedRows []connRows
|
preallocatedRows []connRows
|
||||||
|
|
||||||
causeOfDeath error
|
causeOfDeath error
|
||||||
|
|
||||||
lastStmtSent bool
|
lastStmtSent bool
|
||||||
|
|
||||||
// context support
|
doneChan chan struct{}
|
||||||
ctxInProgress bool
|
closedChan chan error
|
||||||
doneChan chan struct{}
|
|
||||||
closedChan chan error
|
|
||||||
|
|
||||||
ConnInfo *pgtype.ConnInfo
|
ConnInfo *pgtype.ConnInfo
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue