From 57f997e56c85c8060e692e2b88409b300c60b170 Mon Sep 17 00:00:00 2001 From: Suomm <1474983351@qq.com> Date: Sun, 13 Aug 2023 12:09:27 +0800 Subject: [PATCH] =?UTF-8?q?test:=20count=20=E6=9F=A5=E8=AF=A2=E4=BC=98?= =?UTF-8?q?=E5=8C=96=E6=B5=8B=E8=AF=95=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mybatisflex/coretest/CountSqlTest.java | 80 +++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 mybatis-flex-core/src/test/java/com/mybatisflex/coretest/CountSqlTest.java diff --git a/mybatis-flex-core/src/test/java/com/mybatisflex/coretest/CountSqlTest.java b/mybatis-flex-core/src/test/java/com/mybatisflex/coretest/CountSqlTest.java new file mode 100644 index 00000000..4b4a42b6 --- /dev/null +++ b/mybatis-flex-core/src/test/java/com/mybatisflex/coretest/CountSqlTest.java @@ -0,0 +1,80 @@ +/* + * Copyright (c) 2022-2023, 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. + * You may obtain a copy of the License at + *

+ * http://www.apache.org/licenses/LICENSE-2.0 + *

+ * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.mybatisflex.coretest; + +import com.mybatisflex.core.query.QueryWrapper; +import com.mybatisflex.core.util.MapperUtil; +import org.junit.Test; + +import static com.mybatisflex.coretest.table.AccountTableDef.ACCOUNT; +import static com.mybatisflex.coretest.table.ArticleTableDef.ARTICLE; + +/** + * @author 王帅 + * @since 2023-08-13 + */ +public class CountSqlTest { + + @Test + public void test01() { + QueryWrapper queryWrapper = QueryWrapper.create() + .select() + .from(ACCOUNT) + .leftJoin(ARTICLE).as("a1").on(ARTICLE.ACCOUNT_ID.eq(ACCOUNT.ID)) + .leftJoin(ARTICLE).as("a2").on(ARTICLE.ACCOUNT_ID.eq(ACCOUNT.ID)) + .where(ARTICLE.ACCOUNT_ID.in(1, 2, 3)); + + System.out.println(queryWrapper.toSQL()); + + QueryWrapper optimized = MapperUtil.optimizeCountQueryWrapper(queryWrapper); + + System.out.println(optimized.toSQL()); + } + + @Test + public void test02() { + QueryWrapper queryWrapper = QueryWrapper.create() + .select() + .from(ACCOUNT) + .leftJoin(ARTICLE).as("a1").on(ARTICLE.ACCOUNT_ID.eq(ACCOUNT.ID)) + .leftJoin(ARTICLE).as("a2").on(ARTICLE.ACCOUNT_ID.eq(ACCOUNT.ID)) + .where("a1.account_id IN (1, 2, 3)"); + + System.out.println(queryWrapper.toSQL()); + + QueryWrapper optimized = MapperUtil.optimizeCountQueryWrapper(queryWrapper); + + System.out.println(optimized.toSQL()); + } + + @Test + public void test03() { + QueryWrapper queryWrapper = QueryWrapper.create() + .select() + .from(ACCOUNT.as("a")) + .leftJoin("tb_article").as("a1").on("a1.account_id = a.id") + .leftJoin("tb_article").as("a2").on("a1.account_id = a.id") + .where("a1.account_id IN (1, 2, 3)"); + + System.out.println(queryWrapper.toSQL()); + + QueryWrapper optimized = MapperUtil.optimizeCountQueryWrapper(queryWrapper); + + System.out.println(optimized.toSQL()); + } + +}