Skip to content

Commit

Permalink
address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
wecharyu committed Dec 24, 2024
1 parent b8068f3 commit 553f0a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3260,7 +3260,7 @@ public boolean deleteTableColumnStatistics(long tableId, String colName, String

public boolean deletePartitionColumnStats(String catName, String dbName, String tblName,
String partName, String colName, String engine) throws MetaException {
String sqlFilter = "" + PARTITIONS + ".\"PART_NAME\" = ? ";
String sqlFilter = PARTITIONS + ".\"PART_NAME\" = ? ";
List<Long> partitionIds = getPartitionIdsViaSqlFilter(catName, dbName, tblName, sqlFilter,
Arrays.asList(partName), Collections.emptyList(), -1);
assert(partitionIds.size() == 1);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10251,7 +10251,7 @@ public boolean deletePartitionColumnStatistics(String catName, String dbName, St
return new GetHelper<Boolean>(catName, dbName, tableName, true, true) {
@Override
protected String describeResult() {
return "delete prtition column stats";
return "delete partition column stats";
}

@Override
Expand Down

0 comments on commit 553f0a9

Please sign in to comment.