terraform-provider-snowflake
terraform-provider-snowflake copied to clipboard
View Column Comment Section
Is your feature request related to a problem? Please describe.
Add the column comments.
CREATE VIEW TEST
COMMENT = 'This test table.'
(
ID COMMENT 'This is the ID'
)
AS
SELECT ID FROM TEST;
Based on the source code this cant be done since the Create view function already precreates the
CREATE OR REPLACE VIEW
COMMENT = ''
AS
Describe the solution you'd like
I need to put the column comment in between View Comment and AS.
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
Is your feature request related to a problem? Please describe.
Add the column comments.
CREATE VIEW TEST COMMENT = 'This test table.' ( ID COMMENT 'This is the ID' ) AS SELECT ID FROM TEST;Based on the source code this cant be done since the Create view function already precreates the
CREATE OR REPLACE VIEW COMMENT = '' ASDescribe the solution you'd like
I need to put the column comment in between View Comment and AS.
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
Would love to know when this would be supported.
We are closing this issue as part of a cleanup described in announcement. If you believe that the issue is still valid in v0.89.0, please open a new ticket.