-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
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
Add support for "execute immediate" for python files #1018
Conversation
4db55b4
to
27bbcaa
Compare
54d1369
to
db0db7d
Compare
f5bf9bb
to
2c0e56f
Compare
src/snowflake/cli/api/constants.py
Outdated
@@ -20,6 +20,7 @@ | |||
|
|||
TEMPLATES_PATH = Path(__file__).parent.parent / "templates" | |||
DEPLOYMENT_STAGE = "deployments" | |||
PYTHON_3_12 = (3, 12) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
667553d
to
7d56630
Compare
9fa1732
to
438b0bb
Compare
a2aa92e
to
bf910bb
Compare
self._snowpark_session = Session.builder.configs( | ||
{"connection": self._conn} | ||
).create() | ||
return self._snowpark_session |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why you open second connection?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's the same connection, but wrapped around Snowpark util
Add snowpark as dependency Add requirements.txt support
…" for python files
bf910bb
to
fdfede3
Compare
…mediate" for python files
Pre-review checklist
Changes description
...