<feed xmlns='http://www.w3.org/2005/Atom'>
<title>postgresql.git, branch REL6_4</title>
<subtitle>This is the main PostgreSQL git repository.</subtitle>
<id>http://git.postgresql.org/cgit/postgresql.git/atom?h=REL6_4</id>
<link rel='self' href='http://git.postgresql.org/cgit/postgresql.git/atom?h=REL6_4'/>
<link rel='alternate' type='text/html' href='http://git.postgresql.org/cgit/postgresql.git/'/>
<updated>1999-03-07T02:01:09+00:00</updated>
<entry>
<title>Retrofit hashtable and shared-mem-size-estimation bug fixes</title>
<updated>1999-03-07T02:01:09+00:00</updated>
<author>
<name>Tom Lane</name>
</author>
<published>1999-03-07T02:01:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.postgresql.org/cgit/postgresql.git/commit/?id=2ecbf94430265822e08758df375ffea9d041a86a'/>
<id>urn:sha1:2ecbf94430265822e08758df375ffea9d041a86a</id>
<content type='text'>
into REL6_4.
</content>
</entry>
<entry>
<title>Oops, looks like my local copy of dt.c conflicted with</title>
<updated>1999-03-07T01:35:35+00:00</updated>
<author>
<name>Tom Lane</name>
</author>
<published>1999-03-07T01:35:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.postgresql.org/cgit/postgresql.git/commit/?id=0fda84bfcd7e3ab1a8bcca7282e2b319930f7070'/>
<id>urn:sha1:0fda84bfcd7e3ab1a8bcca7282e2b319930f7070</id>
<content type='text'>
Thomas' changes...
</content>
</entry>
<entry>
<title>Correct compile failures in REL6_4 datetime code.</title>
<updated>1999-03-06T22:49:03+00:00</updated>
<author>
<name>Tom Lane</name>
</author>
<published>1999-03-06T22:49:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.postgresql.org/cgit/postgresql.git/commit/?id=93c7e5026a36e5d56c843e5efa3f6b6b74859c5c'/>
<id>urn:sha1:93c7e5026a36e5d56c843e5efa3f6b6b74859c5c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>A fix for the int8 problem under FreeBSD ... if __FreeBSD__ is defined,</title>
<updated>1999-03-04T15:40:16+00:00</updated>
<author>
<name>Marc G. Fournier</name>
</author>
<published>1999-03-04T15:40:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.postgresql.org/cgit/postgresql.git/commit/?id=35336849e73d92a555cae23c568c1760d31a94c5'/>
<id>urn:sha1:35336849e73d92a555cae23c568c1760d31a94c5</id>
<content type='text'>
then use %qd vs %lld ...

Regression test for int8 passes with this applied...

Similar change should be applied to -CURRENT, am just focusing on v6.4.3
right now though...
</content>
</entry>
<entry>
<title>Move common date/time macros to a central place.</title>
<updated>1999-03-03T05:11:39+00:00</updated>
<author>
<name>Thomas G. Lockhart</name>
</author>
<published>1999-03-03T05:11:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.postgresql.org/cgit/postgresql.git/commit/?id=5e73ab70e6316fb7e3207e545aa951d847d20967'/>
<id>urn:sha1:5e73ab70e6316fb7e3207e545aa951d847d20967</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove equivalence between datetime and float8. Wasn't worth the trouble</title>
<updated>1999-02-13T06:00:52+00:00</updated>
<author>
<name>Thomas G. Lockhart</name>
</author>
<published>1999-02-13T06:00:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.postgresql.org/cgit/postgresql.git/commit/?id=c569f2a068a7e102c7a1bf5f32cbf2151cbf26ef'/>
<id>urn:sha1:c569f2a068a7e102c7a1bf5f32cbf2151cbf26ef</id>
<content type='text'>
 especially since datetime has too many reserved values to be a
 reasonable mapping.
</content>
</entry>
<entry>
<title>This patch fixes some problems in date handling for atypical dates.</title>
<updated>1999-02-13T05:59:34+00:00</updated>
<author>
<name>Thomas G. Lockhart</name>
</author>
<published>1999-02-13T05:59:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.postgresql.org/cgit/postgresql.git/commit/?id=2a6faa5368f927e0cc22334ad35393351fec8ede'/>
<id>urn:sha1:2a6faa5368f927e0cc22334ad35393351fec8ede</id>
<content type='text'>
Here is a summary:
Be more careful to check input string lengths as well as values
 when deciding whether a field is a year field.  Assume *anything* longer
 than 2 digits (if it isn't a special-case doy) is a valid year.
 This should fix the "Y1K" and "Y10K" problems
  pointed out by Massimo recently.
Check usage of BC to require a positive-valued year; before just used it
 to flip the sign of the year without checking. This led to problems
 near year zero.
Allow a 5 digit "concatenated date" of 2 digit year plus day of year.
Do 2-&gt;4 digit year correction for 6 and 5 digit "concatenated dates".
 Somehow forgot this originally. Guess not many folks use it...
Move common macros to dt.h.
</content>
</entry>
<entry>
<title>Back-patch freebsd4 and '. ./conftest.sh' fixes into REL6_4.</title>
<updated>1999-02-07T19:37:23+00:00</updated>
<author>
<name>Tom Lane</name>
</author>
<published>1999-02-07T19:37:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.postgresql.org/cgit/postgresql.git/commit/?id=a0071f1393273d1c706b6a64b573b6d6d8243460'/>
<id>urn:sha1:a0071f1393273d1c706b6a64b573b6d6d8243460</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Changed ExecConstraints() and ExecRelCheck() to cache constraint</title>
<updated>1999-02-07T16:50:55+00:00</updated>
<author>
<name>Jan Wieck</name>
</author>
<published>1999-02-07T16:50:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.postgresql.org/cgit/postgresql.git/commit/?id=cff91fedffc5546f201b2537a0f01b9ad7d83c01'/>
<id>urn:sha1:cff91fedffc5546f201b2537a0f01b9ad7d83c01</id>
<content type='text'>
qualification trees in the execution state to avoid memory exhaustion
on INSERT, UPDATE and COPY to tables with check constraints. This
also speeds up those operations substantial because the nodeToString()
for the constraints ccbin is only performed once per query.

Jan
</content>
</entry>
<entry>
<title>Fixed not free'd heap tuple if BEFORE DELETE trigger procedure</title>
<updated>1999-02-07T15:13:13+00:00</updated>
<author>
<name>Jan Wieck</name>
</author>
<published>1999-02-07T15:13:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.postgresql.org/cgit/postgresql.git/commit/?id=ccf330d67e2faf253c990707f19ccee2dab0a79e'/>
<id>urn:sha1:ccf330d67e2faf253c990707f19ccee2dab0a79e</id>
<content type='text'>
returns new created tuple instead of the one given to it.

Jan
</content>
</entry>
</feed>
