const github.com/jackc/pgconn/stmtcache.ModeDescribe

6 uses

	github.com/jackc/pgconn/stmtcache (current package)
		stmtcache.go#L12: 	ModeDescribe        // Cache should prepare the anonymous prepared statement to only fetch the description of the statement.
		stmtcache.go#L49: 	if mode != ModePrepare && mode != ModeDescribe {

	github.com/jackc/pgx/v4
		conn.go#L154: 			statementCacheMode = stmtcache.ModeDescribe
		conn.go#L458: 		if c.stmtcache.Mode() == stmtcache.ModeDescribe {
		conn.go#L667: 	if c.stmtcache != nil && c.stmtcache.Mode() == stmtcache.ModeDescribe {
		conn.go#L767: 			stmtCache = stmtcache.New(c.pgConn, stmtcache.ModeDescribe, len(distinctUnpreparedQueries))