We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please update the following code (and all other instances) so that user names with special characters (like emails) work as expected.
line 210: https://github.com/Snowflake-Labs/sf-samples/blob/main/samples/tasty_bytes/FY25_Zero_To_Snowflake/tb_governance_snowflake_horizon.sql
from: SET my_user_var = CURRENT_USER();
SET my_user_var = CURRENT_USER();
to: SET my_user_var = (SELECT '"' || CURRENT_USER() || '"' );
SET my_user_var = (SELECT '"' || CURRENT_USER() || '"' );
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Please update the following code (and all other instances) so that user names with special characters (like emails) work as expected.
line 210:
https://github.com/Snowflake-Labs/sf-samples/blob/main/samples/tasty_bytes/FY25_Zero_To_Snowflake/tb_governance_snowflake_horizon.sql
from:
SET my_user_var = CURRENT_USER();
to:
SET my_user_var = (SELECT '"' || CURRENT_USER() || '"' );
The text was updated successfully, but these errors were encountered: