- 25 Oct, 2004 4 commits
-
-
Tom Lane authored
-
Tom Lane authored
writing 'foo()' rather than 'foo(void)'.
-
Neil Conway authored
returning a NULL pointer (some callers remembered to check the return value, but some did not -- it is safer to just bail out). Also, cleanup pgstat.c to use elog(ERROR) rather than elog(LOG) followed by exit().
-
PostgreSQL Daemon authored
make sure we tag configure.in as beta4 as well ...
-
- 24 Oct, 2004 12 commits
-
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
Andrew Dunstan
-
Tom Lane authored
Andrew Dunstan
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
a routine part of release prep.
-
Dennis Bjorklund authored
-
Tom Lane authored
compiler emits any warnings, the test program had better be 100% correct, not only 90% correct. The recent addition of -Wold-style-definition broke thread-safety detection on every platform that has that switch, because the test program used an old-style definition.
-
- 23 Oct, 2004 6 commits
-
-
Dennis Bjorklund authored
-
Dennis Bjorklund authored
-
Dennis Bjorklund authored
-
Dennis Bjorklund authored
-
Dennis Bjorklund authored
-
Tom Lane authored
-
- 22 Oct, 2004 15 commits
-
-
Tom Lane authored
Magnus Hagander
-
Tom Lane authored
Magnus Hagander
-
Tom Lane authored
examinable by non-superusers, and use it to protect the recently-added GUC variables for data directory and config files. For now I have only flagged those variables that could be used to deduce something about the server's filesystem layout, but possibly we should also mark vars related to logging settings and other admin-only information?
-
Tom Lane authored
at the top level of the column's old default expression before adding an implicit coercion to the new column type. This seems to satisfy the principle of least surprise, as per discussion of bug #1290.
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-
Dennis Bjorklund authored
-
Dennis Bjorklund authored
-
Neil Conway authored
-
Dennis Bjorklund authored
-
Dennis Bjorklund authored
-
Dennis Bjorklund authored
-
Neil Conway authored
well be declared to return "void" to save callers the trouble of checking for errors.
-
Tom Lane authored
-
Tom Lane authored
owned by postgres, doing "pg_ctl start" as root could allow a privilege escalation attack, as pointed out by iDEFENSE. Of course the postmaster would fail, but we ought to fail a little sooner to protect sysadmins unfamiliar with Postgres. The chosen fix is to disable root use of pg_ctl in all cases, just to be confident there are no other holes.
-
- 21 Oct, 2004 3 commits
-
-
Tom Lane authored
-
Tom Lane authored
NO ACTION check is deferrable. This seems to be a closer approximation to what the SQL spec says than what we were doing before, and it prevents some anomalous behaviors that are possible now that triggers can fire during the execution of PL functions. Stephan Szabo.
-
Tom Lane authored
any possible problems from child programs executed by the client app. Per suggestion from Elliot Lee of Red Hat.
-