Page MenuHomeSolus

Update PostgreSQL to 14.1
ClosedPublic

Authored by silke on Nov 14 2021, 11:20 AM.
Tags
None
Referenced Files
F11048948: D12300.id29896.diff
Thu, Aug 10, 5:10 PM
F11048947: D12300.id.diff
Thu, Aug 10, 5:10 PM
F11048946: D12300.id29916.diff
Thu, Aug 10, 5:10 PM
F11048945: D12300.id29897.diff
Thu, Aug 10, 5:10 PM
F11034559: D12300.diff
Wed, Aug 9, 4:56 PM
F10898931: D12300.id29897.diff
Jul 3 2023, 9:21 AM
F10841823: D12300.id29896.diff
Jun 10 2023, 9:01 AM
F10841438: D12300.id29897.diff
Jun 10 2023, 7:11 AM
Subscribers

Details

Summary

Release notes can be found here and here.

Note that the update instructions need to be updated first, see help-center-docs#303.

Test Plan
psql postgres -c "CREATE DATABASE pagila;"
psql pagila < pagila-schema.sql
psql pagila < pagila-data.sql
psql pagila -c "SELECT title, description FROM film WHERE fulltext @@ to_tsquery('saga&india');"
  • Connect to database using LibreOffice Base.
  • Connect to database using Psycopg2:
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
R2469 postgresql
Lint
Lint Not Applicable
Unit
Tests Not Applicable