1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-09 13:09:39 +03:00

Fix typos in comments and debug message

Antonin Houska
This commit is contained in:
Magnus Hagander
2016-07-18 18:46:57 +02:00
parent 7d67606569
commit 55d57359f2
3 changed files with 6 additions and 6 deletions

View File

@@ -466,8 +466,8 @@ ReorderBufferGetTupleBuf(ReorderBuffer *rb, Size tuple_len)
/*
* Most tuples are below MaxHeapTupleSize, so we use a slab allocator for
* those. Thus always allocate at least MaxHeapTupleSize. Note that tuples
* tuples generated for oldtuples can be bigger, as they don't have
* out-of-line toast columns.
* generated for oldtuples can be bigger, as they don't have out-of-line
* toast columns.
*/
if (alloc_len < MaxHeapTupleSize)
alloc_len = MaxHeapTupleSize;