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
It is not possible to create a column tag association, even though it is a supported object_type. This should execute a ALTER TABLE ... ALTER COLUMN statement, but currently executes a ALTER COLUMN-statement, which is not valid.
Expected behavior
The resource should support passing database, schema, table (only supported for column) and name as separate attributes, or parse the attributes similarly to what is done for the tag_id attribute. When the object_type is "COLUMN", an ALTER TABLE ... ALTER COLUMN statement should be executed.
The statement above executes ALTER COLUMN "DB.SCHEMA.TABLE_NAME.TEST_COLUMN" SET TAG "TAG_DB"."TAG_SCHEMA"."TAG_NAME" = "TEST" which gives a syntax error as ALTER COLUMN ... is not supported on Snowflake.
The text was updated successfully, but these errors were encountered:
ogr003
added
the
bug
Used to mark issues with provider's incorrect behavior
label
Sep 5, 2022
Provider Version
0.43.0
Terraform Version
1.2.1
Describe the bug
It is not possible to create a column tag association, even though it is a supported
object_type
. This should execute aALTER TABLE ... ALTER COLUMN
statement, but currently executes aALTER COLUMN
-statement, which is not valid.Expected behavior
The resource should support passing database, schema, table (only supported for column) and name as separate attributes, or parse the attributes similarly to what is done for the
tag_id
attribute. When theobject_type
is "COLUMN", anALTER TABLE ... ALTER COLUMN
statement should be executed.Code samples and commands
Additional context
The statement above executes
ALTER COLUMN "DB.SCHEMA.TABLE_NAME.TEST_COLUMN" SET TAG "TAG_DB"."TAG_SCHEMA"."TAG_NAME" = "TEST"
which gives a syntax error asALTER COLUMN ...
is not supported on Snowflake.The text was updated successfully, but these errors were encountered: