| 12918 | } |
| 12919 | |
| 12920 | bool LEX::stmt_install_plugin(const DDL_options_st &opt, |
| 12921 | const Lex_ident_sys_st &name, |
| 12922 | const LEX_CSTRING &soname) |
| 12923 | { |
| 12924 | create_info.init(); |
| 12925 | if (add_create_options_with_check(opt)) |
| 12926 | return true; |
| 12927 | sql_command= SQLCOM_INSTALL_PLUGIN; |
| 12928 | comment= name; |
| 12929 | ident= soname; |
| 12930 | return false; |
| 12931 | } |
| 12932 | |
| 12933 | |
| 12934 | void LEX::stmt_install_plugin(const LEX_CSTRING &soname) |