Skip to content

Commit

Permalink
BIGTOP-4228: Fix build failure after optimized SQLBuilder class (apac…
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinw66 authored Sep 14, 2024
1 parent f5bc0c2 commit 74e4efb
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.stream.Collectors;

/**
* Multiple data source support
Expand Down Expand Up @@ -299,6 +300,7 @@ public static String deleteByIds(

public static <Condition> String findByCondition(
TableMetaData tableMetaData, String databaseId, Condition condition) throws IllegalAccessException {
String tableName = tableMetaData.getTableName();
log.info("databaseId: {}", databaseId);
SQL sql = new SQL();
switch (DBType.toType(databaseId)) {
Expand Down

0 comments on commit 74e4efb

Please sign in to comment.