* CREATE FUNCTION dbms_sql.execute(c int) RETURNS bigint; */
| 1319 | * CREATE FUNCTION dbms_sql.execute(c int) RETURNS bigint; |
| 1320 | */ |
| 1321 | Datum |
| 1322 | dbms_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 | |
| 1331 | static uint64 |
| 1332 | fetch_rows(CursorData *c, bool exact) |
nothing calls this directly
no test coverage detected