From: Bruce Momjian <bruce@momjian.us> Date: Sun, 10 Sep 2006 23:33:22 +0000 (+0000) Subject: Remove unnecessary brace pair. X-Git-Tag: REL8_2_BETA1~106 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d18768867e45cd1204ad3792759fe9553938abea;p=postgresql Remove unnecessary brace pair. --- diff --git a/src/backend/access/heap/tuptoaster.c b/src/backend/access/heap/tuptoaster.c index 43ca366f0a..31386de167 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.63 2006/07/31 20:08:59 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/access/heap/tuptoaster.c,v 1.64 2006/09/10 23:33:22 momjian Exp $ * * * INTERFACE ROUTINES @@ -162,9 +162,7 @@ heap_tuple_untoast_attr_slice(varattrib *attr, int32 sliceoffset, int32 slicelen if (VARATT_IS_EXTERNAL(attr)) tmp = toast_fetch_datum(attr); else - { tmp = attr; /* compressed in main tuple */ - } preslice = (varattrib *) palloc(attr->va_content.va_external.va_rawsize + VARHDRSZ);