mymeiyi opened a new pull request, #32254:
URL: https://github.com/apache/doris/pull/32254
## Proposed changes
One transaction can only contain the same partition once because it publish
one version.
For broker load, if load to one table without specifying partitions and the
same table with specifying partitions, the load success but only contain the
data of any one of the two rowsets. So forbid it.
```
LOAD LABEL f018a11d037e704c3c08bf40af197c695e04 (
DATA
INFILE("s3://doris-build-1308700295/regression/load/data/basic_data.csv")
INTO TABLE test_multi_table_load
PARTITION(p1)
COLUMNS TERMINATED BY "|"
FORMAT AS CSV
(k00,k01,k02,k03,k04,k05,k06,k07,k08,k09,k10,k11,k12,k13,k14,k15,k16,k17,k18) ,
DATA
INFILE("s3://doris-build-1308700295/regression/load/data/basic_data.csv")
INTO TABLE test_multi_table_load
COLUMNS TERMINATED BY "|"
FORMAT AS CSV
(k00,k01,k02,k03,k04,k05,k06,k07,k08,k09,k10,k11,k12,k13,k14,k15,k16,k17,k18)
)
```
## Further comments
If this is a relatively large or complex change, kick off the discussion at
[[email protected]](mailto:[email protected]) by explaining why you
chose the solution you did and what alternatives you considered, etc...
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]