* Assign result to be (elt1 - elt2). */
| 1428 | * Assign result to be (elt1 - elt2). |
| 1429 | */ |
| 1430 | static |
| 1431 | inline |
| 1432 | Datum |
| 1433 | element_sub(Datum element, Oid elt_type, Datum result, |
| 1434 | Oid result_type, Datum opt_elt, Oid opt_type){ |
| 1435 | return element_op(element, elt_type, result, result_type, opt_elt, opt_type, float8_sub); |
| 1436 | } |
| 1437 | |
| 1438 | /* |
| 1439 | * Assign result to be (elt1 * elt2). |
nothing calls this directly
no test coverage detected