| 2552 | } |
| 2553 | |
| 2554 | inline |
| 2555 | int Write_record::send_data() |
| 2556 | { |
| 2557 | /* |
| 2558 | We send the row after writing it to the table so that the |
| 2559 | correct values are sent to the client. Otherwise it won't show |
| 2560 | autoinc values (generated inside the handler::ha_write()) and |
| 2561 | values updated in ON DUPLICATE KEY UPDATE. |
| 2562 | */ |
| 2563 | return sink ? sink->send_data(thd->lex->returning()->returning_list) < 0 : 0; |
| 2564 | } |
| 2565 | |
| 2566 | |
| 2567 |
nothing calls this directly
no test coverage detected