我已经在我的MariaDB机器上安装了windows7。那么如何安装OQGRAPH存储引擎呢?
我尝试过以下SQL查询:
MariaDB [(none)]> INSTALL PLUGIN oqgraph SONAME 'ha_oqgraph.dll';然后返回跟随错误。
错误1126 (HY000):无法打开共享库C:\Programmi\MariaDB 10.0\lib\plugin\ha_oqgraph.dll
发布于 2017-03-20 16:23:03
您应该考虑到,在安装oqgraph时,您需要安装一些需求,比如libjudy和Boost,并且应该考虑安装的版本。( MariaDB从10.0.11和OQGraph v3开始) Boost库>= 1.55和Judy1.0.5。也许其他最新版本的Boost,Judy或MSVC可以工作,但这些组合还没有经过测试。
用于增强1.55:www.boost.org。Judy1.05的源包:http://judy.sourceforge.net/。从命令行:https://mariadb.com/kb/en/mariadb/Building_MariaDB_on_Windows/遵循有关在Windows下构建的文档说明。确保将以下变量设置为CMAKE:JUDY_ROOT=path\to\judy\unzipped。另请参见:storage/oqgraph/cmake/FindJudy.cmake中的注释。
关照
https://stackoverflow.com/questions/38870110
复制相似问题