* CREATE FUNCTION dbms_sql.bind_variable_f(c int, name varchar2, value "any") RETURNS void; */
| 582 | * CREATE FUNCTION dbms_sql.bind_variable_f(c int, name varchar2, value "any") RETURNS void; |
| 583 | */ |
| 584 | Datum |
| 585 | dbms_sql_bind_variable_f(PG_FUNCTION_ARGS) |
| 586 | { |
| 587 | return bind_variable(fcinfo); |
| 588 | } |
| 589 | |
| 590 | static void |
| 591 | bind_array(FunctionCallInfo fcinfo, int index1, int index2) |
nothing calls this directly
no test coverage detected