Details
Details
- Reviewers
Staudey - Group Reviewers
Triage Team - Commits
- R2488:1bf321c01ca9: Update Psycopg to 2.9.5
Connect to, and query, an existing Pagila database:
python3
import psycopg2
conn = psycopg2.connect("dbname=pagila")
cur = conn.cursor()
cur.execute("SELECT title, description FROM film WHERE fulltext @@ to_tsquery('saga&india');")
for i in cur.fetchall():
print(f"Title: {i[0]}, description: {i[1]}")Diff Detail
Diff Detail
- Repository
- R2488 psycopg2
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
Comment Actions
This seems to be based on an old commit, instead of the newest one: https://dev.getsol.us/R2488:0a584cfa3050bb2525a587d9071889df7aa244a8
Comment Actions
@Staudey: whoops, sorry about that (and the incorrect description). Should be OK now!
Comment Actions
Only noticed after adding the 2.9.5 changelog and title that something else was amiss ?
LGTM now, thanks!