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() }