* End the copy command on all segment databases, * and fetch the total number of rows completed by all QEs */
| 423 | * and fetch the total number of rows completed by all QEs |
| 424 | */ |
| 425 | void |
| 426 | cdbCopyEnd(CdbCopy *c, |
| 427 | int64 *total_rows_completed_p, |
| 428 | int64 *total_rows_rejected_p) |
| 429 | { |
| 430 | CHECK_FOR_INTERRUPTS(); |
| 431 | |
| 432 | cdbCopyEndInternal(c, NULL, |
| 433 | total_rows_completed_p, |
| 434 | total_rows_rejected_p); |
| 435 | } |
| 436 | |
| 437 | static void |
| 438 | cdbCopyEndInternal(CdbCopy *c, char *abort_msg, |
no test coverage detected