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

21 uses

	github.com/jackc/pgx/v5 (current package)
		batch.go#L13: 	SQL       string
		batch.go#L76: 		SQL:       query,
		batch.go#L270: 		query = bi.SQL
		batch.go#L451: 	return bi.SQL, bi.Arguments, nil
		batch.go#L498: 				sc.Invalidate(bi.SQL)
		batch.go#L504: 				sc.Invalidate(bi.SQL)
		conn.go#L962: 		sql := bi.SQL
		conn.go#L985: 		bi.SQL = sql
		conn.go#L997: 		if sd, ok := c.preparedStatements[bi.SQL]; ok {
		conn.go#L1022: 		sql, err := c.sanitizeForSimpleQuery(bi.SQL, bi.Arguments...)
		conn.go#L1055: 			batch.ExecParams(bi.SQL, c.eqb.ParamValues, nil, c.eqb.ParamFormats, c.eqb.ResultFormats)
		conn.go#L1082: 			sd := c.statementCache.Get(bi.SQL)
		conn.go#L1086: 				if idx, present := distinctNewQueriesIdxMap[bi.SQL]; present {
		conn.go#L1090: 						Name: stmtcache.StatementName(bi.SQL),
		conn.go#L1091: 						SQL:  bi.SQL,
		conn.go#L1114: 			sd := c.descriptionCache.Get(bi.SQL)
		conn.go#L1118: 				if idx, present := distinctNewQueriesIdxMap[bi.SQL]; present {
		conn.go#L1122: 						SQL: bi.SQL,
		conn.go#L1141: 			if idx, present := distinctNewQueriesIdxMap[bi.SQL]; present {
		conn.go#L1145: 					SQL: bi.SQL,
		conn.go#L1231: 			err = newErrPreprocessingBatch("build", bi.SQL, err)