diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2007-01-04 16:29:42 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2007-01-04 16:29:42 +0000 |
commit | 7c8927bf08b46cfa839aaee81b71bb42e2df4eb5 (patch) | |
tree | 2a8b8dd217efe4540779d2268d64ea9faf9843a7 /src/backend/access/heap/tuptoaster.c | |
parent | a252994abeebc4832e2c9c09754d02ace00970b9 (diff) | |
download | postgresql-7c8927bf08b46cfa839aaee81b71bb42e2df4eb5.tar.gz postgresql-7c8927bf08b46cfa839aaee81b71bb42e2df4eb5.zip |
Fix some small typos in comments. Greg Stark
Diffstat (limited to 'src/backend/access/heap/tuptoaster.c')
-rw-r--r-- | src/backend/access/heap/tuptoaster.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/access/heap/tuptoaster.c b/src/backend/access/heap/tuptoaster.c index 49ae91f4062..5ace333cf54 100644 --- a/src/backend/access/heap/tuptoaster.c +++ b/src/backend/access/heap/tuptoaster.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/access/heap/tuptoaster.c,v 1.66 2006/10/05 23:33:33 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/access/heap/tuptoaster.c,v 1.67 2007/01/04 16:29:41 tgl Exp $ * * * INTERFACE ROUTINES @@ -1113,7 +1113,7 @@ toast_delete_datum(Relation rel, Datum value) return; /* - * Open the toast relation and it's index + * Open the toast relation and its index */ toastrel = heap_open(attr->va_content.va_external.va_toastrelid, RowExclusiveLock); @@ -1337,7 +1337,7 @@ toast_fetch_datum_slice(varattrib *attr, int32 sliceoffset, int32 length) endoffset = (sliceoffset + length - 1) % TOAST_MAX_CHUNK_SIZE; /* - * Open the toast relation and it's index + * Open the toast relation and its index */ toastrel = heap_open(attr->va_content.va_external.va_toastrelid, AccessShareLock); |