- 07 Jul, 2004 2 commits
-
-
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 7 commits
-
-
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.
-
Joe Conway authored
plperlNG. Review and minor cleanup/improvements by Joe Conway. Summary of new functionality: - Shared data space and namespace. There is a new global variable %_SHARED that functions can use to store and save data between invocations of a function, or between different functions. Also, all trusted plperl function now share a common Safe container (this is an optimization, also), which they can use for storing non-lexical variables, functions, etc. - Triggers are now supported - Records can now be returned (as a hash reference) - Sets of records can now be returned (as a reference to an array of hash references). - New function spi_exec_query() provided for performing db functions or getting data from db. - Optimization for counting hash keys (Abhijit Menon-Sen) - Allow return of 'record' and 'setof record'
-
Tom Lane authored
problems with starting subtransactions inside already-failed transactions. Clean up some comments.
-
Michael Meskes authored
-
Joe Conway authored
an empty input string causes an empty output string to be returned, instead of throwing an ERROR -- per complaint from Aaron Hillegass, and consistent with double metaphone. Fix examples in README.soundex pointed out by James Robinson.
-
Tom Lane authored
-
Tom Lane authored
performance front, but with feature freeze upon us I think it's time to drive a stake in the ground and say that this will be in 7.5. Alvaro Herrera, with some help from Tom Lane.
-
- 30 Jun, 2004 2 commits
-
-
Tom Lane authored
-
Michael Meskes authored
Note that this still has some bugs. The functionality is there though, it's just a matter of fixing the bugs now. Cleaned up error handling in preprocessor.
-
- 29 Jun, 2004 2 commits
-
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-
- 28 Jun, 2004 4 commits
-
-
Teodor Sigaev authored
2 Rework support for html tags in parser 3 add HighlightAll to headline function for generating highlighted whole text with saved html tags
-
Michael Meskes authored
-
Tom Lane authored
-
Tom Lane authored
only because 14627 still contained the same node that BitWithoutLength had just produced. Make it more transparent. Also adjust ConstCharacter to be coded the same way for consistency.
-
- 27 Jun, 2004 3 commits
-
-
Tom Lane authored
-
Michael Meskes authored
- Variables that are out of scope, were not removed all the time. - Make a varchar NULL set everything to 0 when not using indicators. - Synced parser.
-
Dennis Bjorklund authored
-
- 26 Jun, 2004 1 commit
-
-
Tom Lane authored
specified in just one place and adhered to exactly, rather than just more or less. A side effect is to increase PGSTAT_ACTIVITY_SIZE (maximum reported query length) from 256 to nearly 1000.
-