- 12 Nov, 2003 6 commits
-
-
Bruce Momjian authored
website for install as service, because it's a quite a long and complex process. Christopher Kings-Lynne
-
Bruce Momjian authored
> * Ignore temporary tables from other session when processing inheritance
-
Bruce Momjian authored
RESTRICT is not deferrable to the create table reference page. Stephan Szabo
-
Bruce Momjian authored
-
Bruce Momjian authored
> * Add free-behind capability for large sequential scans (fadvise)
-
Bruce Momjian authored
-
- 11 Nov, 2003 5 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
- is not initialized to 1 (at least in the WIN_32 code I started with!) Claudio Natoli
-
- 10 Nov, 2003 7 commits
-
-
Bruce Momjian authored
Other cleanups as discussed.
-
Bruce Momjian authored
This is his original version with a binary rmdir() we might need in the future. I will commit an update version with cleanups shortly.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Michael Meskes authored
-
Bruce Momjian authored
-
- 09 Nov, 2003 6 commits
-
-
Tom Lane authored
Remove the 'strategy map' code, which was a large amount of mechanism that no longer had any use except reverse-mapping from procedure OID to strategy number. Passing the strategy number to the index AM in the first place is simpler and faster. This is a preliminary step in planned support for cross-datatype index operations. I'm committing it now since the ScanKeyEntryInitialize() API change touches quite a lot of files, and I want to commit those changes before the tree drifts under me.
-
Bruce Momjian authored
> * Have psql '\i ~/<tab><tab>' actually load files it displays from home dir
-
Bruce Momjian authored
instructions were way out of date and incorrect. Installing Postgres from Cygwin is easier these days than the FAQ would imply. This patch already includes Andrew's previous patch. Christopher Kings-Lynne
-
Bruce Momjian authored
> * Have psql \dn show only visible schemas using current_schemas()
-
Bruce Momjian authored
-
Bruce Momjian authored
> * Use more reliable method for CREATE DATABASE to get a consistent copy of db >
-
- 08 Nov, 2003 7 commits
-
-
Bruce Momjian authored
RENAME TO option.
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
-
Michael Meskes authored
-
Tom Lane authored
-
Peter Eisentraut authored
patch by Kris Jurka
-
- 07 Nov, 2003 4 commits
-
-
Tom Lane authored
they do not prevent the postmaster from deleting the shmem segment during a post-backend-crash restart cycle. Per recent discussion.
-
Tom Lane authored
else it cannot be used to handle failures detected during WAL replay. Fortunately this flag isn't actually enforced yet, but get it right.
-
Bruce Momjian authored
-
Bruce Momjian authored
> * Allow CREATE TABLE foo (f1 INT CHECK (f1 > 0) CHECK (f1 < 10)) to work > by searching for non-conflicting constraint names, and prefix with table name
-
- 06 Nov, 2003 3 commits
-
-
Tom Lane authored
-
Peter Eisentraut authored
like the next higher one.
-
Peter Eisentraut authored
-
- 05 Nov, 2003 2 commits
-
-
Tom Lane authored
regression=# select 1 from tenk1 ta cross join tenk1 tb for update; ERROR: no relation entry for relid 3 7.3 said "SELECT FOR UPDATE cannot be applied to a join", which was better but still wrong, considering that 7.2 took the query just fine. Fix by making transformForUpdate() ignore JOIN and other special RTE types, rather than trying to mark them FOR UPDATE. The actual error message now only appears if you explicitly name the join in FOR UPDATE.
-
Dave Cramer authored
-