diff options
author | Robert Haas <rhaas@postgresql.org> | 2020-01-07 12:14:19 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2020-01-07 12:14:19 -0500 |
commit | 814727858918154bdde9dbdfb99c544b52eb8818 (patch) | |
tree | a613095ce9853179a2cbdc0e40723ede639ba2ed /src | |
parent | 2bd0735b954b14dcfab85d57fc4a0c7f9826fbb1 (diff) | |
download | postgresql-814727858918154bdde9dbdfb99c544b52eb8818.tar.gz postgresql-814727858918154bdde9dbdfb99c544b52eb8818.zip |
Increase the maximum value of track_activity_query_size.
This one-line change provoked a lot of discussion, but ultimately
the consensus seems to be that allowing a larger value might be
useful to somebody, and probably won't hurt anyone who chooses
not to take advantage of the higher maximum limit.
Vyacheslav Makarov, reviewed by many people.
Discussion: http://postgr.es/m/7b5ecc5a9991045e2f13c84e3047541d@postgrespro.ru
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/misc/guc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index a4e5d0886a1..62285792eca 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -3210,7 +3210,7 @@ static struct config_int ConfigureNamesInt[] = GUC_UNIT_BYTE }, &pgstat_track_activity_query_size, - 1024, 100, 102400, + 1024, 100, 1048576, NULL, NULL, NULL }, |