# doesn't work with embedded server--sourceinclude/not_embedded.inc# Non-windows specific ps tests.--sourceinclude/not_windows.inc# requires dynamic loadingif(`SELECT @@have_dynamic_loading != 'YES'`){--skipps_not_windowsrequiresdynamicloading}## Bug #20665: All commands supported in Stored Procedures should work in# Prepared Statements#createprocedureproc_1()installpluginmy_plugsoname'/root/some_plugin.so';--errorER_UDF_NO_PATHScallproc_1();--errorER_UDF_NO_PATHScallproc_1();--errorER_UDF_NO_PATHScallproc_1();dropprocedureproc_1;prepareabcfrom"install plugin my_plug soname '/root/some_plugin.so'";--errorER_UDF_NO_PATHSexecuteabc;--errorER_UDF_NO_PATHSexecuteabc;deallocateprepareabc;