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

Function SPI_cursor_open_with_paramlist

src/backend/executor/spi.c:1552–1557  ·  view source on GitHub ↗

* SPI_cursor_open_with_paramlist() * * Same as SPI_cursor_open except that parameters (if any) are passed * as a ParamListInfo, which supports dynamic parameter set determination */

Source from the content-addressed store, hash-verified

1550 * as a ParamListInfo, which supports dynamic parameter set determination
1551 */
1552Portal
1553SPI_cursor_open_with_paramlist(const char *name, SPIPlanPtr plan,
1554 ParamListInfo params, bool read_only)
1555{
1556 return SPI_cursor_open_internal(name, plan, params, read_only);
1557}
1558
1559/* Parse a query and open it as a cursor */
1560Portal

Callers 3

exec_stmt_forcFunction · 0.85
exec_stmt_openFunction · 0.85
exec_run_selectFunction · 0.85

Calls 1

SPI_cursor_open_internalFunction · 0.85

Tested by

no test coverage detected