* Assign result to be (elt1 * elt2). */
| 1439 | * Assign result to be (elt1 * elt2). |
| 1440 | */ |
| 1441 | static |
| 1442 | inline |
| 1443 | Datum |
| 1444 | element_mult(Datum element, Oid elt_type, Datum result, |
| 1445 | Oid result_type, Datum opt_elt, Oid opt_type){ |
| 1446 | return element_op(element, elt_type, result, result_type, opt_elt, opt_type, float8_mult); |
| 1447 | } |
| 1448 | |
| 1449 | /* |
| 1450 | * Assign result to be (elt1 / elt2). |
nothing calls this directly
no test coverage detected