Skip to content

Commit

Permalink
Add link to Github issue for dealing with other URL param types
Browse files Browse the repository at this point in the history
  • Loading branch information
saulbein committed Sep 11, 2023
1 parent 069f611 commit 2fcc485
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/snowflake/sqlalchemy/snowdialect.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,7 @@ def create_connect_args(self, url: URL):
elif bool in expected_type:
opts[name] = parse_url_boolean(value)
# TODO: how do we handle other types, like int?
# https://github.com/snowflakedb/snowflake-sqlalchemy/issues/447
else:
opts[name] = value

Expand Down

0 comments on commit 2fcc485

Please sign in to comment.