Skip to content

Commit

Permalink
[Fix] Update properties for managed SQL table on latest DBR (#3784)
Browse files Browse the repository at this point in the history
## Changes

These properties showed up as diffs in integration tests, thus are new
defaults on latest DBR.

## Tests

- [x] relevant acceptance tests are passing
  • Loading branch information
pietern authored Jul 17, 2024
1 parent 65d1570 commit 7c00820
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions internal/acceptance/sql_table_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -288,11 +288,13 @@ func constructManagedSqlTableTemplate(tableName string, columnInfos []catalog.Sq
schema_name = databricks_schema.this.name
table_type = "MANAGED"
properties = {
this = "that"
something = "else"
"delta.minReaderVersion" = 2
"delta.minWriterVersion" = 5
"delta.columnMapping.mode" = "name"
"this" = "that"
"something" = "else"
"delta.feature.columnMapping" = "supported"
"delta.feature.invariants" = "supported"
"delta.minReaderVersion" = 3
"delta.minWriterVersion" = 7
"delta.columnMapping.mode" = "name"
}
%s
Expand Down

0 comments on commit 7c00820

Please sign in to comment.