1
0

[HUDI-2185] Remove the default parallelism of index bootstrap and bucket assigner

This commit is contained in:
yuzhao.cyz
2021-07-16 14:22:53 +08:00
committed by Danny Chan
parent 3b264e80d9
commit c8aaf00819
4 changed files with 20 additions and 15 deletions

View File

@@ -69,10 +69,8 @@ public class TestConfigurations {
+ "with (\n"
+ " 'connector' = 'hudi'";
StringBuilder builder = new StringBuilder(createTable);
if (options.size() != 0) {
options.forEach((k, v) -> builder.append(",\n")
.append(" '").append(k).append("' = '").append(v).append("'"));
}
options.forEach((k, v) -> builder.append(",\n")
.append(" '").append(k).append("' = '").append(v).append("'"));
builder.append("\n)");
return builder.toString();
}