Skip to content

Commit

Permalink
Update created-at property in createTableDirectWithWriteDelegation + …
Browse files Browse the repository at this point in the history
…enable ErrorProne ModifiedButNotUsed (#207)
  • Loading branch information
ebyhr authored Aug 27, 2024
1 parent 578833f commit 859d303
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions build-logic/src/main/kotlin/polaris-java.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ tasks.withType(JavaCompile::class.java).configureEach {
"FallThrough",
"MissingCasesInEnumSwitch",
"MissingOverride",
"ModifiedButNotUsed",
"OrphanedFormatString",
"StringCaseLocaleUsage",
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ public LoadTableResponse createTableDirectWithWriteDelegation(
.withLocation(request.location())
.withPartitionSpec(request.spec())
.withSortOrder(request.writeOrder())
.withProperties(request.properties())
.withProperties(properties)
.create();

if (table instanceof BaseTable baseTable) {
Expand Down

0 comments on commit 859d303

Please sign in to comment.