how can I get non-truncated version of running sql? - Mailing list pgsql-general

From Julie Nishimura
Subject how can I get non-truncated version of running sql?
Date
Msg-id BYAPR08MB50143AD05A6257499AB3EEA6AC970@BYAPR08MB5014.namprd08.prod.outlook.com
Whole thread Raw
Responses Re: how can I get non-truncated version of running sql?
List pgsql-general
How do i find the FULL query running on a postgres instance?  When I run:

SELECT datname, pid, state, query, age(clock_timestamp(), query_start) AS age
FROM pg_stat_activity
WHERE state <> 'idle'
   AND query NOT LIKE '% FROM pg_stat_activity %'
ORDER BY age;

query seems to be truncated

Thanks!

pgsql-general by date:

Previous
From: Vijaykumar Jain
Date:
Subject: Profile a db connection time?
Next
From: Adrian Klaver
Date:
Subject: Re: how can I get non-truncated version of running sql?