Description
With PostgreSQL session parameters now being tracked, we can move the dynamic fast-forward logic (used for COPY ... FROM STDIN) to execute after session variables are set on the backend connection.
Why this change?
Previously, since session parameters weren’t tracked, we used any available connection from the pool and invoked dynamic fast-forward on it. Now that session parameters are tracked, we can simplify and streamline this logic.