zhannngchen commented on code in PR #21773: URL: https://github.com/apache/doris/pull/21773#discussion_r1323088167
########## docs/zh-CN/docs/sql-manual/sql-reference/Data-Manipulation-Statements/Manipulation/INSERT.md: ########## @@ -44,7 +44,8 @@ INSERT INTO table_name ``` Parameters - +> IGNORE: insert ignore模式,仅当目标表为开启merge-on-write的unique表时有效。开启后,对于插入的行,如果该行的key在表中不存在,则插入该行数据。如果key在表中不存在,则丢弃这行数据。当目标表中存在sequence列时无法通过insert ignore语句进行插入操作。 Review Comment: "当目标表中存在sequence列时无法通过insert ignore语句进行插入操作", should be "undefined behavior"? ########## docs/zh-CN/docs/sql-manual/sql-reference/Data-Manipulation-Statements/Manipulation/INSERT.md: ########## @@ -44,7 +44,8 @@ INSERT INTO table_name ``` Parameters - +> IGNORE: insert ignore模式,仅当目标表为开启merge-on-write的unique表时有效。开启后,对于插入的行,如果该行的key在表中不存在,则插入该行数据。如果key在表中不存在,则丢弃这行数据。当目标表中存在sequence列时无法通过insert ignore语句进行插入操作。 Review Comment: "当目标表中存在sequence列时无法通过insert ignore语句进行插入操作", should be "undefined behavior"? -- 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]
