From 0746887e2c7f32a8bb02471816cf36e546553b0f Mon Sep 17 00:00:00 2001 From: marko Date: Fri, 31 Oct 2008 12:21:43 +0000 Subject: [PATCH] branches/zip: scripts/install_innodb_plugins_win.sql: New script, for installing the InnoDB plugins in Windows. Copied from scripts/install_innodb_plugins.sql. --- scripts/install_innodb_plugins_win.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 scripts/install_innodb_plugins_win.sql diff --git a/scripts/install_innodb_plugins_win.sql b/scripts/install_innodb_plugins_win.sql new file mode 100644 index 00000000000..8c94b4e240d --- /dev/null +++ b/scripts/install_innodb_plugins_win.sql @@ -0,0 +1,9 @@ +-- execute these to install InnoDB if it is built as a dynamic plugin +INSTALL PLUGIN innodb SONAME 'ha_innodb.dll'; +INSTALL PLUGIN innodb_trx SONAME 'ha_innodb.dll'; +INSTALL PLUGIN innodb_locks SONAME 'ha_innodb.dll'; +INSTALL PLUGIN innodb_lock_waits SONAME 'ha_innodb.dll'; +INSTALL PLUGIN innodb_cmp SONAME 'ha_innodb.dll'; +INSTALL PLUGIN innodb_cmp_reset SONAME 'ha_innodb.dll'; +INSTALL PLUGIN innodb_cmpmem SONAME 'ha_innodb.dll'; +INSTALL PLUGIN innodb_cmpmem_reset SONAME 'ha_innodb.dll';