From d7db279d48b15da1a11258d3bc691668d4fdbc00 Mon Sep 17 00:00:00 2001 From: Pieter Noordhuis Date: Wed, 17 Jul 2024 16:22:31 +0200 Subject: [PATCH] [Fix] Ignore managed property for liquid clustering integration test This property is automatically added if the SQL table uses `cluster_keys`. --- catalog/resource_sql_table.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/catalog/resource_sql_table.go b/catalog/resource_sql_table.go index db4ee7ff46..6eabc30174 100644 --- a/catalog/resource_sql_table.go +++ b/catalog/resource_sql_table.go @@ -82,6 +82,9 @@ func parseComment(s string) string { // This needs to be replaced with something a bit more robust in the future func sqlTableIsManagedProperty(key string) bool { managedProps := map[string]bool{ + // Property set if the table uses `cluster_keys`. + "clusteringColumns": true, + "delta.lastCommitTimestamp": true, "delta.lastUpdateVersion": true, "delta.minReaderVersion": true,