- 18 Jul, 2005 11 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Tom Lane authored
by using LIKE...ESCAPE instead. Per suggestion by andrew@supernews.
-
Tom Lane authored
readable, and more like the other places in this file.
-
Bruce Momjian authored
Eugen Nedelcu
-
Tom Lane authored
is applied last, after other constraints such as name patterns. This is useful first because the pg_foo_is_visible() functions are relatively expensive, and second because it minimizes the prospects for race conditions. The change is fragile though since it makes unwarranted assumptions about planner behavior, ie, that WHERE clauses will be executed in the original order if there's not reason to change it. This should fix ... or at least hide ... an intermittent failure in the prepared_xacts regression test, while we think about what else to do.
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
checked that the pointer is actually word-aligned. Casting a non-aligned pointer to int32* is technically illegal per the C spec, and some recent versions of gcc actually generate bad code for the memset() when given such a pointer. Per report from Andrew Morrow.
-
- 17 Jul, 2005 1 commit
-
-
Tom Lane authored
port number, and use a default value for it that is dependent on the configuration-time DEF_PGPORT. Should make the world safe for running parallel 'make check' in different branches. Back-patch as far as 7.4 so that this actually is useful.
-
- 15 Jul, 2005 4 commits
-
-
Tom Lane authored
output targetlist of the Unique or HashAgg plan. This code was OK when written, but subsequent changes to use "physical tlists" where possible had broken it: given an input subplan that has extra variables added to avoid a projection step, it would copy those extra variables into the upper tlist, which is pointless since a projection has to happen anyway.
-
Bruce Momjian authored
-
Tom Lane authored
I have seen this case in CVS tip due to new "physical tlist" optimization for subqueries. I believe it probably can't happen in existing releases, but the check is not going to hurt anything, so backpatch to 8.0 just in case.
-
Tom Lane authored
cases: we can't just consider whether the subquery's output is unique on its own terms, we have to check whether the set of output columns we are going to use will be unique. Per complaint from Luca Pireddu and test case from Michael Fuhr.
-
- 14 Jul, 2005 10 commits
-
-
Tom Lane authored
requiring superuserness always, allow an owner to reassign ownership to any role he is a member of, if that role would have the right to create a similar object. These three requirements essentially state that the would-be alterer has enough privilege to DROP the existing object and then re-CREATE it as the new role; so we might as well let him do it in one step. The ALTER TABLESPACE case is a bit squirrely, but the whole concept of non-superuser tablespace owners is pretty dubious anyway. Stephen Frost, code review by Tom Lane.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Neil Conway authored
rather than the deprecated "WITH (isStrict)" syntax. Patch from Ilia Kantor, minor editorializing by Neil Conway.
-
Bruce Momjian authored
-
Bruce Momjian authored
Centralize malloc into function.
-
Neil Conway authored
is used as if it were the latest (and/or still valid) SQL standard. SQL:2003 is used in its place. Patch from Simon Riggs.
-
Tom Lane authored
few loose ends to be dealt with, but it seems to work. Alvaro Herrera, based on the contrib code by Matthew O'Connor.
-
- 13 Jul, 2005 9 commits
-
-
Tom Lane authored
-
Tom Lane authored
hack.
-
Tom Lane authored
hacking of SHLIB_LINK for HPUX.
-
Bruce Momjian authored
-
Tom Lane authored
freeing all transient state of the PGconn object.
-
Bruce Momjian authored
section of a function.
-
Bruce Momjian authored
treated as regex groups.
-
Bruce Momjian authored
I wrote: > So either we code up some intelligence to put the "C" in the right > position or we have to pass down "A B" and "D" separately from the > main makefile. The following patch might just do the former. Please try it out. Peter E.
-
Neil Conway authored
various editorialization from Neil Conway.
-
- 12 Jul, 2005 5 commits
-
-
Tom Lane authored
gcc and for HP's ld on HPUX. There may be better ways to do this, but this seems to work for me...
-
Tom Lane authored
Reported by Michael Fuhr, fixed by Andrew Dunstan.
-
Tom Lane authored
compiler warnings. Marko Kreen and Kris Jurka.
-
Bruce Momjian authored
Blank line adjustments.
-
Bruce Momjian authored
-