| 1990 | // |
| 1991 | |
| 1992 | static void gen_erase( const act* action, int column) |
| 1993 | { |
| 1994 | if (action->act_error || (action->act_flags & ACT_sql)) |
| 1995 | begin(column); |
| 1996 | |
| 1997 | const upd* erase = (upd*) action->act_object; |
| 1998 | gen_send(action, erase->upd_port, column); |
| 1999 | |
| 2000 | if (action->act_flags & ACT_sql) |
| 2001 | endp(column); |
| 2002 | } |
| 2003 | |
| 2004 | |
| 2005 | //____________________________________________________________ |
no test coverage detected