| 2017 | // |
| 2018 | |
| 2019 | static void gen_estore(const act* action) |
| 2020 | { |
| 2021 | const gpre_req* request = action->act_request; |
| 2022 | |
| 2023 | // if this is a store...returning_values (aka store2) |
| 2024 | // we already executed the store, so go home quietly |
| 2025 | |
| 2026 | if (request->req_type == REQ_store2) |
| 2027 | return; |
| 2028 | |
| 2029 | gen_start(action, request->req_primary); |
| 2030 | if (action->act_error || (action->act_flags & ACT_sql)) |
| 2031 | printa(COLUMN, "END IF"); |
| 2032 | } |
| 2033 | |
| 2034 | |
| 2035 | //____________________________________________________________ |
no test coverage detected