| 1744 | // |
| 1745 | |
| 1746 | static void gen_erase( const act* action, int column) |
| 1747 | { |
| 1748 | if (action->act_error || (action->act_flags & ACT_sql)) |
| 1749 | begin(column); |
| 1750 | |
| 1751 | const upd* erase = (upd*) action->act_object; |
| 1752 | gen_send(action, erase->upd_port, column); |
| 1753 | |
| 1754 | if (action->act_flags & ACT_sql) |
| 1755 | endp(column); |
| 1756 | } |
| 1757 | |
| 1758 | |
| 1759 | //____________________________________________________________ |
no test coverage detected