From e877c0b1f1158f3d3aa7d147ab8f93c76a09a5f5 Mon Sep 17 00:00:00 2001 From: Suomm <1474983351@qq.com> Date: Tue, 1 Oct 2024 16:35:46 +0800 Subject: [PATCH] =?UTF-8?q?fixed:=20=E4=BF=AE=E5=A4=8D=20SelectQueryColumn?= =?UTF-8?q?=20=E4=BD=9C=E4=B8=BA=E6=9D=A1=E4=BB=B6=E5=88=97=E7=A9=BA?= =?UTF-8?q?=E5=80=BC=E9=97=AE=E9=A2=98=EF=BC=8C=E5=85=B3=E9=97=AD=20https:?= =?UTF-8?q?//gitee.com/mybatis-flex/mybatis-flex/issues/I8JZ75?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/mybatisflex/core/query/SelectQueryColumn.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mybatis-flex-core/src/main/java/com/mybatisflex/core/query/SelectQueryColumn.java b/mybatis-flex-core/src/main/java/com/mybatisflex/core/query/SelectQueryColumn.java index ba962264..bc26cc04 100644 --- a/mybatis-flex-core/src/main/java/com/mybatisflex/core/query/SelectQueryColumn.java +++ b/mybatis-flex-core/src/main/java/com/mybatisflex/core/query/SelectQueryColumn.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022-2025, Mybatis-Flex (fuhai999@gmail.com). + * Copyright (c) 2022-2024, Mybatis-Flex (fuhai999@gmail.com). *

* Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,7 +53,7 @@ public class SelectQueryColumn extends QueryColumn implements HasParamsColumn { @Override String toConditionSql(List queryTables, IDialect dialect) { - return super.toConditionSql(queryTables, dialect); + return dialect.forSelectByQuery(queryWrapper); } @Override