Wu Xueyang
Wu Xueyang
## What changes were proposed in this pull request? ### Create table when writing to MaxCompute if this table didn't exist. It will throw OdpsException if the target table dosn't...
When inserting data like the below: ```java String[] records = new String[]{ "[{\"id\":400, \"name\":\"400\"}]", "[{\"id\":500, \"name\":\"500\"}]" }; DataStream source = env.fromElements(records); ``` It fails since connector wrapped the json array...
## How to reproduce Creating table sql for a hive table: ```SQL CREATE TABLE `tpcds_hdfs_parquet_10.store_returns`( `sr_return_time_sk` bigint, `sr_item_sk` bigint, `sr_customer_sk` bigint, `sr_cdemo_sk` bigint, `sr_hdemo_sk` bigint, `sr_addr_sk` bigint, `sr_store_sk` bigint, `sr_reason_sk`...
## Environments ### Trino - Version: 411 - Coordinator: 1 x ecs.g7.2xlarge(8 vcores, 32 GB, 5 Gbps, 1 x 100 GB ESSD) - Worker: 1 x ecs.hfr7.2xlarge (8 vcores, 64...
## What type of PR is this: - [ ] BugFix - [x] Feature - [ ] Enhancement - [ ] Refactor - [ ] UT - [ ] Doc...
## Why I'm doing: Executing SQLs like below: ```sql CREATE DATABASE IF NOT EXISTS test; CREATE TABLE `test`.`test` ( `id` varchar(100) NULL COMMENT "", `name` varchar(100) NULL COMMENT "", `hash_id`...
## Why I'm doing: ## What I'm doing: Fixes https://github.com/StarRocks/starrocks/issues/59370 ## What type of PR is this: - [x] BugFix - [ ] Feature - [ ] Enhancement - [...
## What type of PR is this: - [ ] BugFix - [ ] Feature - [x] Enhancement - [ ] Refactor - [ ] UT - [ ] Doc...
## Why I'm doing: Currently, we use a `std::map` at `BitmapIndexWriterImpl::finish` to get sorted dictionaries and sorted ngram dictionaries. It will waste a lots of CPU and memory according to...