1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Add SQL script to install InnoDB if it is built as a dynamic plugin

Suggested by:	Ken
This commit is contained in:
vasil
2008-04-30 06:31:25 +00:00
parent 45e4a0eb8a
commit fa5f770f40

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.so';
INSTALL PLUGIN innodb_trx SONAME 'ha_innodb.so';
INSTALL PLUGIN innodb_locks SONAME 'ha_innodb.so';
INSTALL PLUGIN innodb_lock_waits SONAME 'ha_innodb.so';
INSTALL PLUGIN innodb_cmp SONAME 'ha_innodb.so';
INSTALL PLUGIN innodb_cmp_reset SONAME 'ha_innodb.so';
INSTALL PLUGIN innodb_cmpmem SONAME 'ha_innodb.so';
INSTALL PLUGIN innodb_cmpmem_reset SONAME 'ha_innodb.so';