| 577 | // |
| 578 | |
| 579 | static void gen_send( const gpre_req* request, const gpre_port* port, int column, bool special) |
| 580 | { |
| 581 | if (special) |
| 582 | { |
| 583 | align(column); |
| 584 | fprintf(gpreGlob.out_file, "if (ignore_perm)"); |
| 585 | align(column); |
| 586 | fprintf(gpreGlob.out_file, "\trequest->getStatement()->flags |= Statement::FLAG_IGNORE_PERM;"); |
| 587 | } |
| 588 | align(column); |
| 589 | |
| 590 | fprintf(gpreGlob.out_file, "EXE_send (tdbb, %s, %d, %d, (UCHAR*) &jrd_%" ULONGFORMAT");", |
| 591 | request->req_handle, port->por_msg_number, port->por_length, port->por_ident); |
| 592 | } |
| 593 | |
| 594 | |
| 595 | //____________________________________________________________ |
no test coverage detected