[Fix](typo) Fix analyzeGroupCommitDataBytes typo #29640
This commit is contained in:
@ -1217,7 +1217,7 @@ public class PropertyAnalyzer {
|
||||
return groupCommitIntervalMs;
|
||||
}
|
||||
|
||||
public static int analyzeGroupCommitDateBytes(Map<String, String> properties) throws AnalysisException {
|
||||
public static int analyzeGroupCommitDataBytes(Map<String, String> properties) throws AnalysisException {
|
||||
int groupCommitDataBytes = PROPERTIES_GROUP_COMMIT_DATA_BYTES_DEFAULT_VALUE;
|
||||
if (properties != null && properties.containsKey(PROPERTIES_GROUP_COMMIT_DATA_BYTES)) {
|
||||
String groupIntervalCommitDataBytesStr = properties.get(PROPERTIES_GROUP_COMMIT_DATA_BYTES);
|
||||
|
||||
@ -2438,7 +2438,7 @@ public class InternalCatalog implements CatalogIf<Database> {
|
||||
|
||||
int groupCommitDataBytes;
|
||||
try {
|
||||
groupCommitDataBytes = PropertyAnalyzer.analyzeGroupCommitDateBytes(properties);
|
||||
groupCommitDataBytes = PropertyAnalyzer.analyzeGroupCommitDataBytes(properties);
|
||||
olapTable.setGroupCommitDataBytes(groupCommitDataBytes);
|
||||
} catch (Exception e) {
|
||||
throw new DdlException(e.getMessage());
|
||||
|
||||
Reference in New Issue
Block a user