You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While testing a Salesforce -> Snowflake synchronisation I had two issues related to reserved keywords:
While synchronising the socialpersona entity, the sync failed while creating the target table due to the field called FOLLOWING being a reserved keyword. Error message was SQL compilation error: syntax error line 26 at position 1 unexpected 'following'..
While synchronising the GROUP entity, the sync failed due to GROUP being a reserved keyword. It seems that the table identifier was properly quoted in other SQL command executed in the process though, as the CREATE statement for example.
I'd overall expect reserved keywords to be quoted!
The text was updated successfully, but these errors were encountered:
While testing a
Salesforce -> Snowflake
synchronisation I had two issues related to reserved keywords:socialpersona
entity, the sync failed while creating the target table due to the field calledFOLLOWING
being a reserved keyword. Error message wasSQL compilation error: syntax error line 26 at position 1 unexpected 'following'.
.GROUP
entity, the sync failed due toGROUP
being a reserved keyword. It seems that the table identifier was properly quoted in other SQL command executed in the process though, as theCREATE
statement for example.I'd overall expect reserved keywords to be quoted!
The text was updated successfully, but these errors were encountered: