Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Fix](flexible update) Remove version info #2146

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -138,13 +138,13 @@ INSERT INTO order_tbl (order_id, order_status) VALUES (1, '待发货');

目前,同一批次数据写入任务(无论是导入任务还是 `INSERT INTO`)的所有行只能更新相同的列。如果需要更新不同列的数据,则需要分不同批次进行写入。

## 灵活部分列更新
## 灵活部分列更新(实验性功能)

在 x.x.x 版本之前,doris 支持的部分列更新功能限制了一次导入中每一行必须更新相同的列,从 x.x.x 版本开始,doris 支持一种更加灵活的更新方式,它使得一次导入中的每一行可以更新不同的列。
此前,doris 支持的部分列更新功能限制了一次导入中每一行必须更新相同的列。现在,doris 支持一种更加灵活的更新方式,它使得一次导入中的每一行可以更新不同的列(仅 master 分支支持)

:::caution 注意:

1. 灵活列更新这一功能从 x.x.x 版本开始支持
1. 灵活列更新这一功能还在内测中
2. 目前只有 stream load 这一种导入方式以及使用 stream load 作为其导入方式的工具 (如 doris-flink-connector) 支持灵活列更新功能
3. 在使用灵活列更新时导入文件必须为 json 格式的数据
:::
Expand Down