(ctx context.Context, args []driver.NamedValue)
| 256 | } |
| 257 | |
| 258 | func (s *impersonatedStmt) QueryContext(ctx context.Context, args []driver.NamedValue) (driver.Rows, error) { |
| 259 | return s.db.QueryContext(ctx, s.query, args) |
| 260 | } |
| 261 | |
| 262 | func allocateConnAndSeq() (connID uint64, seqNo uint64) { |
| 263 | connIDLock.Lock() |
nothing calls this directly
no test coverage detected