时间:2021-07-01 10:21:17 帮助过:50人阅读
在使用Amoeba for mysql 进行水平切分的时候出现错误,水平切分规则根据date字段来切分
配置rule.xml片段如下:
odate
odate > to_date('2011-01-01','yyyy-mm-dd') and odate < to_date('2011-12-31','yyyy-mm-dd')
]]>
Node02
odate
odate > to_date('2012-01-01','yyyy-mm-dd') and odate < to_date('2012-12-31','yyyy-mm-dd')
]]>
Node03
odate
odate > to_date('2013-01-01','yyyy-mm-dd') and odate < to_date('2013-12-31','yyyy-mm-dd')
]]>
Node04
odate
odate > to_date('2014-01-01','yyyy-mm-dd') and odate < to_date('2014-12-31','yyyy-mm-dd')
]]>
Node05
请问有没有人遇到过这样的问题?