Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.14.0, 1.15.1, 1.16.0
Description
When I try to use statement `Insert into (column1, column2) Values(.....)` with SQL hints, it throw some exception, which is certainly a bug.
- Sql 1
INSERT INTO `tidb`.`%s`.`%s` /*+ OPTIONS('tidb.sink.update-columns'='c2, c13')*/ (c2, c13) values(11111, 12.12)
-
- result 1
- result 1
- Sql 2
INSERT INTO `tidb`.`%s`.`%s` (c2, c13) /*+ OPTIONS('tidb.sink.update-columns'='c2, c13')*/ values(11111, 12.12)
-
- result 2
- result 2
- Sql 3
INSERT INTO `tidb`.`%s`.`%s` (c2, c13) values(11111, 12.12)
-
- result3 : success
Attachments
Attachments
Issue Links
- is duplicated by
-
FLINK-26259 Partial insert and partition insert cannot work with sql hint
- In Progress
- links to