MCPcopy Create free account
hub / github.com/apache/cloudberry / PQsendDescribePortal

Function PQsendDescribePortal

src/interfaces/libpq/fe-exec.c:2473–2477  ·  view source on GitHub ↗

* PQsendDescribePortal * Submit a Describe Portal command, but don't wait for it to finish * * Returns: 1 if successfully submitted * 0 if error (conn->errorMessage is set) */

Source from the content-addressed store, hash-verified

2471 * 0 if error (conn->errorMessage is set)
2472 */
2473int
2474PQsendDescribePortal(PGconn *conn, const char *portal)
2475{
2476 return PQsendDescribe(conn, 'P', portal);
2477}
2478
2479/*
2480 * PQsendDescribe

Callers 1

test_preparedFunction · 0.85

Calls 1

PQsendDescribeFunction · 0.85

Tested by 1

test_preparedFunction · 0.68