github.com/jackc/pgconn.StatementDescription.SQL (field)

7 uses

	github.com/jackc/pgconn (current package)
		pgconn.go#L732: 	SQL       string
		pgconn.go#L766: 	psd := &StatementDescription{Name: name, SQL: sql}

	github.com/jackc/pgconn/stmtcache
		lru.go#L116: 	delete(c.m, psd.SQL)
		lru.go#L152: 	delete(c.m, psd.SQL)

	github.com/jackc/pgx/v4
		conn.go#L271: 		if sd, ok = c.preparedStatements[name]; ok && sd.SQL == sql {
		conn.go#L519: 	result := c.pgConn.ExecParams(ctx, sd.SQL, c.eqb.paramValues, sd.ParamOIDs, c.eqb.paramFormats, c.eqb.resultFormats).Read()
		conn.go#L636: 	rows.sql = sd.SQL