| 2028 | // |
| 2029 | |
| 2030 | static void gen_erase( const act* action, int column) |
| 2031 | { |
| 2032 | if (action->act_error || (action->act_flags & ACT_sql)) |
| 2033 | begin(column); |
| 2034 | |
| 2035 | const upd* erase = (upd*) action->act_object; |
| 2036 | gen_send(action, erase->upd_port, column); |
| 2037 | |
| 2038 | if (action->act_flags & ACT_sql) |
| 2039 | endp(column); |
| 2040 | } |
| 2041 | |
| 2042 | |
| 2043 | //____________________________________________________________ |
no test coverage detected