Skip to content

Commit abdb417

Browse files
authored
[Fix] Ignore managed property for liquid clustering integration test (#3786)
## Changes This property is automatically added if the SQL table uses `cluster_keys`. ## Tests - [x] relevant acceptance tests are passing I ran: ```sh $ go test ./internal/acceptance -timeout 30m -v -run TestUcAccResourceSqlTable_Liquid ```
1 parent 6bbaa21 commit abdb417

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

catalog/resource_sql_table.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,9 @@ func parseComment(s string) string {
8282
// This needs to be replaced with something a bit more robust in the future
8383
func sqlTableIsManagedProperty(key string) bool {
8484
managedProps := map[string]bool{
85+
// Property set if the table uses `cluster_keys`.
86+
"clusteringColumns": true,
87+
8588
"delta.lastCommitTimestamp": true,
8689
"delta.lastUpdateVersion": true,
8790
"delta.minReaderVersion": true,

0 commit comments

Comments
 (0)