| 366 | |
| 367 | |
| 368 | static void push_str(THD *thd, List<Item> *item_list, const char *str) |
| 369 | { |
| 370 | item_list->push_back(new (thd->mem_root) Item_string_sys(thd, str), |
| 371 | thd->mem_root); |
| 372 | } |
| 373 | |
| 374 | |
| 375 | static void push_string(THD *thd, List<Item> *item_list, String *str) |
no test coverage detected