sqltoy-orm-4.17.6 发版,支持 Greenplum、并行查询可设置并行数量
开源地址: github:https://github.com/sagframe/sagacity-sqltoy gitee:https://gitee.com/sagacity/sagacity-sqltoy idea 插件(可直接在idea中检索安装):https://github.com/threefish/sqltoy-idea-plugins 更新内容 1、支持greenplum olap数据库 2、并行查询支持自行定义并行数量和最大等待时长 //例如:ParallelConfig.create().maxThreads(20) public <T> List<QueryResult<T>> parallQuery(List<ParallQuery> parallQueryList, Map<String, Object> paramsMap, ParallelConfig parallelConfig); 简要介绍sqltoy的几个特点 sqltoy提供了最简洁的动态sql编写 我们对比一下myba...