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
Is your feature request related to a problem? Please describe.
I would like to improve the CREATE TABLE statement of Snowflake ddl to support the Column WITH MASKING POLICY.
Describe the solution you'd like
CREATE OR REPLACE TABLE schemaName.TableAddresses (
AddressID NUMBER(38,0) NOT NULL,
Address1 VARCHAR(100) WITH MASKING POLICY DBName.MASKING_POLICY_LIBRARY.MASK_STRING WITH TAG (DBName.MASKING_POLICY_LIBRARY.PROJECT_POLICY_MASK='mask_object')
);
Supported by DDLParser.run() functions
Describe alternatives you've considered
add MASKING POLICY and TAG members same as Comment, Nullable or Default properties