| 4015 | } |
| 4016 | |
| 4017 | static inline MYSQL_ROW fetch_row(MYSQL_RES *result) |
| 4018 | { |
| 4019 | MYSQL_ROW row = mysql_fetch_row(result); |
| 4020 | #ifndef EMBEDDED_LIBRARY |
| 4021 | if (last_progress_report_length) { |
| 4022 | report_progress_end(); |
| 4023 | } |
| 4024 | #endif |
| 4025 | return row; |
| 4026 | } |
| 4027 | |
| 4028 | static void |
| 4029 | print_table_data(MYSQL_RES *result) |
no test coverage detected