Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/snowflake/snowpark/_internal/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,8 @@ def is_interactive() -> bool:
return hasattr(sys, "ps1") or sys.flags.interactive or "snowbook" in sys.modules


IS_V5_DRIVER: bool = connector_version[0] >= 5

@lru_cache
def get_connector_version() -> str:
return ".".join([str(d) for d in connector_version if d is not None])
Expand Down
Loading