* CREATE FUNCTION dbms_sql.fetch_rows(c int) RETURNS int; */
| 1420 | * CREATE FUNCTION dbms_sql.fetch_rows(c int) RETURNS int; |
| 1421 | */ |
| 1422 | Datum |
| 1423 | dbms_sql_fetch_rows(PG_FUNCTION_ARGS) |
| 1424 | { |
| 1425 | CursorData *c; |
| 1426 | |
| 1427 | c = get_cursor(fcinfo, true); |
| 1428 | |
| 1429 | PG_RETURN_INT32(fetch_rows(c, false)); |
| 1430 | } |
| 1431 | |
| 1432 | /* |
| 1433 | * CREATE FUNCTION dbms_sql.execute_and_fetch(c int, exact bool DEFAULT false) RETURNS int; |
nothing calls this directly
no test coverage detected