-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: sqlalchemy server version info without request
- Loading branch information
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
lib/dl_sqlalchemy_postgres/dl_sqlalchemy_postgres_tests/unit/test_server_version.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import sqlalchemy | ||
import sqlalchemy.orm as sqlalchemy_orm | ||
|
||
|
||
SERVER_VERSION_INFO = (123, 45, 67, 89) | ||
SERVER_VERSION = ".".join(map(str, SERVER_VERSION_INFO)) | ||
|
||
|
||
def test_server_version(engine_url: str): | ||
engine = sqlalchemy.create_engine(engine_url, connect_args=dict(server_version=SERVER_VERSION)) | ||
session_maker = sqlalchemy_orm.sessionmaker(bind=engine) | ||
engine_session = session_maker() | ||
# Connection and version get initialized on first query: | ||
engine_session.scalar("select 1") | ||
ver = engine_session.get_bind().dialect.server_version_info | ||
assert ver == SERVER_VERSION_INFO |