Page MenuHomeSolus

Update Psycopg to 2.9.5
ClosedPublic

Authored by silke on Nov 2 2022, 12:42 PM.
Tags
None
Referenced Files
F11034558: D13704.id33483.diff
Wed, Aug 9, 4:56 PM
F11034557: D13704.id33465.diff
Wed, Aug 9, 4:56 PM
F11034556: D13704.id33480.diff
Wed, Aug 9, 4:56 PM
F11034555: D13704.id.diff
Wed, Aug 9, 4:56 PM
F11026462: D13704.diff
Wed, Aug 9, 2:24 AM
F10984321: D13704.diff
Sun, Jul 23, 5:20 PM
F10807856: D13704.id33483.diff
May 30 2023, 6:21 AM
F10807518: D13704.id33465.diff
May 30 2023, 5:15 AM
Subscribers

Details

Summary

Release notes:

Test Plan

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

Repository
R2488 psycopg2
Branch
master
Lint
No Lint Coverage
Unit
No Test Coverage
Build Status
Buildable 4527
Build 4527: arc lint + arc unit

Event Timeline

silke requested review of this revision.Nov 2 2022, 12:42 PM
Staudey retitled this revision from Update Psycopg to 2.9.4 to Update Psycopg to 2.9.5.
Staudey requested changes to this revision.Nov 2 2022, 3:55 PM
Staudey added a subscriber: Staudey.

This seems to be based on an old commit, instead of the newest one: https://dev.getsol.us/R2488:0a584cfa3050bb2525a587d9071889df7aa244a8

This revision now requires changes to proceed.Nov 2 2022, 3:55 PM

Rebase on current master

@Staudey: whoops, sorry about that (and the incorrect description). Should be OK now!

Only noticed after adding the 2.9.5 changelog and title that something else was amiss ?

LGTM now, thanks!

This revision is now accepted and ready to land.Nov 2 2022, 4:43 PM
This revision was automatically updated to reflect the committed changes.