Release notes can be found here.
Details
Details
- Reviewers
Staudey - Group Reviewers
Triage Team - Commits
- R2488:26266eddcf67: Update Psycopg to 2.9.6
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