Describe the Feature
Avoid newlines for SET statements.
Current:
SET
statement_timeout = 0;
SET
lock_timeout = 0;
SET
idle_in_transaction_session_timeout = 0;
SET
transaction_timeout = 0;
SET
client_encoding = 'UTF8';
SET
standard_conforming_strings = on;
Wanted:
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET transaction_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
Why do you want this feature?
Denser format.
Describe the Feature
Avoid newlines for SET statements.
Current:
Wanted:
Why do you want this feature?
Denser format.