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
CREATE MASKING POLICY email_mask
AS
(val string)
RETURNS string ->
ALTER TABLE user_info MODIFY COLUMN email SET MASKING POLICY email_mask;
error: APIError: ResponseError with 1114: Column 'email' data type string null does not match to the mask policy type string
becuse email is varchar null
The text was updated successfully, but these errors were encountered:
Summary
https://docs.databend.com/sql/sql-commands/ddl/mask-policy/create-mask-policy#examples
ALTER TABLE user_info MODIFY COLUMN email SET MASKING POLICY email_mask;
error: APIError: ResponseError with 1114: Column 'email' data type string null does not match to the mask policy type string
becuse email is varchar null
The text was updated successfully, but these errors were encountered: