kaijianding
kaijianding
### Steps to reproduce the behavior (Required) 1. CREATE routine load to ingest json data 2. unescaped character in json  ### Expected behavior (Required) 1. task success with this...
## Why I'm doing: collect committed and aborted tasks number metric to indicate that a routine load is running normally ## What I'm doing: add routine_load_committed_tasks and routine_load_aborted_tasks in MetricRepo...
## Feature request Want to specify a custom query id and kill query by this id. This feature is a frequently asked about. **Describe the solution you'd like** ```sql set...
## Why I'm doing: User want to set a user generated query id and kill query by the user specified query id ## What I'm doing: Allow set custom query...
## Why I'm doing: ```sql CREATE TABLE `test_pt` ( `id` int(11) NULL COMMENT "id", `pt` date NOT NULL COMMENT "", `gmv` int(11) NULL COMMENT "gmv" ) ENGINE=OLAP DUPLICATE KEY(`id`) COMMENT...
## Why I'm doing: In shared_data mode, it is very time consuming calling `warehouseManager.getAliveComputeNodes()` which issues a rpc call inside ## What I'm doing: Reduce `warehouseManager.getAliveComputeNodes()` call in `OlapScanNode` ##...
## Why I'm doing: ## What I'm doing: Fixes #46785 ## What type of PR is this: - [x] BugFix - [ ] Feature - [ ] Enhancement - [...
## Why I'm doing: ```sql -- rows: 100 mv1: select sum(v1) from t1 group by a, b, c, f; -- rows: 10000 mv2: select sum(v1) from t1 group by a,...
## Why I'm doing: Force mv refresh is useful to handle some abnormal corner case, `force` keyword should be respected. ## What I'm doing: Fixes #issue ## What type of...
## Why I'm doing: ```sql CREATE TABLE `ptbl5` ( `dt` date NULL COMMENT "", `id` int(11) NULL COMMENT "", `name` varchar(65533) NULL COMMENT "" ) ENGINE=OLAP DUPLICATE KEY(`dt`, `id`, `name`)...