| 2739 | */ |
| 2740 | |
| 2741 | bool append_definer(THD *thd, String *buffer, const LEX_CSTRING *definer_user, |
| 2742 | const LEX_CSTRING *definer_host) |
| 2743 | { |
| 2744 | return |
| 2745 | buffer->append(STRING_WITH_LEN("DEFINER=")) || |
| 2746 | append_identifier(thd, buffer, definer_user) || |
| 2747 | append_at_host(thd, buffer, definer_host) || |
| 2748 | buffer->append(' '); |
| 2749 | } |
| 2750 | |
| 2751 | |
| 2752 | static int show_create_view(THD *thd, TABLE_LIST *table, String *buff) |
no test coverage detected