- 04 Oct, 2003 1 commit
-
-
Bruce Momjian authored
pointed out by Peter.
-
- 02 Oct, 2003 1 commit
-
-
Peter Eisentraut authored
developed on -hackers.
-
- 29 Sep, 2003 2 commits
-
-
Bruce Momjian authored
this query?" logic in postgres.c Also, make it print "duration:" like log_duration. Neil Conway
-
Peter Eisentraut authored
-
- 27 Sep, 2003 1 commit
-
-
Peter Eisentraut authored
every string, especially if some of the output should be fixed-format machine-readable. This needs to be more carefully sorted out. Also, make the help message generated by --help-config -h be more similar in style to the others.
-
- 25 Sep, 2003 1 commit
-
-
Peter Eisentraut authored
terms, add some clarifications, fix some untranslatable attempts at dynamic message building.
-
- 24 Sep, 2003 1 commit
-
-
Tom Lane authored
now able to cope with assigning new relfilenode values to nailed-in-cache indexes, so they can be reindexed using the fully crash-safe method. This leaves only shared system indexes as special cases. Remove the 'index deactivation' code, since it provides no useful protection in the shared- index case. Require reindexing of shared indexes to be done in standalone mode, but remove other restrictions on REINDEX. -P (IgnoreSystemIndexes) now prevents using indexes for lookups, but does not disable index updates. It is therefore safe to allow from PGOPTIONS. Upshot: reindexing system catalogs can be done without a standalone backend for all cases except shared catalogs.
-
- 14 Sep, 2003 1 commit
-
-
Tom Lane authored
not before, to avoid duplication of effort.
-
- 02 Sep, 2003 1 commit
-
-
Tom Lane authored
config file if it exists. This was already discussed as being a good idea, and now seems the cleanest way to deal with initdb-time failures on machines with small SHMMAX. (The submitted patches instead modified initdb.sh to pass the correct sizing parameters, but that would still leave standalone backends prone to failure later. An admin who needs to use a standalone backend has enough trouble already, he shouldn't have to manually configure its shmem settings...)
-
- 26 Aug, 2003 1 commit
-
-
Tom Lane authored
max_connections at initdb time. Get rid of DEF_NBUFFERS and DEF_MAXBACKENDS macros, which aren't doing anything useful anymore, and put more likely defaults into postgresql.conf.sample.
-
- 13 Aug, 2003 1 commit
-
-
Tom Lane authored
just before CommitTransactionCommand(). This is a more sensible place to put it since commit discards a lot of contexts, and we'd not find out about stomps affecting only transaction-local contexts.
-
- 12 Aug, 2003 2 commits
- 06 Aug, 2003 1 commit
-
-
Tom Lane authored
macros in some platforms' sys/socket.h.
-
- 04 Aug, 2003 3 commits
-
-
Tom Lane authored
and seems to have too few users to justify maintaining.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 29 Jul, 2003 1 commit
-
-
Tom Lane authored
heuristic determination of day vs month in date/time input. Add the ability to specify that input is interpreted as yy-mm-dd order (which formerly worked, but only for yy greater than 31). DateStyle's input component now has the preferred spellings DMY, MDY, or YMD; the older keywords European and US are now aliases for the first two of these. Per recent discussions on pgsql-general.
-
- 27 Jul, 2003 1 commit
-
-
Tom Lane authored
-
- 22 Jul, 2003 1 commit
-
-
Tom Lane authored
Along the way, fix some logic problems in pgstat_initstats, notably the bogus assumption that malloc returns zeroed memory.
-
- 09 Jul, 2003 1 commit
-
-
Bruce Momjian authored
or increased only by super-users. This fixes problems caused by making certain variables SUSET for security reasons.
-
- 04 Jul, 2003 1 commit
-
-
Tom Lane authored
without needing a running backend. Reorder postgresql.conf.sample to match new layout of runtime.sgml. This commit re-adds work lost in Wednesday's crash.
-
- 20 Jun, 2003 1 commit
-
-
Tom Lane authored
a ReadyForQuery (Z message) immediately and then another one after the Sync message arrives. Suppress the first one to make it work per spec.
-
- 11 Jun, 2003 1 commit
-
-
Bruce Momjian authored
Christopher Kings-Lynne
-
- 27 May, 2003 1 commit
-
-
Bruce Momjian authored
docs that CLIENT/LOG_MIN_MESSAGES now controls debug_* output location. Doc changes included.
-
- 14 May, 2003 2 commits
- 12 May, 2003 1 commit
-
-
Tom Lane authored
efficient insertion of large bytea values through the BIND interface.
-
- 09 May, 2003 2 commits
-
-
Tom Lane authored
messages. Binary I/O is now up and working, but only for a small set of datatypes (integers, text, bytea).
-
Bruce Momjian authored
-
- 08 May, 2003 2 commits
-
-
Tom Lane authored
handle multiple 'formats' for data I/O. Restructure CommandDest and DestReceiver stuff one more time (it's finally starting to look a bit clean though). Code now matches latest 3.0 protocol document as far as message formats go --- but there is no support for binary I/O yet.
-
Bruce Momjian authored
Allow backends to attached to specified shared memory address.
-
- 06 May, 2003 6 commits
-
-
Bruce Momjian authored
fork/exec.
-
Tom Lane authored
of Describe on a prepared statement. This was in the original 3.0 protocol proposal, but I took it out for reasons that seemed good at the time. Put it back per yesterday's pghackers discussion.
-
Tom Lane authored
DestReceiver pointers instead of just CommandDest values. The DestReceiver is made at the point where the destination is selected, rather than deep inside the executor. This cleans up the original kluge implementation of tstoreReceiver.c, and makes it easy to support retrieving results from utility statements inside portals. Thus, you can now do fun things like Bind and Execute a FETCH or EXPLAIN command, and it'll all work as expected (e.g., you can Describe the portal, or use Execute's count parameter to suspend the output partway through). Implementation involves stuffing the utility command's output into a Tuplestore, which would be kind of annoying for huge output sets, but should be quite acceptable for typical uses of utility commands.
-
Bruce Momjian authored
-
Bruce Momjian authored
Reorder non-default variable loading until PGDATA is defined.
-
Tom Lane authored
the column by table OID and column number, if it's a simple column reference. Along the way, get rid of reskey/reskeyop fields in Resdoms. Turns out that representation was not convenient for either the planner or the executor; we can make the planner deliver exactly what the executor wants with no more effort. initdb forced due to change in stored rule representation.
-
- 05 May, 2003 1 commit
-
-
Tom Lane authored
Only lightly tested as yet, since libpq doesn't know anything about 'em.
-
- 03 May, 2003 1 commit
-
-
Bruce Momjian authored
-