sharding 的遇到的相关坑

org.springframework.dao.InvalidDataAccessApiUsageException: Can't find index: AggregationSelectItem

  这个问题是用 sharding ,要对聚合函数起一个别名。 看官网给的解释:

sharding 的遇到的相关坑_第1张图片

 

 

 第二个问题:

io.shardingsphere.core.parsing.parser.exception.SQLParsingUnsupportedException: Not supported token 'DISTINCT'.

  这个问题,其实就是 sharding 不支持 distinct ,其实官网上说是支持下边图上的 distinct 的相关sql,但是因为的我的sql 后边是带了 where 条件查询的,所以不支持了。

sharding 的遇到的相关坑_第2张图片

   对于这个问题,如果不支持,那也没办法,就只在程序里边做去重。 

 

你可能感兴趣的:(数据库)