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

Function dbms_sql_execute

gpcontrib/orafce/dbms_sql.c:1321–1329  ·  view source on GitHub ↗

* CREATE FUNCTION dbms_sql.execute(c int) RETURNS bigint; */

Source from the content-addressed store, hash-verified

1319 * CREATE FUNCTION dbms_sql.execute(c int) RETURNS bigint;
1320 */
1321Datum
1322dbms_sql_execute(PG_FUNCTION_ARGS)
1323{
1324 CursorData *c;
1325
1326 c = get_cursor(fcinfo, true);
1327
1328 PG_RETURN_INT64((int64) execute(c));
1329}
1330
1331static uint64
1332fetch_rows(CursorData *c, bool exact)

Callers

nothing calls this directly

Calls 2

get_cursorFunction · 0.85
executeFunction · 0.70

Tested by

no test coverage detected