pgsql: Change the declaration of struct varlena so that the length word

From: tgl(at)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Change the declaration of struct varlena so that the length word
Date: 2008-02-23 19:11:45
Message-ID: 20080223191145.8A15A754108@cvs.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Change the declaration of struct varlena so that the length word is
represented as "char ...[4]" not "int32". Since the length word is never
supposed to be accessed via this struct member anyway, this won't break
any existing code that is following the rules. The advantage is that C
compilers will no longer assume that a pointer to struct varlena is
word-aligned, which prevents incorrect optimizations in TOAST-pointer
access and perhaps other places. gcc doesn't seem to do this (at least
not at -O2), but the problem is demonstrable on some other compilers.

I changed struct inet as well, but didn't bother to touch a lot of other
struct definitions in which it wouldn't make any difference because there
were other fields forcing int alignment anyway. Hopefully none of those
struct definitions are used for accessing unaligned Datums.

Modified Files:
--------------
pgsql/doc/src/sgml:
xtypes.sgml (r1.29 -> r1.30)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/xtypes.sgml?r1=1.29&r2=1.30)
pgsql/src/backend/access/heap:
tuptoaster.c (r1.81 -> r1.82)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/heap/tuptoaster.c?r1=1.81&r2=1.82)
pgsql/src/include:
c.h (r1.222 -> r1.223)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/c.h?r1=1.222&r2=1.223)
pgsql/src/include/utils:
inet.h (r1.28 -> r1.29)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/utils/inet.h?r1=1.28&r2=1.29)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2008-02-23 19:11:55 pgsql: Change the declaration of struct varlena so that the length word
Previous Message User Pgunittest 2008-02-23 18:25:48 pgunittest - pgUnitTest_Rnd: