王勇

Results 7 issues of 王勇

for code review

> 本次提交尚未在线上充分验证,仅供交流,不用于合入 ## New Features: - 兼容性:支持bit类型 - 兼容性:支持distinct x,count(*)用法 - 功能性:join reorder 支持孩子节点 - Redis :新增函数timeseries_us,用于生成自增/自减时间序列,用于Redis的list索引下标 - Redis :新增setrange()函数,行为同Redis setrange命令 - Redis :新增last_value()函数,用于Redis原子命令,执行dml的同时返回旧值 - Redis :新增 redis bitmap 函数...

**Is your feature request related to a problem? Please describe.** 目前走全局索引查询,当单region数据量较大时是有一次prc串行完成,性能不足。分析下来主要有4个环节: 1. 查全局索引,单region单rpc,并发度不足 2. 构造主键,回表目前串行,可分批回表,构造主键过程中分批发送 3. 获取region优化,根据key计算region耗时较高 4. 主键回表db->store传输数据优化,range结构字段可以精简 **Describe the solution you'd like** - 分批回表,构造主键过程中分批发送, 11W数据全局索引回表耗时减少33%。 - 获取region优化,11w数据耗时减少11% -...

Fixes #17204. Changes proposed in this pull request: - support PostgreSQL/openGauss default schema in config-xxx.xml , Users can specify the search_path of PostgreSQL/openGauss by configuring currentSchema=schemaName - Limit : only...

## Feature Request ### Is your feature request related to a problem? Yes. Currently, ShardingSphere handles INSERT statements with batch value splitting - each value in an INSERT INTO ......