From 2f57442594cd89007ce034d54653dd14122de6d4 Mon Sep 17 00:00:00 2001 From: Nathan Villaescusa Date: Mon, 29 Apr 2024 13:12:16 -0700 Subject: [PATCH] Add TODO --- lib/sql/escape.go | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/sql/escape.go b/lib/sql/escape.go index 4612b461e..e4502455d 100644 --- a/lib/sql/escape.go +++ b/lib/sql/escape.go @@ -25,6 +25,7 @@ func NeedsEscaping(name string, destKind constants.DestinationKind) bool { if destKind == constants.Redshift { reservedKeywords = constants.RedshiftReservedKeywords } else if destKind == constants.MSSQL || destKind == constants.BigQuery { + // TODO: Escape names that start with `constants.ArtiePrefix` if !strings.HasPrefix(name, constants.ArtiePrefix) { return true }