如何安装OQGRAPH插件



我已经在windows7机器上安装了MariaDB。那么如何安装OQGRAPH存储引擎呢?

我尝试了以下SQL查询:

MariaDB [(none)]> INSTALL PLUGIN oqgraph SONAME 'ha_oqgraph.dll';

,返回如下错误。

错误1126 (HY000): Can't open shared library 'C:ProgrammiMariaDB 10.0libplugin ha_oqgraphic .dll

您应该考虑安装oqgraph引擎,您需要安装一些要求,如libjudy和Boost,您应该考虑安装的版本。(MariaDB从10.0.11和OQGraph v3开始)Boost库>= 1.55,Judy为1.0.5。可能其他最新版本的Boost, Judy或MSVC可能工作,但这些组合尚未经过测试。

对于Boost 1.55:www.boost.org。朱迪1.05的源包:http://judy.sourceforge.net/。按照文档说明从命令行在Windows下进行构建:https://mariadb.com/kb/en/mariadb/Building_MariaDB_on_Windows/。确保以下变量设置为CMAKE: JUDY_ROOT=pathtojudyunzipped。参见:storage/oqgraph/cmake/FindJudy中的注释。cmake .

最新更新