Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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 @@ -256,4 +256,6 @@ MySQL > select * from upsert_test;

7. Creating RollUp is not currently supported

8. If the sequence_mapping attribute is not included when creating a new table, it will not be supported to open it later
8. If the sequence_mapping attribute is not included when creating a new table, it will not be supported to open it later

9. Fields that are not included will be automatically filled with default values or null during load data. When comparing values for the sequence columns, null values will be treated as the smallest value.
Original file line number Diff line number Diff line change
Expand Up @@ -251,4 +251,6 @@ MySQL > select * from upsert_test;

7. 暂时不支持创建RollUp

8. 如果新建表时没带sequence_mapping属性,后期不支持打开
8. 如果新建表时没带sequence_mapping属性,后期不支持打开

9. 导入时对于没有包含的字段会自动用默认值或null填充,sequence列比较大小时null值会被当做最小值看待
Loading