github.com/jackc/pgx/v4.batchItem.query (field)

9 uses

	github.com/jackc/pgx/v4 (current package)
		batch.go#L11: 	query     string
		batch.go#L24: 		query:     query,
		batch.go#L173: 		query = bi.query
		conn.go#L737: 			sql, err := c.sanitizeForSimpleQuery(bi.query, bi.arguments...)
		conn.go#L756: 		if _, ok := c.preparedStatements[bi.query]; ok {
		conn.go#L759: 		distinctUnpreparedQueries[bi.query] = struct{}{}
		conn.go#L783: 		sd := c.preparedStatements[bi.query]
		conn.go#L786: 			sd, err = stmtCache.Get(ctx, bi.query)
		conn.go#L814: 			batch.ExecParams(bi.query, c.eqb.paramValues, sd.ParamOIDs, c.eqb.paramFormats, c.eqb.resultFormats)