Skip to content

Commit 336a2c8

Browse files
committed
多表解析调整.
1 parent 5637453 commit 336a2c8

File tree

3 files changed

+15
-25
lines changed

3 files changed

+15
-25
lines changed

mybatis-plus-jsqlparser-support/mybatis-plus-jsqlparser-4.9/src/main/java/com/baomidou/mybatisplus/extension/plugins/inner/BaseMultiTableInnerInterceptor.java

+5-8
Original file line numberDiff line numberDiff line change
@@ -240,15 +240,13 @@ protected void processFunction(Function function, final String whereSegment) {
240240
*/
241241
protected void processOtherFromItem(FromItem fromItem, final String whereSegment) {
242242
// 去除括号
243-
// while (fromItem instanceof ParenthesisFromItem) {
244-
// fromItem = ((ParenthesisFromItem) fromItem).getFromItem();
245-
// }
243+
while (fromItem instanceof ParenthesedFromItem) {
244+
fromItem = ((ParenthesedFromItem) fromItem).getFromItem();
245+
}
246246

247247
if (fromItem instanceof ParenthesedSelect) {
248248
Select subSelect = (Select) fromItem;
249249
processSelectBody(subSelect, whereSegment);
250-
} else if (fromItem instanceof ParenthesedFromItem) {
251-
logger.debug("Perform a subQuery, if you do not give us feedback");
252250
}
253251
}
254252

@@ -259,13 +257,12 @@ protected void processOtherFromItem(FromItem fromItem, final String whereSegment
259257
* @return Table subJoin 中的主表
260258
*/
261259
private List<Table> processSubJoin(ParenthesedFromItem subJoin, final String whereSegment) {
262-
List<Table> mainTables = new ArrayList<>();
263260
while (subJoin.getJoins() == null && subJoin.getFromItem() instanceof ParenthesedFromItem) {
264261
subJoin = (ParenthesedFromItem) subJoin.getFromItem();
265262
}
263+
List<Table> tableList = processFromItem(subJoin.getFromItem(), whereSegment);
264+
List<Table> mainTables = new ArrayList<>(tableList);
266265
if (subJoin.getJoins() != null) {
267-
List<Table> list = processFromItem(subJoin.getFromItem(), whereSegment);
268-
mainTables.addAll(list);
269266
processJoins(mainTables, subJoin.getJoins(), whereSegment);
270267
}
271268
return mainTables;

mybatis-plus-jsqlparser-support/mybatis-plus-jsqlparser-5.0/src/main/java/com/baomidou/mybatisplus/extension/plugins/inner/BaseMultiTableInnerInterceptor.java

+5-8
Original file line numberDiff line numberDiff line change
@@ -241,15 +241,13 @@ protected void processFunction(Function function, final String whereSegment) {
241241
*/
242242
protected void processOtherFromItem(FromItem fromItem, final String whereSegment) {
243243
// 去除括号
244-
// while (fromItem instanceof ParenthesisFromItem) {
245-
// fromItem = ((ParenthesisFromItem) fromItem).getFromItem();
246-
// }
244+
while (fromItem instanceof ParenthesedFromItem) {
245+
fromItem = ((ParenthesedFromItem) fromItem).getFromItem();
246+
}
247247

248248
if (fromItem instanceof ParenthesedSelect) {
249249
Select subSelect = (Select) fromItem;
250250
processSelectBody(subSelect, whereSegment);
251-
} else if (fromItem instanceof ParenthesedFromItem) {
252-
logger.debug("Perform a subQuery, if you do not give us feedback");
253251
}
254252
}
255253

@@ -260,13 +258,12 @@ protected void processOtherFromItem(FromItem fromItem, final String whereSegment
260258
* @return Table subJoin 中的主表
261259
*/
262260
private List<Table> processSubJoin(ParenthesedFromItem subJoin, final String whereSegment) {
263-
List<Table> mainTables = new ArrayList<>();
264261
while (subJoin.getJoins() == null && subJoin.getFromItem() instanceof ParenthesedFromItem) {
265262
subJoin = (ParenthesedFromItem) subJoin.getFromItem();
266263
}
264+
List<Table> tableList = processFromItem(subJoin.getFromItem(), whereSegment);
265+
List<Table> mainTables = new ArrayList<>(tableList);
267266
if (subJoin.getJoins() != null) {
268-
List<Table> list = processFromItem(subJoin.getFromItem(), whereSegment);
269-
mainTables.addAll(list);
270267
processJoins(mainTables, subJoin.getJoins(), whereSegment);
271268
}
272269
return mainTables;

mybatis-plus-jsqlparser-support/mybatis-plus-jsqlparser/src/main/java/com/baomidou/mybatisplus/extension/plugins/inner/BaseMultiTableInnerInterceptor.java

+5-9
Original file line numberDiff line numberDiff line change
@@ -241,15 +241,12 @@ protected void processFunction(Function function, final String whereSegment) {
241241
*/
242242
protected void processOtherFromItem(FromItem fromItem, final String whereSegment) {
243243
// 去除括号
244-
// while (fromItem instanceof ParenthesisFromItem) {
245-
// fromItem = ((ParenthesisFromItem) fromItem).getFromItem();
246-
// }
247-
244+
while (fromItem instanceof ParenthesedFromItem) {
245+
fromItem = ((ParenthesedFromItem) fromItem).getFromItem();
246+
}
248247
if (fromItem instanceof ParenthesedSelect) {
249248
Select subSelect = (Select) fromItem;
250249
processSelectBody(subSelect, whereSegment);
251-
} else if (fromItem instanceof ParenthesedFromItem) {
252-
logger.debug("Perform a subQuery, if you do not give us feedback");
253250
}
254251
}
255252

@@ -260,13 +257,12 @@ protected void processOtherFromItem(FromItem fromItem, final String whereSegment
260257
* @return Table subJoin 中的主表
261258
*/
262259
private List<Table> processSubJoin(ParenthesedFromItem subJoin, final String whereSegment) {
263-
List<Table> mainTables = new ArrayList<>();
264260
while (subJoin.getJoins() == null && subJoin.getFromItem() instanceof ParenthesedFromItem) {
265261
subJoin = (ParenthesedFromItem) subJoin.getFromItem();
266262
}
263+
List<Table> tableList = processFromItem(subJoin.getFromItem(), whereSegment);
264+
List<Table> mainTables = new ArrayList<>(tableList);
267265
if (subJoin.getJoins() != null) {
268-
List<Table> list = processFromItem(subJoin.getFromItem(), whereSegment);
269-
mainTables.addAll(list);
270266
processJoins(mainTables, subJoin.getJoins(), whereSegment);
271267
}
272268
return mainTables;

0 commit comments

Comments
 (0)