| 1643 | // |
| 1644 | |
| 1645 | static void gen_estore( const act* action, int column) |
| 1646 | { |
| 1647 | gpre_req* request = action->act_request; |
| 1648 | |
| 1649 | // if we did a store ... returning_values aka store2 |
| 1650 | // just wrap up any dangling error handling |
| 1651 | if (request->req_type == REQ_store2) |
| 1652 | { |
| 1653 | if (action->act_error) |
| 1654 | endif(column); |
| 1655 | return; |
| 1656 | } |
| 1657 | |
| 1658 | gen_start(action, request->req_primary, column); |
| 1659 | if (action->act_error) |
| 1660 | endif(column); |
| 1661 | } |
| 1662 | |
| 1663 | |
| 1664 | //____________________________________________________________ |
no test coverage detected