github.com/jackc/pgx/v5.QueuedQuery.SQL (field)

21 uses

	github.com/jackc/pgx/v5 (current package)
		batch.go#L13: 	SQL       string
		batch.go#L77: 		SQL:       query,
		batch.go#L271: 		query = bi.SQL
		batch.go#L452: 	return bi.SQL, bi.Arguments, nil
		batch.go#L499: 				sc.Invalidate(bi.SQL)
		batch.go#L505: 				sc.Invalidate(bi.SQL)
		conn.go#L963: 		sql := bi.SQL
		conn.go#L986: 		bi.SQL = sql
		conn.go#L998: 		if sd, ok := c.preparedStatements[bi.SQL]; ok {
		conn.go#L1023: 		sql, err := c.sanitizeForSimpleQuery(bi.SQL, bi.Arguments...)
		conn.go#L1056: 			batch.ExecParams(bi.SQL, c.eqb.ParamValues, nil, c.eqb.ParamFormats, c.eqb.ResultFormats)
		conn.go#L1083: 			sd := c.statementCache.Get(bi.SQL)
		conn.go#L1087: 				if idx, present := distinctNewQueriesIdxMap[bi.SQL]; present {
		conn.go#L1091: 						Name: stmtcache.StatementName(bi.SQL),
		conn.go#L1092: 						SQL:  bi.SQL,
		conn.go#L1115: 			sd := c.descriptionCache.Get(bi.SQL)
		conn.go#L1119: 				if idx, present := distinctNewQueriesIdxMap[bi.SQL]; present {
		conn.go#L1123: 						SQL: bi.SQL,
		conn.go#L1142: 			if idx, present := distinctNewQueriesIdxMap[bi.SQL]; present {
		conn.go#L1146: 					SQL: bi.SQL,
		conn.go#L1232: 			err = newErrPreprocessingBatch("build", bi.SQL, err)