rough-quill-46540
11/29/2023, 2:56 PMcolumns = [
snowflake.TableColumnArgs(
'MY_COLUMN',
type="VARCHAR(100) COLLATE 'en-ci'",
)]
self.tables[table_name] = snowflake.Table(
'MY_TABLE',
columns=columns,
database=db_name,
schema=schema_name)
And what I get in the db side is:
CREATE TABLE "MY_DB"."SCHEMA"."MY_TABLE" ("MY_COLUMN" VARCHAR(100) COLLATE \\'en-ci\\' COMMENT '')
'DATA_RETENTION_TIME_IN_DAYS = 1 CHANGE_TRACKING = false';
So it tries to escape the single quotes around the collation which makes the table creation fail. Is there any way around this?No matter how you like to participate in developer communities, Pulumi wants to meet you there. If you want to meet other Pulumi users to share use-cases and best practices, contribute code or documentation, see us at an event, or just tell a story about something cool you did with Pulumi, you are part of our community.
Powered by