- 11 Jul, 2004 8 commits
-
-
Bruce Momjian authored
> * Allow moving system tables to other tablespaces, where possible
-
Bruce Momjian authored
-
Bruce Momjian authored
> * Allow changing of already-created database and schema tablespaces
-
Bruce Momjian authored
-
Bruce Momjian authored
> * Add an option to sync() before fsync()'ing checkpoint files
-
Bruce Momjian authored
< > * Use a phantom command counter for nested subtransactions to reduce > tuple overhead
-
Bruce Momjian authored
Add new postgresql.conf variables to point to data, pg_hba.conf, and pg_ident.conf files. Needs more documentation.
-
Bruce Momjian authored
> * Add include functionality to postgresql.conf >
-
- 10 Jul, 2004 6 commits
-
-
Tom Lane authored
since the person or script starting the postmaster has to be trusted anyway.
-
Tom Lane authored
accurate matching of our time zone to the system's zone. This method is able to distinguish Antarctica/Casey from Australia/Perth, as in Chris K-L's recent example; and it is not materially slower than before, because the extra checks generally don't get done against very many time zones. It seems possible that with this test we'd be able to correctly identify Windows timezones without looking at the timezone name, but I do not have the ability to try it.
-
Tom Lane authored
Also a quick but half-baked attempt to make trim_trailing_separator do the right thing with path consisting only of '/' --- still needs work for Windows I think.
-
Tom Lane authored
This is required by SQL spec to avoid failures in cases like SELECT sum(win)/sum(lose) FROM ... GROUP BY ... HAVING sum(lose) > 0; AFAICT we have gotten this wrong since day one. Kudos to Holger Jakobs for being the first to notice.
-
Bruce Momjian authored
definitions more frequently.
-
Bruce Momjian authored
OS thread tests fail.
-
- 07 Jul, 2004 6 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
< The most recent version of this document can be viewed at < the PostgreSQL web site, http://www.PostgreSQL.org. > The most recent version of this document can be viewed at the PostgreSQL web site, http://www.PostgreSQL.org.
-
Bruce Momjian authored
> #A dash (-) marks changes that will appear in the upcoming 7.5 release.#
-
Bruce Momjian authored
-
Bruce Momjian authored
> \#A dash (-) marks changes that will appear in the upcoming 7.5 release.#
-
Bruce Momjian authored
-
- 06 Jul, 2004 5 commits
-
-
Bruce Momjian authored
< * Add replication of distributed databases < o Automatic failover < o Load balancing < o Master/slave replication < o Multi-master replication < o Partition data across servers < o Queries across databases or servers (two-phase commit) < o Allow replication over unreliable or non-persistent links 55a48,55 > * Improve replication solutions > o Automatic failover > o Load balancing > o Master/slave replication > o Multi-master replication > o Partition data across servers > o Queries across databases or servers (two-phase commit) > o Allow replication over unreliable or non-persistent links
-
Bruce Momjian authored
-
Bruce Momjian authored
> A dash (-) marks changes that will appear in the upcoming 7.5 release. > > Bracketed items "[]" have more detail. 9,12d12 < < A dash (-) marks changes that will appear in the upcoming 7.5 release. < < Bracketed items "[]" have more detail.
-
Tom Lane authored
et al.
-
Bruce Momjian authored
> * -Fix upper()/lower() to work for multibyte encodings
-
- 05 Jul, 2004 6 commits
-
-
Tom Lane authored
-
Tom Lane authored
patch. Thomas Hallgren
-
Michael Meskes authored
-
Michael Meskes authored
- Added special handling of descriptor header information. - Some code cleanup.
-
Bruce Momjian authored
Christopher Kings-Lynne
-
Bruce Momjian authored
Andrew Dunstan
-
- 04 Jul, 2004 3 commits
-
-
Tom Lane authored
-
Michael Meskes authored
-
Tom Lane authored
FOR loops are giving weird syntax errors. Restructure parsing of FOR loops so that the integer-loop-vs-query-loop decision is driven off the presence of '..' between IN and LOOP, rather than the presence of a matching record/row variable name. Hopefully this will make the behavior a bit more transparent.
-
- 03 Jul, 2004 1 commit
-
-
Tom Lane authored
-
- 02 Jul, 2004 4 commits
-
-
Tom Lane authored
better SQL compliance in this area, per recent discussion. Mark related operators as commutators where possible. (The system doesn't actually care about commutator marking for operators not returning boolean, at the moment, but this seems forward-thinking and besides it made it easier to verify that we hadn't missed any.) Also, remove interval-minus-time and interval-minus-timetz operators. I'm not sure how these got in, but they are nonstandard and had very obviously broken behavior. (minus is not commutative in anyone's book.) I doubt anyone had ever used 'em, because we'd surely have gotten a bug report about it if so.
-
Joe Conway authored
From an idea of Bruce, the attached patch implements the function pg_tablespace_databases(oid) RETURNS SETOF oid which delivers as set of database oids having objects in the selected tablespace, enabling an admin to examine only the databases affecting the tablespace for objects instead of scanning all of them. initdb forced
-
Peter Eisentraut authored
-
Joe Conway authored
It fixes a bug where some transactions could be dropped when writing mirrored SQL statements to files. -- Steven Singer
-
- 01 Jul, 2004 1 commit
-
-
Tom Lane authored
for cleaning up. It seems possible that the memory contexts SPI_finish would try to touch are already gone; and there's no need for SPI itself to delete them, since the containing contexts will surely be going away anyway at transaction end.
-