diff options
author | Nathan Bossart <nathan@postgresql.org> | 2025-08-19 10:43:15 -0500 |
---|---|---|
committer | Nathan Bossart <nathan@postgresql.org> | 2025-08-19 10:43:15 -0500 |
commit | c6abf24ebfecf0ef4f7d21750e198959b8b61586 (patch) | |
tree | 738733d05f077370c2ffb1c130a9c2a20689f036 /src/include/utils/dsa.h | |
parent | 38c5fbd97ee6a8409c6c41d6af0c06169cd51c2b (diff) |
Fix misspelling of "tranche" in dsa.h.
Oversight in commit bb952c8c8b.
Discussion: https://postgr.es/m/aKOWzsCPgrsoEG1Q%40nathan
Diffstat (limited to 'src/include/utils/dsa.h')
-rw-r--r-- | src/include/utils/dsa.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/utils/dsa.h b/src/include/utils/dsa.h index 0a6067be628..f2104dacbfc 100644 --- a/src/include/utils/dsa.h +++ b/src/include/utils/dsa.h @@ -114,13 +114,13 @@ typedef pg_atomic_uint64 dsa_pointer_atomic; dsa_allocate_extended(area, size, DSA_ALLOC_ZERO) /* Create dsa_area with default segment sizes */ -#define dsa_create(tranch_id) \ - dsa_create_ext(tranch_id, DSA_DEFAULT_INIT_SEGMENT_SIZE, \ +#define dsa_create(tranche_id) \ + dsa_create_ext(tranche_id, DSA_DEFAULT_INIT_SEGMENT_SIZE, \ DSA_MAX_SEGMENT_SIZE) /* Create dsa_area with default segment sizes in an existing share memory space */ -#define dsa_create_in_place(place, size, tranch_id, segment) \ - dsa_create_in_place_ext(place, size, tranch_id, segment, \ +#define dsa_create_in_place(place, size, tranche_id, segment) \ + dsa_create_in_place_ext(place, size, tranche_id, segment, \ DSA_DEFAULT_INIT_SEGMENT_SIZE, \ DSA_MAX_SEGMENT_SIZE) |