From 13fa4bab89a3df4aac625e3ff5c6466c967007be Mon Sep 17 00:00:00 2001 From: edwardfeng-db Date: Mon, 11 Mar 2024 22:49:39 +0100 Subject: [PATCH] update --- catalog/resource_sql_table.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalog/resource_sql_table.go b/catalog/resource_sql_table.go index 5c3245f9ca..cf57b4fddb 100644 --- a/catalog/resource_sql_table.go +++ b/catalog/resource_sql_table.go @@ -440,7 +440,7 @@ func ResourceSqlTable() common.Resource { newColMap := newCols[i].(map[string]interface{}) if oldColMap["type_text"] != newColMap["type_text"] { - return fmt.Errorf("Changing the 'type' of an existing column is not allowed, please apply twice by dropping and adding a new column.") + return fmt.Errorf("changing the 'type' of an existing column is not allowed, please apply twice by dropping and adding a new column.") } } }