Re: Add Pipelining support in psql

2025-04-16 Thread a.kozhemyakin
Hello, After commit 2cce0fe on master When executing query: psql postgres

Re: Visibility bug with prepared transaction with subtransactions on standby

2024-07-29 Thread a.kozhemyakin
Hi, I'm trying to run REL_13_STABLE recovey tests for windows and I get the error waiting for server to shut down.. failed pg_ctl: server does not shut down # pg_ctl stop failed: 256 # Stale postmaster.pid file for node "paris": PID 1868 no longer exists Bail out! pg_ctl stop failed

pltcl crashes due to a syntax error

2024-05-31 Thread a.kozhemyakin
Hello hackers, When executing the following query on master branch: CREATE EXTENSION pltcl; CREATE or replace PROCEDURE test_proc5(INOUT a text)     LANGUAGE pltcl     AS $$     set aa [concat $1 "+" $1]     return [list $aa $aa])     $$; CALL test_proc5('abc'); CREATE EXTEN