diff --git a/services/tables/src/main/java/com/linkedin/openhouse/tables/api/spec/v0/request/CreateUpdateTableRequestBody.java b/services/tables/src/main/java/com/linkedin/openhouse/tables/api/spec/v0/request/CreateUpdateTableRequestBody.java index d8e810bcd..8693693fb 100644 --- a/services/tables/src/main/java/com/linkedin/openhouse/tables/api/spec/v0/request/CreateUpdateTableRequestBody.java +++ b/services/tables/src/main/java/com/linkedin/openhouse/tables/api/spec/v0/request/CreateUpdateTableRequestBody.java @@ -95,6 +95,7 @@ public class CreateUpdateTableRequestBody { defaultValue = "false", description = "Boolean that determines creating a staged table", example = "false") + @Builder.Default private boolean stageCreate = false; @Schema(description = "The version of table that the current update is based upon") @@ -103,6 +104,7 @@ public class CreateUpdateTableRequestBody { @Schema(description = "The type of a table") @Valid + @Builder.Default private TableType tableType = TableType.PRIMARY_TABLE; public String toJson() {