Skip to content

Commit

Permalink
[Flink]Fix create table options (#436)
Browse files Browse the repository at this point in the history
* Support concurrent writing of non-primary key tables

Signed-off-by: ChenYunHey <[email protected]>

* fix flink tests

Signed-off-by: ChenYunHey <[email protected]>

* fix flink tests

Signed-off-by: ChenYunHey <[email protected]>

* Flink API create table

Signed-off-by: ChenYunHey <[email protected]>

---------

Signed-off-by: ChenYunHey <[email protected]>
  • Loading branch information
ChenYunHey authored Jan 29, 2024
1 parent af58737 commit 4e4b415
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ public void createTable(ObjectPath tablePath, CatalogBaseTable table, boolean ig
uniqueConstraint -> String.join(LAKESOUL_HASH_PARTITION_SPLITTER,
uniqueConstraint.getColumns()))
.orElse("");
Map<String, String> tableOptions = table.getOptions();
Map<String, String> tableOptions = new HashMap<>(table.getOptions());

// adding cdc options
if (!"".equals(primaryKeys)) {
Expand Down

0 comments on commit 4e4b415

Please sign in to comment.