Bumps [junit](https://github.com/junit-team/junit4) from 4.12 to 4.13.1. - [Release notes](https://github.com/junit-team/junit4/releases) - [Changelog](https://github.com/junit-team/junit4/blob/main/doc/ReleaseNotes4.12.md) - [Commits](https://github.com/junit-team/junit4/compare/r4.12...r4.13.1) Signed-off-by: dependabot[bot] <support@github.com>
simple sql builder
From
String sql = Sql.select() .column("id").as("col_id") .column("code").as("col_code") .from("test_table") .where("id = 1") .groupBy("id") .orderBy("id").by("code").desc() .toString();
to
SELECT id AS col_id, code AS col_code FROM test_table WHERE id = 1 GROUP BY id ORDER BY id, code DESC