branches/zip: scripts/install_innodb_plugins_win.sql: New script,

for installing the InnoDB plugins in Windows.  Copied from
scripts/install_innodb_plugins.sql.
This commit is contained in:
marko 2008-10-31 12:21:43 +00:00
parent ca101da68a
commit 0746887e2c

View file

@ -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';