terraform-provider-snowflake icon indicating copy to clipboard operation
terraform-provider-snowflake copied to clipboard

View Column Comment Section

Open vonpizarro opened this issue 4 years ago • 1 comments

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.

vonpizarro avatar Apr 30 '21 04:04 vonpizarro

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.

Would love to know when this would be supported.

aditya-ghosh-zocdoc avatar Aug 17 '22 21:08 aditya-ghosh-zocdoc

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.

sfc-gh-asawicki avatar Apr 30 '24 16:04 sfc-gh-asawicki