Files
doris/regression-test/data/fault_injection_p0/concurrency_update3.csv
abmdocrt 7c30cb20fd [Fix](partial update) Fix partial update load false when schema includes auto increment column (#31725)
Problem:
When partially updating columns without specifying the auto-increment column, and the imported data contains new keys, an error stating the auto-increment column could not be found occurs.

Reason:
The logic for partial column updates does not account for new keys in auto-increment columns. Since auto-increment columns can be generated by the system, it's possible to omit this column data during import. However, partial column updates treat this as a regular column, expecting it to be nullable or have a default value for automatic filling, overlooking the fact that auto-increment columns can also be auto-filled. This oversight leads to the error.

Solution:
Incorporate a check for auto-increment columns into the partial column update logic, and include the logic for generating auto-increment column values in the process of completing partial updates.
2024-03-06 13:06:27 +08:00

162 B

10b0
21b1
32b2
43b3
54b4
65b5
76b6
87b7
98b8
109b9
1110b10
1211b11
1312b12
1413b13
1514b14
1615b15
1716b16
1817b17
1918b18
2019b19
2120b20
2226b26
2327b27
2428b28
2529b29
2620b30