pgsql: Fix getDatumCopy(): don't use store_att_byval to copy into a

From: tgl(at)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix getDatumCopy(): don't use store_att_byval to copy into a
Date: 2006-07-16 00:54:22
Message-ID: 20060716005422.AB7F89FB210@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Fix getDatumCopy(): don't use store_att_byval to copy into a Datum
variable (this accounts for regression failures on PPC64, and in fact
won't work on any big-endian machine). Get rid of hardwired knowledge
about datum size rules; make it look just like datumCopy().

Modified Files:
--------------
pgsql/src/backend/access/gin:
ginbulk.c (r1.3 -> r1.4)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/gin/ginbulk.c.diff?r1=1.3&r2=1.4)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2006-07-16 01:05:23 pgsql: Put back another not-so-unnecessary #include, per report from
Previous Message Tom Lane 2006-07-16 00:52:05 pgsql: Improve error message wording.