From 62f3a71bc4976f39aca8f032de3442c3e6e85ef8 Mon Sep 17 00:00:00 2001 From: Suomm <1474983351@qq.com> Date: Mon, 25 Mar 2024 11:46:28 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20QueryWrapperAdapter=20=E7=9A=84=20Join?= =?UTF-8?q?=20=E6=96=B9=E6=B3=95=E6=B3=9B=E5=9E=8B=E9=94=99=E8=AF=AF?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../core/query/QueryWrapperAdapter.java | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/mybatis-flex-core/src/main/java/com/mybatisflex/core/query/QueryWrapperAdapter.java b/mybatis-flex-core/src/main/java/com/mybatisflex/core/query/QueryWrapperAdapter.java index 81557f0c..63db51cf 100644 --- a/mybatis-flex-core/src/main/java/com/mybatisflex/core/query/QueryWrapperAdapter.java +++ b/mybatis-flex-core/src/main/java/com/mybatisflex/core/query/QueryWrapperAdapter.java @@ -261,12 +261,10 @@ public class QueryWrapperAdapter> extends Query } @Override - public Joiner leftJoin(QueryTable table) { + public Joiner leftJoin(QueryTable table) { return super.leftJoin(table); } - - @Override public Joiner leftJoin(String table) { return super.leftJoin(table); @@ -298,11 +296,10 @@ public class QueryWrapperAdapter> extends Query } @Override - public Joiner rightJoin(QueryTable table) { + public Joiner rightJoin(QueryTable table) { return super.rightJoin(table); } - @Override public Joiner rightJoin(String table) { return super.rightJoin(table); @@ -334,7 +331,7 @@ public class QueryWrapperAdapter> extends Query } @Override - public Joiner innerJoin(QueryTable table) { + public Joiner innerJoin(QueryTable table) { return super.innerJoin(table); } @@ -369,7 +366,7 @@ public class QueryWrapperAdapter> extends Query } @Override - public Joiner fullJoin(QueryTable table) { + public Joiner fullJoin(QueryTable table) { return super.fullJoin(table); } @@ -404,7 +401,7 @@ public class QueryWrapperAdapter> extends Query } @Override - public Joiner crossJoin(QueryTable table) { + public Joiner crossJoin(QueryTable table) { return super.crossJoin(table); } @@ -439,7 +436,7 @@ public class QueryWrapperAdapter> extends Query } @Override - public Joiner join(QueryTable table) { + public Joiner join(QueryTable table) { return super.join(table); }