MySQL数据库mysql-test功能回归测试报main.range [fail]说明

来源:互联网 发布:usb端口定义 编辑:程序博客网 时间:2024/06/02 06:13

执行mysql-test程序回归功能测试,发现如下报fail。

main.range [fail]

 

查了一下问题:

#1289 - The 'partitioning' feature is disabled; you need MySQL built with '--with-partition' to have it working

in my.cnf  with-partition / have-partitioning=YES / other various combinations But failure

It's not a runtime option. It's telling you MySQL has to be compiled with that configuration option.

try to disable building static binaries, please don't use 

"--enable-static" configure option, you'd better use 

"--disable-static" instead.

 

大致意思:

partitioning 不可用,需要重新编译MySQL,添加'--with-partition'。(其实就是./configure --prefix=**  --with-partition)来让它工作。

在my.cnf with-partition / have-partitioning=YES /  或者其它的组合但是失败了,它不是一个动态配置项,而是要你按照这种模式重新编译MySQL后才可以开启这个功能。

0 0
原创粉丝点击