mirror of
https://github.com/postgres/postgres.git
synced 2025-10-22 14:32:25 +03:00
Increase hash_mem_multiplier default to 2.0.
Double the default setting for hash_mem_multiplier, from 1.0 to 2.0. This setting makes hash-based executor nodes use twice the usual work_mem limit. The PostgreSQL 15 release notes should have a compatibility note about this change. Author: Peter Geoghegan <pg@bowt.ie> Discussion: https://postgr.es/m/CAH2-Wzndc_ROk6CY-bC6p9O53q974Y0Ey4WX8jcPbuTZYM4Q3A@mail.gmail.com
This commit is contained in:
@@ -3762,7 +3762,7 @@ static struct config_real ConfigureNamesReal[] =
|
||||
GUC_EXPLAIN
|
||||
},
|
||||
&hash_mem_multiplier,
|
||||
1.0, 1.0, 1000.0,
|
||||
2.0, 1.0, 1000.0,
|
||||
NULL, NULL, NULL
|
||||
},
|
||||
|
||||
|
Reference in New Issue
Block a user