chore(test): 杂项

This commit is contained in:
2024-01-16 14:30:10 +08:00
parent eb70986d19
commit 390a2dd550
3 changed files with 223 additions and 325 deletions

View File

@@ -21,10 +21,10 @@ public class SqlBuilderTests {
String STATUS_Y = "y";
String STATUS_N = "n";
System.out.println(SqlUtil.formatSql(
SqlBuilder.update(TbAppCollectTableInfo._origin_)
.set(TbAppCollectTableInfo.STATUS_O, STATUS_N)
.whereEq(TbAppCollectTableInfo.FLINK_JOB_ID_O, "Q")
.andEq(TbAppCollectTableInfo.ALIAS_O, "Q")
SqlBuilder
.select(TbAppHudiSyncState.MESSAGE_ID_A)
.from(TbAppHudiSyncState._alias_)
.whereEq(TbAppHudiSyncState.ID_A, null)
.precompileSql()
));
}