Skip to content
This repository was archived by the owner on Mar 16, 2026. It is now read-only.

Commit 5503877

Browse files
committed
Updated docs
1 parent c0016ee commit 5503877

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ In order to use this library, you first need to go through the following steps:
3636

3737
.. note::
3838
This library is a prerelease to gauge compatiblity with SQLAlchemy
39-
versions >= 2.0.0
39+
versions >= 1.4.16 < 2.1
4040

4141
Installation
4242
------------

sqlalchemy_bigquery/test.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from sqlalchemy.sql.expression import cast
2+
from sqlalchemy import String, func
3+
code_coding = db.query(func.unnest(self.model.code_coding)).subquery()
4+
conditions.append(
5+
and_(cast(code_coding.c.code, String) == "H", cast(code_coding.c.display, String) == "BLAST")
6+
)

0 commit comments

Comments
 (0)