Log Message:
---
Fix psql history handling so 'execute' backslash commands (\g)
remain as part of the multi-line query.
Modified Files:
--
pgsql/src/bin/psql:
mainloop.c (r1.72 -> r1.73)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/mainloo
Log Message:
---
Add for ecpg:
> o Add COPY TO STDIN / STDOUT handling
Modified Files:
--
pgsql/doc:
TODO (r1.1784 -> r1.1785)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/TODO.diff?r1=1.1784&r2=1.1785)
pgsql/doc/src/FAQ:
TODO.ht
Log Message:
---
Add WSACancelBlockingCall TODO.detail item.
Added Files:
---
pgsql/doc/TODO.detail:
win32intr (r1.1)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/TODO.detail/win32intr?rev=1.1&content-type=text/x-cvsweb-markup)
---
Log Message:
---
Add for Win32:
> o Check WSACancelBlockingCall() for interrupts (win32intr)
>
Modified Files:
--
pgsql/doc:
TODO (r1.1785 -> r1.1786)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/TODO.diff?r1=1.1785&r2=1.1786)
pgsql/doc/
Log Message:
---
Update item.
Modified Files:
--
pgsql/doc/TODO.detail:
win32intr (r1.1 -> r1.2)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/TODO.detail/win32intr.diff?r1=1.1&r2=1.2)
---(end of broadcast)--
Log Message:
---
Add:
> o Prevent parent tables from altering or dropping constraints
> like CHECK that are inherited by child tables
>
> Dropping constraints should only be possible with CASCADE.
>
Modified Files:
--
pgsql/doc:
TODO (r1.1786
Log Message:
---
This patch adds native LDAP auth, for those platforms that don't have
PAM (such as Win32, but also unixen without PAM). On Unix, uses
OpenLDAP. On win32, uses the builin WinLDAP library.
Magnus Hagander
Modified Files:
--
pgsql:
configure (r1.484 -
Log Message:
---
* Stephen Frost ([EMAIL PROTECTED]) wrote:
> I've now tested this patch at home w/ 8.2HEAD and it seems to fix the
> bug. I plan on testing it under 8.1.2 at work tommorow with
> mod_auth_krb5, etc, and expect it'll work there. Assuming all goes
> well and unless
Log Message:
---
* Stephen Frost ([EMAIL PROTECTED]) wrote:
> I've now tested this patch at home w/ 8.2HEAD and it seems to fix the
> bug. I plan on testing it under 8.1.2 at work tommorow with
> mod_auth_krb5, etc, and expect it'll work there. Assuming all goes
> well and unless
Log Message:
---
Update comment on how sighup signal affects postgresql.conf reload.
Markus Bertheau
Modified Files:
--
pgsql/src/include/utils:
guc.h (r1.64 -> r1.65)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/utils/guc.h.diff?r1=1.64&r
Log Message:
---
Enable standard_conforming_strings to be turned on.
Kevin Grittner
Modified Files:
--
pgsql/doc/src/sgml:
config.sgml (r1.49 -> r1.50)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/config.sgml.diff?r1=1.49&r2=1.50)
pgs
Log Message:
---
Attached is the new patch. To summarize:
- new function justify_interval(interval)
- modified function justify_hours(interval)
- modified function justify_days(interval)
These functions are defined to meet the requirements as discussed in
this thread. Specifica
Log Message:
---
Done though the second is default so off in 8.2:
> * -Eventually enable escape_string_warning and standard_conforming_strings
Modified Files:
--
pgsql/doc:
TODO (r1.1787 -> r1.1788)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/TOD
Log Message:
---
Default to ON for 8.2, as announced in the release notes:
escape_string_warning = on
Modified Files:
--
pgsql/src/backend/utils/misc:
postgresql.conf.sample (r1.174 -> r1.175)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/b
Log Message:
---
SGML typo fix.
Modified Files:
--
pgsql/doc/src/sgml:
func.sgml (r1.310 -> r1.311)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/func.sgml.diff?r1=1.310&r2=1.311)
---(end of broadcast)--
[EMAIL PROTECTED] (Bruce Momjian) writes:
> Log Message:
> ---
> Default to ON for 8.2, as announced in the release notes:
> escape_string_warning = on
Please fix the ensuing buildfarm breakage.
regards, tom lane
---(end of broadcast)
[EMAIL PROTECTED] (Bruce Momjian) writes:
> Log Message:
> ---
> * Stephen Frost ([EMAIL PROTECTED]) wrote:
>> I've now tested this patch at home w/ 8.2HEAD and it seems to fix the
>> bug. I plan on testing it under 8.1.2 at work tommorow with
>> mod_auth_krb5, etc, and expect it'll work t
[EMAIL PROTECTED] (Bruce Momjian) writes:
> Log Message:
> ---
> Default to ON for 8.2, as announced in the release notes:
> escape_string_warning = on
> Modified Files:
> --
> pgsql/src/backend/utils/misc:
> postgresql.conf.sample (r1.174 -> r1.175)
>
Log Message:
---
'make clean' should NOT remove *~ files.
Modified Files:
--
pgsql/src/interfaces/ecpg/preproc:
Makefile (r1.119 -> r1.120)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/preproc/Makefile.diff?r1=1.119&r2=1.120)
-
Log Message:
---
Remove the stub support we had for UNION JOIN; per discussion, this is
not likely ever to be implemented seeing it's been removed from SQL2003.
This allows getting rid of the 'filter' version of yylex() that we had in
parser.c, which should save at least a few microseconds
Log Message:
---
Make all our flex and bison files use %option prefix or %name-prefix
(respectively) to rename yylex and related symbols. Some were doing
it this way already, while others used not-too-reliable sed hacks in
the Makefiles. It's all nice and consistent now.
Modified Files:
Tom Lane wrote:
> [EMAIL PROTECTED] (Bruce Momjian) writes:
> > Log Message:
> > ---
> > * Stephen Frost ([EMAIL PROTECTED]) wrote:
> >> I've now tested this patch at home w/ 8.2HEAD and it seems to fix the
> >> bug. I plan on testing it under 8.1.2 at work tommorow with
> >> mod_auth_krb5
Log Message:
---
Properly set "escape_string_warning" to default to true.
Modified Files:
--
pgsql/doc/src/sgml:
config.sgml (r1.50 -> r1.51)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/config.sgml.diff?r1=1.50&r2=1.51)
pgsql/src/back
Tom Lane wrote:
> [EMAIL PROTECTED] (Bruce Momjian) writes:
> > Log Message:
> > ---
> > Default to ON for 8.2, as announced in the release notes:
> > escape_string_warning = on
>
> > Modified Files:
> > --
> > pgsql/src/backend/utils/misc:
> > postgresql.conf.s
Log Message:
---
Back out comment update about sighup, original was accurate.
Modified Files:
--
pgsql/src/include/utils:
guc.h (r1.66 -> r1.67)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/utils/guc.h.diff?r1=1.66&r2=1.67)
---
Log Message:
---
Use SetConfigOption() to turn off "zero_damaged_pages" in autovacuum.
Modified Files:
--
pgsql/src/backend/postmaster:
autovacuum.c (r1.13 -> r1.14)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/postmaster/autovacuum.c.diff?
Bruce Momjian wrote:
Bruce, people would appreciate it if you made some effort to ensure
that commit messages describe the main purposes of the patch, rather
than being just the verbatim text of the last message in the thread.
The above log message is not merely overly verbose, but completely
us
OK.
---
Andrew Dunstan wrote:
> Bruce Momjian wrote:
>
> >>Bruce, people would appreciate it if you made some effort to ensure
> >>that commit messages describe the main purposes of the patch, rather
> >>than being just the
Andrew Dunstan <[EMAIL PROTECTED]> writes:
> One other thing: it's important that the first words in your commit
> mesage summarise the contents of the commit, because that's what gets
> put in the subject line of the committers email message.
One thing I've been a bit mystified by is the effect
29 matches
Mail list logo