| 2815 | // |
| 2816 | |
| 2817 | static void gen_send( const act* action, const gpre_port* port, int column) |
| 2818 | { |
| 2819 | const gpre_req* request = action->act_request; |
| 2820 | align(column); |
| 2821 | |
| 2822 | fprintf(gpreGlob.out_file, "GDS__SEND (%s, %s, %d, %d, gds__%d, %s);", |
| 2823 | status_vector(action), |
| 2824 | request->req_handle, port->por_msg_number, |
| 2825 | port->por_length, port->por_ident, request->req_request_level); |
| 2826 | |
| 2827 | set_sqlcode(action, column); |
| 2828 | } |
| 2829 | |
| 2830 | |
| 2831 | //____________________________________________________________ |
no test coverage detected