1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-12 21:01:52 +03:00

The constant in backend/utils/misc/trace.c, line 32 limits the length of

logged queries to 1024, truncating longer queries.  That is about half of
the size I need (I have a union that is 2K long).  Can someone consider
bumping it to 4K or so?  Patch attached...

Regards,
Ed Loehr
This commit is contained in:
Bruce Momjian
2000-04-10 19:25:29 +00:00
parent 5b795bec59
commit a447ae2221

View File

@ -29,7 +29,7 @@
* but it's probably not worth the trouble. Instead limit trace message * but it's probably not worth the trouble. Instead limit trace message
* length to this. * length to this.
*/ */
#define TRACEMSG_MAXLEN 1024 #define TRACEMSG_MAXLEN 4096
#ifdef USE_SYSLOG #ifdef USE_SYSLOG
/* /*