From f43285781452274249a790de19102e94d9da41e1 Mon Sep 17 00:00:00 2001 From: Nathan Villaescusa Date: Sun, 21 Apr 2024 17:18:27 -0700 Subject: [PATCH] Comment --- clients/snowflake/util.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/clients/snowflake/util.go b/clients/snowflake/util.go index 3d5ef74fd..840da632d 100644 --- a/clients/snowflake/util.go +++ b/clients/snowflake/util.go @@ -10,8 +10,7 @@ import ( ) // addPrefixToTableName will take a [types.TableIdentifier] and add a prefix in front of the table -// This is necessary for `PUT` commands. The fq name looks like . -// Namespace may contain both database and schema. +// This is necessary for `PUT` commands. func addPrefixToTableName(tableID types.TableIdentifier, prefix string) string { return tableID.WithTable(prefix + tableID.Table()).FullyQualifiedName() }