Log Message:
---
Stamp bug template for 8.3.
Modified Files:
--
pgsql/doc:
bug.template (r1.41 -> r1.42)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/bug.template.diff?r1=1.41&r2=1.42)
---(end of broadcast)-
Log Message:
---
Stamp releases notes for 8.2.3, 8.1.8, 8.0.12.
Tags:
REL8_2_STABLE
Modified Files:
--
pgsql/doc/src/sgml:
release.sgml (r1.488.2.5 -> r1.488.2.6)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/release.sgml.diff?r1=1.48
Log Message:
---
Stamp releases notes for 8.2.3, 8.1.8, 8.0.12.
Modified Files:
--
pgsql/doc/src/sgml:
release.sgml (r1.497 -> r1.498)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/release.sgml.diff?r1=1.497&r2=1.498)
-
Log Message:
---
Stamp releases notes for 8.2.3, 8.1.8, 8.0.12.
Tags:
REL8_1_STABLE
Modified Files:
--
pgsql/doc/src/sgml:
release.sgml (r1.400.2.38 -> r1.400.2.39)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/release.sgml.diff?r1=1.
Log Message:
---
Stamp releases notes for 8.2.3, 8.1.8, 8.0.12.
Tags:
REL8_0_STABLE
Modified Files:
--
pgsql/doc/src/sgml:
release.sgml (r1.321.4.31 -> r1.321.4.32)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/release.sgml.diff?r1=1.
Log Message:
---
Fix PG_VERSION_NUM too.
Tags:
REL8_2_STABLE
Modified Files:
--
pgsql/src/include:
pg_config.h.win32 (r1.38.2.3 -> r1.38.2.4)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/pg_config.h.win32.diff?r1=1.38.2.3&r2=1.38.2.4)
Log Message:
---
Fix wrong spacing (I think Bruce tried to hand-edit this instead of letting
autoconf do it)
Tags:
REL8_1_STABLE
Modified Files:
--
pgsql:
configure (r1.461.2.17 -> r1.461.2.18)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/config
Log Message:
---
Stamp releases 8.2.3, 8.1.8, 8.0.12. No release notes yet.
Tags:
REL8_2_STABLE
Modified Files:
--
pgsql:
configure (r1.523.2.4 -> r1.523.2.5)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/configure.diff?r1=1.523.2.4&r2=1.523.2.5)
Log Message:
---
Stamp releases 8.2.3, 8.1.8, 8.0.12. No release notes yet.
Tags:
REL8_1_STABLE
Modified Files:
--
pgsql:
configure (r1.461.2.16 -> r1.461.2.17)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/configure.diff?r1=1.461.2.16&r2=1.461.2
Log Message:
---
Stamp releases 8.2.3, 8.1.8, 8.0.12. No release notes yet.
Tags:
REL8_0_STABLE
Modified Files:
--
pgsql:
configure (r1.424.4.17 -> r1.424.4.18)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/configure.diff?r1=1.424.4.17&r2=1.424.4
Log Message:
---
Update FAQ for 8.2.3.
Tags:
REL8_2_STABLE
Modified Files:
--
pgsql/doc:
FAQ (r1.402.2.5 -> r1.402.2.6)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/FAQ.diff?r1=1.402.2.5&r2=1.402.2.6)
FAQ_AIX (r1.19.2.5 -> r1.19.2.6)
Log Message:
---
Update for 8.2.3.
Modified Files:
--
pgsql/doc:
FAQ (r1.412 -> r1.413)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/FAQ.diff?r1=1.412&r2=1.413)
pgsql/doc/src/FAQ:
FAQ.html (r1.368 -> r1.369)
(http://developer.p
Log Message:
---
Replace some strncpy() by strlcpy().
Modified Files:
--
pgsql/contrib/chkpass:
chkpass.c (r1.17 -> r1.18)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/contrib/chkpass/chkpass.c.diff?r1=1.17&r2=1.18)
pgsql/contrib/dblink:
db
Log Message:
---
Use memcpy() instead of strncpy() for copying into varlena structures.
Modified Files:
--
pgsql/contrib/intarray:
_int_bool.c (r1.8 -> r1.9)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/contrib/intarray/_int_bool.c.diff?r1=1.8&r2=1.9)
Log Message:
---
Add strlcat() from OpenBSD, to be used for replacing strncat and other
strange coding practices.
Modified Files:
--
pgsql:
configure (r1.533 -> r1.534)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/configure.diff?r1=1.533&r2=1.534)
Log Message:
---
Fix an error in the original coding of holdable cursors: PersistHoldablePortal
thought that it didn't have to reposition the underlying tuplestore if the
portal is atEnd. But this is not so, because tuplestores have separate read
and write cursors ... and the read cursor h
Log Message:
---
Fix an error in the original coding of holdable cursors: PersistHoldablePortal
thought that it didn't have to reposition the underlying tuplestore if the
portal is atEnd. But this is not so, because tuplestores have separate read
and write cursors ... and the read cursor h
Log Message:
---
Fix an error in the original coding of holdable cursors: PersistHoldablePortal
thought that it didn't have to reposition the underlying tuplestore if the
portal is atEnd. But this is not so, because tuplestores have separate read
and write cursors ... and the read cursor h
Log Message:
---
Fix an error in the original coding of holdable cursors: PersistHoldablePortal
thought that it didn't have to reposition the underlying tuplestore if the
portal is atEnd. But this is not so, because tuplestores have separate read
and write cursors ... and the read cursor h
Log Message:
---
Fix an error in the original coding of holdable cursors: PersistHoldablePortal
thought that it didn't have to reposition the underlying tuplestore if the
portal is atEnd. But this is not so, because tuplestores have separate read
and write cursors ... and the read cursor h
Log Message:
---
Add text about setting environment variables
Modified Files:
--
web/faq:
FAQ_windows.html (r1.11 -> r1.12)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pginstaller/web/faq/FAQ_windows.html.diff?r1=1.11&r2=1.12)
---(
Log Message:
---
Backpatch FAQs to 8.2.X branch.
Tags:
REL8_2_STABLE
Modified Files:
--
pgsql/doc:
FAQ (r1.402.2.4 -> r1.402.2.5)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/FAQ.diff?r1=1.402.2.4&r2=1.402.2.5)
FAQ_AIX (r1.19.2.4 -> r
Log Message:
---
Update for 8.2.2 as most recent release.
Modified Files:
--
pgsql/doc:
FAQ (r1.411 -> r1.412)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/FAQ.diff?r1=1.411&r2=1.412)
pgsql/doc/src/FAQ:
FAQ.html (r1.367 -> r1.368)
Log Message:
---
Update workding for daylight savings time.
Modified Files:
--
pgsql/doc:
FAQ (r1.410 -> r1.411)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/FAQ.diff?r1=1.410&r2=1.411)
pgsql/doc/src/FAQ:
FAQ.html (r1.366 -> r1.367)
Log Message:
---
Update timezone FAQ item:
USA saving time changes are included in PostgreSQL release 8.0.[4+],
and all later major releases, e.g. 8.1. Canada and Western Australia
changes are included in 8.0.[10+], 8.1.[6+], and all later major
releases. PostgreSQL relea
Log Message:
---
Remove typmod checking from the recent security-related patches. It turns
out that ExecEvalVar and friends don't necessarily have access to a tuple
descriptor with correct typmod: it definitely can contain -1, and possibly
might contain other values that are different from
Log Message:
---
Remove typmod checking from the recent security-related patches. It turns
out that ExecEvalVar and friends don't necessarily have access to a tuple
descriptor with correct typmod: it definitely can contain -1, and possibly
might contain other values that are different from
Log Message:
---
Remove typmod checking from the recent security-related patches. It turns
out that ExecEvalVar and friends don't necessarily have access to a tuple
descriptor with correct typmod: it definitely can contain -1, and possibly
might contain other values that are different from
Log Message:
---
Remove typmod checking from the recent security-related patches. It turns
out that ExecEvalVar and friends don't necessarily have access to a tuple
descriptor with correct typmod: it definitely can contain -1, and possibly
might contain other values that are different from
Log Message:
---
Split apart entries, one done now:
* -Move NAMEDATALEN from postgres_ext.h to pg_config_manual.h
* Consider making NAMEDATALEN more configurable in future releases
Modified Files:
--
pgsql/doc:
TODO (r1.2077 -> r1.2078)
(http://developer.p
Log Message:
---
Fix typo in comment.
Modified Files:
--
pgsql/src/backend/port:
sysv_shmem.c (r1.48 -> r1.49)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/port/sysv_shmem.c.diff?r1=1.48&r2=1.49)
---(end of broadcas
Log Message:
---
Remove some dead code, per Heikki.
Modified Files:
--
pgsql/src/backend/access/nbtree:
nbtinsert.c (r1.148 -> r1.149)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/nbtree/nbtinsert.c.diff?r1=1.148&r2=1.149)
-
Log Message:
---
Backported regression test changes from HEAD so the buildfarm hopefully gets
green again.
Tags:
REL8_2_STABLE
Modified Files:
--
pgsql/src/interfaces/ecpg/test/compat_informix:
dec_test.pgc (r1.5 -> r1.5.2.1)
(http://developer.postgr
Log Message:
---
Backported va_list handling cleanup
Tags:
REL8_0_STABLE
Modified Files:
--
pgsql/src/interfaces/ecpg/ecpglib:
execute.c (r1.38.4.10 -> r1.38.4.11)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/ecpglib/execute.c
Log Message:
---
Backported va_list handling cleanup
Tags:
REL8_1_STABLE
Modified Files:
--
pgsql/src/interfaces/ecpg/ecpglib:
execute.c (r1.43.2.8 -> r1.43.2.9)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/ecpglib/execute.c.d
Log Message:
---
Backported va_list handling cleanup
Tags:
REL8_2_STABLE
Modified Files:
--
pgsql/src/interfaces/ecpg/ecpglib:
execute.c (r1.62 -> r1.62.2.1)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/ecpglib/execute.c.diff?
Log Message:
---
Move NAMEDATALEN definition from postgres_ext.h to pg_config_manual.h. It
used to be part of libpq's exported interface many releases ago, but now
it's no longer necessary to make it accessible to clients.
Modified Files:
--
pgsql/doc/src/sgml:
synt
37 matches
Mail list logo