Re: How to use \restrict or \unrestirct in python

2025-09-20 Thread Adrian Klaver
On 9/15/25 00:16, ma lz wrote: To fix CVE-2025-8714, PG introduce \restrict , but if we use python ( like psycopg2), it does not support slash command. The backslash commands are specific to psql: https://www.postgresql.org/docs/current/app-psql.html Per the release notes: https://www.postgr

Re: How to use \restrict or \unrestirct in python

2025-09-15 Thread David G. Johnston
On Monday, September 15, 2025, ma lz wrote: > To fix CVE-2025-8714, PG introduce \restrict , but if we use python ( like > psycopg2), it does not support slash command. > Great, then you are unaffected by the CVE that targets the psql application. David J.

How to use \restrict or \unrestirct in python

2025-09-15 Thread ma lz
To fix CVE-2025-8714, PG introduce \restrict , but if we use python ( like psycopg2), it does not support slash command.