wcp-library 1.5.3__tar.gz → 1.5.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {wcp_library-1.5.3 → wcp_library-1.5.6}/PKG-INFO +1 -1
- {wcp_library-1.5.3 → wcp_library-1.5.6}/pyproject.toml +1 -1
- {wcp_library-1.5.3 → wcp_library-1.5.6}/wcp_library/sql/postgres.py +4 -1
- {wcp_library-1.5.3 → wcp_library-1.5.6}/README.md +0 -0
- {wcp_library-1.5.3 → wcp_library-1.5.6}/wcp_library/__init__.py +0 -0
- {wcp_library-1.5.3 → wcp_library-1.5.6}/wcp_library/credentials/__init__.py +0 -0
- {wcp_library-1.5.3 → wcp_library-1.5.6}/wcp_library/credentials/_credential_manager_asynchronous.py +0 -0
- {wcp_library-1.5.3 → wcp_library-1.5.6}/wcp_library/credentials/_credential_manager_synchronous.py +0 -0
- {wcp_library-1.5.3 → wcp_library-1.5.6}/wcp_library/credentials/api.py +0 -0
- {wcp_library-1.5.3 → wcp_library-1.5.6}/wcp_library/credentials/ftp.py +0 -0
- {wcp_library-1.5.3 → wcp_library-1.5.6}/wcp_library/credentials/internet.py +0 -0
- {wcp_library-1.5.3 → wcp_library-1.5.6}/wcp_library/credentials/oracle.py +0 -0
- {wcp_library-1.5.3 → wcp_library-1.5.6}/wcp_library/credentials/postgres.py +0 -0
- {wcp_library-1.5.3 → wcp_library-1.5.6}/wcp_library/emailing.py +0 -0
- {wcp_library-1.5.3 → wcp_library-1.5.6}/wcp_library/ftp/__init__.py +0 -0
- {wcp_library-1.5.3 → wcp_library-1.5.6}/wcp_library/ftp/ftp.py +0 -0
- {wcp_library-1.5.3 → wcp_library-1.5.6}/wcp_library/ftp/sftp.py +0 -0
- {wcp_library-1.5.3 → wcp_library-1.5.6}/wcp_library/informatica.py +0 -0
- {wcp_library-1.5.3 → wcp_library-1.5.6}/wcp_library/logging.py +0 -0
- {wcp_library-1.5.3 → wcp_library-1.5.6}/wcp_library/selenium/__init__.py +0 -0
- {wcp_library-1.5.3 → wcp_library-1.5.6}/wcp_library/selenium/_selenium_driver.py +0 -0
- {wcp_library-1.5.3 → wcp_library-1.5.6}/wcp_library/selenium/selenium_helper.py +0 -0
- {wcp_library-1.5.3 → wcp_library-1.5.6}/wcp_library/sql/__init__.py +0 -0
- {wcp_library-1.5.3 → wcp_library-1.5.6}/wcp_library/sql/oracle.py +0 -0
- {wcp_library-1.5.3 → wcp_library-1.5.6}/wcp_library/time.py +0 -0
@@ -34,6 +34,7 @@ def _connect_warehouse(username: str, password: str, hostname: str, port: int, d
|
|
34
34
|
conninfo=conninfo,
|
35
35
|
min_size=min_connections,
|
36
36
|
max_size=max_connections,
|
37
|
+
kwargs={'options': '-c datestyle=ISO,YMD'},
|
37
38
|
open=True
|
38
39
|
)
|
39
40
|
return session_pool
|
@@ -60,7 +61,9 @@ async def _async_connect_warehouse(username: str, password: str, hostname: str,
|
|
60
61
|
session_pool = AsyncConnectionPool(
|
61
62
|
conninfo=conninfo,
|
62
63
|
min_size=min_connections,
|
63
|
-
max_size=max_connections
|
64
|
+
max_size=max_connections,
|
65
|
+
kwargs={"options": "-c datestyle=ISO,YMD"},
|
66
|
+
open=False
|
64
67
|
)
|
65
68
|
return session_pool
|
66
69
|
|
File without changes
|
File without changes
|
File without changes
|
{wcp_library-1.5.3 → wcp_library-1.5.6}/wcp_library/credentials/_credential_manager_asynchronous.py
RENAMED
File without changes
|
{wcp_library-1.5.3 → wcp_library-1.5.6}/wcp_library/credentials/_credential_manager_synchronous.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|