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
Inside utils/snowpark_utils.py
# Convert snowsql connection variable names to snowcli ones # session_config_dict = { # snowsql_to_snowpark_config_mapping[k]: v.strip('"') # for k, v in session_config.items() # }
session_config_dict = {} for (k1,v1), (k2,v2) in zip(snowsql_to_snowpark_config_mapping.items(), session_config.items()): session_config_dict[k1] = v2.strip('"')
Also, inside steps/02_load_raw.py
# current_dir = os.getcwd() current_dir = os.path.dirname(os.path.abspath(__file__))
The text was updated successfully, but these errors were encountered:
Sorry about the CAPS!!
Sorry, something went wrong.
I was facing issue related to path, thanks @Peeyush-Now this worked for me
No branches or pull requests
Inside utils/snowpark_utils.py
THIS WILL NOT WORK AS THE KEYS BETWEEN SNOWCLI AND SNOWPARK ARE DIFFERENT!!
WE NEED TO IETRATE OVER BOTH DICTIONARIES AT THE SAME TIME
Also, inside steps/02_load_raw.py
perhaps make this more foolproof
The text was updated successfully, but these errors were encountered: