| 373 | |
| 374 | |
| 375 | static void push_string(THD *thd, List<Item> *item_list, String *str) |
| 376 | { |
| 377 | item_list->push_back(new (thd->mem_root) |
| 378 | Item_string_sys(thd, str->ptr(), str->length()), |
| 379 | thd->mem_root); |
| 380 | } |
| 381 | |
| 382 | static void push_string_list(THD *thd, List<Item> *item_list, |
| 383 | String_list &lines, String *buf) |
no test coverage detected