-
Notifications
You must be signed in to change notification settings - Fork 8.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bugfix: fix could not rollback when insert the table with multiple key #6077
Changes from 14 commits
93f27c9
8bb409c
6dc7c40
d92aa31
b12631a
9a21407
e4d76ea
10df26c
f00d469
f050b48
6647821
880b8ea
6151017
c30c082
9d985f5
eb7d210
2ed9e50
aede710
126e2b9
b4bf7e9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -22,7 +22,9 @@ | |||||||||||||||||||||||||||
import java.util.ArrayList; | ||||||||||||||||||||||||||||
import java.util.List; | ||||||||||||||||||||||||||||
import java.util.Map; | ||||||||||||||||||||||||||||
import java.util.Set; | ||||||||||||||||||||||||||||
import java.util.StringJoiner; | ||||||||||||||||||||||||||||
import java.util.TreeSet; | ||||||||||||||||||||||||||||
import java.util.stream.Collectors; | ||||||||||||||||||||||||||||
import java.util.stream.Stream; | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
|
@@ -193,18 +195,6 @@ protected String buildLimitCondition(WhereRecognizer recognizer, ArrayList<List< | |||||||||||||||||||||||||||
return limitCondition; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||
* Gets column name in sql. | ||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||
* @param columnName the column name | ||||||||||||||||||||||||||||
* @return the column name in sql | ||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||
protected String getColumnNameInSQL(String columnName) { | ||||||||||||||||||||||||||||
String tableAlias = sqlRecognizer.getTableAlias(); | ||||||||||||||||||||||||||||
return tableAlias == null ? columnName : tableAlias + "." + columnName; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||
* Gets column name with table prefix | ||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||
|
@@ -236,10 +226,12 @@ protected List<String> getColumnNamesWithTablePrefixList(String table,String tab | |||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||
* Gets several column name in sql. | ||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||
* @param table the table | ||||||||||||||||||||||||||||
* @param tableAlias the table alias | ||||||||||||||||||||||||||||
* @param columnNameList the column name | ||||||||||||||||||||||||||||
* @return the column name in sql | ||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||
protected String getColumnNamesInSQL(List<String> columnNameList) { | ||||||||||||||||||||||||||||
protected String getColumnNamesWithTablePrefix(String table,String tableAlias, List<String> columnNameList) { | ||||||||||||||||||||||||||||
if (CollectionUtils.isEmpty(columnNameList)) { | ||||||||||||||||||||||||||||
return null; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
@@ -248,20 +240,43 @@ protected String getColumnNamesInSQL(List<String> columnNameList) { | |||||||||||||||||||||||||||
if (i > 0) { | ||||||||||||||||||||||||||||
columnNamesStr.append(" , "); | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
columnNamesStr.append(getColumnNameInSQL(columnNameList.get(i))); | ||||||||||||||||||||||||||||
columnNamesStr.append(getColumnNameWithTablePrefix(table, tableAlias, columnNameList.get(i))); | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
return columnNamesStr.toString(); | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||
* Gets column name in sql. | ||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||
* @param columnName the column name | ||||||||||||||||||||||||||||
* @return the column name in sql | ||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||
protected String getColumnNameInSQL(String columnName) { | ||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 为什么要移动这段代码位置?而不是在它后面增加新方法? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. because reordering the type of method it looks more beautiful. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
那为什么不是将getColumnNamesInSQLList 挪到上面? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 3 method of |
||||||||||||||||||||||||||||
String tableAlias = sqlRecognizer.getTableAlias(); | ||||||||||||||||||||||||||||
return tableAlias == null ? columnName : tableAlias + "." + columnName; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
Comment on lines
+248
to
+257
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||
* Gets column names in sql. | ||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||
* @param columnNames the column names | ||||||||||||||||||||||||||||
* @return | ||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||
protected List<String> getColumnNamesInSQLList(List<String> columnNames) { | ||||||||||||||||||||||||||||
List<String> columnNameWithTableAlias = new ArrayList<>(); | ||||||||||||||||||||||||||||
for (String columnName : columnNames) { | ||||||||||||||||||||||||||||
columnNameWithTableAlias.add(this.getColumnNameInSQL(columnName)); | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
return columnNameWithTableAlias; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
Comment on lines
+259
to
+272
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||
* Gets several column name in sql. | ||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||
* @param table the table | ||||||||||||||||||||||||||||
* @param tableAlias the table alias | ||||||||||||||||||||||||||||
* @param columnNameList the column name | ||||||||||||||||||||||||||||
* @return the column name in sql | ||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||
protected String getColumnNamesWithTablePrefix(String table,String tableAlias, List<String> columnNameList) { | ||||||||||||||||||||||||||||
protected String getColumnNamesInSQL(List<String> columnNameList) { | ||||||||||||||||||||||||||||
if (CollectionUtils.isEmpty(columnNameList)) { | ||||||||||||||||||||||||||||
return null; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
@@ -270,7 +285,7 @@ protected String getColumnNamesWithTablePrefix(String table,String tableAlias, L | |||||||||||||||||||||||||||
if (i > 0) { | ||||||||||||||||||||||||||||
columnNamesStr.append(" , "); | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
columnNamesStr.append(getColumnNameWithTablePrefix(table,tableAlias, columnNameList.get(i))); | ||||||||||||||||||||||||||||
columnNamesStr.append(getColumnNameInSQL(columnNameList.get(i))); | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
return columnNamesStr.toString(); | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
@@ -517,22 +532,24 @@ protected TableRecords buildTableRecords(Map<String, List<Object>> pkValuesMap) | |||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
protected List<String> getNeedColumns(String table, String tableAlias, List<String> unescapeColumns) { | ||||||||||||||||||||||||||||
List<String> needUpdateColumns = new ArrayList<>(); | ||||||||||||||||||||||||||||
Set<String> needUpdateColumns = new TreeSet<>(String.CASE_INSENSITIVE_ORDER); | ||||||||||||||||||||||||||||
TableMeta tableMeta = getTableMeta(table); | ||||||||||||||||||||||||||||
if (ONLY_CARE_UPDATE_COLUMNS && CollectionUtils.isNotEmpty(unescapeColumns)) { | ||||||||||||||||||||||||||||
if (!containsPK(table, unescapeColumns)) { | ||||||||||||||||||||||||||||
List<String> pkNameList = tableMeta.getEscapePkNameList(getDbType()); | ||||||||||||||||||||||||||||
if (CollectionUtils.isNotEmpty(pkNameList)) { | ||||||||||||||||||||||||||||
if (StringUtils.isNotBlank(tableAlias)) { | ||||||||||||||||||||||||||||
needUpdateColumns.add(getColumnNamesWithTablePrefix(table, tableAlias, pkNameList)); | ||||||||||||||||||||||||||||
needUpdateColumns.addAll( | ||||||||||||||||||||||||||||
ColumnUtils.delEscape(getColumnNamesWithTablePrefixList(table, tableAlias, pkNameList), getDbType()) | ||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||
needUpdateColumns.add(getColumnNamesInSQL(pkNameList)); | ||||||||||||||||||||||||||||
needUpdateColumns.addAll( | ||||||||||||||||||||||||||||
ColumnUtils.delEscape(getColumnNamesInSQLList(pkNameList), getDbType()) | ||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
needUpdateColumns.addAll(unescapeColumns.stream() | ||||||||||||||||||||||||||||
.map(unescapeUpdateColumn -> ColumnUtils.addEscape(unescapeUpdateColumn, getDbType(), tableMeta)).collect( | ||||||||||||||||||||||||||||
Collectors.toList())); | ||||||||||||||||||||||||||||
needUpdateColumns.addAll(unescapeColumns); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
// The on update xxx columns will be auto update by db, so it's also the actually updated columns | ||||||||||||||||||||||||||||
List<String> onUpdateColumns = tableMeta.getOnUpdateColumnsOnlyName(); | ||||||||||||||||||||||||||||
|
@@ -542,18 +559,15 @@ protected List<String> getNeedColumns(String table, String tableAlias, List<Stri | |||||||||||||||||||||||||||
.collect(Collectors.toList()); | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
onUpdateColumns.removeAll(unescapeColumns); | ||||||||||||||||||||||||||||
l81893521 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||
needUpdateColumns.addAll(onUpdateColumns.stream() | ||||||||||||||||||||||||||||
.map(onUpdateColumn -> ColumnUtils.addEscape(onUpdateColumn, getDbType(), tableMeta)) | ||||||||||||||||||||||||||||
.collect(Collectors.toList())); | ||||||||||||||||||||||||||||
needUpdateColumns.addAll(onUpdateColumns); | ||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||
Stream<String> allColumns = tableMeta.getAllColumns().keySet().stream(); | ||||||||||||||||||||||||||||
if (StringUtils.isNotBlank(tableAlias)) { | ||||||||||||||||||||||||||||
allColumns = allColumns.map(columnName -> getColumnNameWithTablePrefix(table, tableAlias, columnName)); | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
allColumns = allColumns.map(columnName -> ColumnUtils.addEscape(columnName, getDbType(), tableMeta)); | ||||||||||||||||||||||||||||
allColumns.forEach(needUpdateColumns::add); | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
return needUpdateColumns; | ||||||||||||||||||||||||||||
return needUpdateColumns.parallelStream().map(column -> ColumnUtils.addEscape(column, getDbType(), tableMeta)).collect(Collectors.toList()); | ||||||||||||||||||||||||||||
l81893521 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.