- Apr 27, 2008
-
-
Alvaro Herrera authored
them.
-
- Mar 26, 2008
-
-
Tom Lane authored
pg_dump --ignore-version comments into pg_dumpall and pg_restore pages.
-
Bruce Momjian authored
-
- Jun 07, 2007
-
-
Tom Lane authored
Christian Rossow
-
- May 11, 2007
-
-
Tom Lane authored
and views (but not system catalogs, nor sequences or toast tables). Get rid of the hardwired convention that a type's array type is named exactly "_type", instead using a new column pg_type.typarray to provide the linkage. (It still will be named "_type", though, except in odd corner cases such as maximum-length type names.) Along the way, make tracking of owner and schema dependencies for types more uniform: a type directly created by the user has these dependencies, while a table rowtype or auto-generated array type does not have them, but depends on its parent object instead. David Fetter, Andrew Dunstan, Tom Lane
-
- Apr 06, 2007
-
-
Tom Lane authored
types.
-
- Mar 02, 2007
-
-
Tom Lane authored
-
- Feb 20, 2007
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- Feb 01, 2007
-
-
Bruce Momjian authored
appropriate.
-
- Jan 31, 2007
-
-
Bruce Momjian authored
Standard English uses "may", "can", and "might" in different ways: may - permission, "You may borrow my rake." can - ability, "I can lift that log." might - possibility, "It might rain today." Unfortunately, in conversational English, their use is often mixed, as in, "You may use this variable to do X", when in fact, "can" is a better choice. Similarly, "It may crash" is better stated, "It might crash". Also update two error messages mentioned in the documenation to match.
-
Bruce Momjian authored
-
- Jan 30, 2007
-
-
Bruce Momjian authored
more, and standard_conforming_strings less, because in the future non-E strings will not treat backslashes specially. Also use E'' strings where backslashes are used in examples. (The existing examples would have drawn warnings.) Backpatch to 8.2.X.
-
- Sep 29, 2006
-
-
Tom Lane authored
present; intervening positions are filled with nulls. This behavior is required by SQL99 but was not implementable before 8.2 due to lack of support for nulls in arrays. I have only made it work for the one-dimensional case, which is all that SQL99 requires. It seems quite complex to get it right in higher dimensions, and since we never allowed extension at all in higher dimensions, I think that must count as a future feature addition not a bug fix.
-
- May 10, 2006
-
-
Bruce Momjian authored
-
- May 09, 2006
-
-
Bruce Momjian authored
-
- Apr 23, 2006
-
-
Bruce Momjian authored
compatibility for release 7.2 and earlier. I have not altered any mentions of release 7.3 or later. The release notes were not modified, so the changes are still documented, just not in the main docs.
-
- Nov 19, 2005
-
-
Tom Lane authored
the array (for array_push) or higher-dimensional array (for array_cat) rather than decrementing it as before. This avoids generating lower bounds other than one for any array operation within the SQL spec. Per recent discussion. Interestingly, this seems to have been the original behavior, because while updating the docs I noticed that a large fraction of relevant examples were *wrong* for the old behavior and are now right. Is it worth correcting this in the back-branch docs?
-
- Nov 17, 2005
-
-
Tom Lane authored
functionality, but I still need to make another pass looking at places that incidentally use arrays (such as ACL manipulation) to make sure they are null-safe. Contrib needs work too. I have not changed the behaviors that are still under discussion about array comparison and what to do with lower bounds.
-
- Nov 05, 2005
-
-
Peter Eisentraut authored
-
- Nov 04, 2005
-
-
Tom Lane authored
necessary, and be careful to refer to the right version where it is useful to do so. This partially reverts an ill-considered search and replace from a few months ago.
-
- Jul 14, 2005
-
-
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.
-
- Feb 06, 2005
-
-
Tom Lane authored
-
- Dec 23, 2004
-
-
Tom Lane authored
-
- Dec 13, 2004
-
-
Peter Eisentraut authored
-
- Nov 27, 2004
-
-
Peter Eisentraut authored
by Troels Arvin, Simon Riggs, Elein Mustain Make spelling of SQL standard names uniform.
-
- Nov 15, 2004
-
-
Neil Conway authored
output.
-
- Aug 08, 2004
-
-
Joe Conway authored
-
Joe Conway authored
was previously allowed in odd places with odd results now causes an ERROR. Also changed behavior with respect to whitespace -- trailing whitespace is now ignored as well as leading whitespace (which has always been ignored). Documentation updated to reflect change in whitespace handling. Also some refactoring to what I believe is a more sensible order of several paragraphs.
-
- Aug 05, 2004
-
-
Joe Conway authored
subarrays of a given dimension have the same number of elements/subarrays. Also repair a longstanding undocumented (as far as I can see) ability to explicitly set array bounds in the array literal syntax. It now can deal properly with negative array indicies. Modify array_out so that arrays with non-standard lower bounds (i.e. not 1) are output with the expicit dimension syntax. This fixes a longstanding issue whereby arrays with non-default lower bounds had them changed to default after a dump/reload cycle. Modify regression tests and docs to suit, and add some minimal documentation regarding the explicit dimension syntax.
-
- Jun 07, 2004
-
-
Tom Lane authored
-
- Nov 29, 2003
-
-
PostgreSQL Daemon authored
$Header: -> $PostgreSQL Changes ...
-
- Nov 04, 2003
-
-
Peter Eisentraut authored
-
- Nov 01, 2003
-
-
Peter Eisentraut authored
-
- Aug 31, 2003
-
-
Peter Eisentraut authored
-
- Aug 19, 2003
-
-
Tom Lane authored
-
- Aug 10, 2003
-
-
Tom Lane authored
This is Joe Conway's patch of 7-Aug plus further editorializing of my own.
-
- Jun 27, 2003
-
-
Tom Lane authored
comparison functions), replacing the highly bogus bitwise array_eq. Create a btree index opclass for ANYARRAY --- it is now possible to create indexes on array columns. Arrange to cache the results of catalog lookups across multiple array operations, instead of repeating the lookups on every call. Add string_to_array and array_to_string functions. Remove singleton_array, array_accum, array_assign, and array_subscript functions, since these were for proof-of-concept and not intended to become supported functions. Minor adjustments to behavior in some corner cases with empty or zero-dimensional arrays. Joe Conway (with some editorializing by Tom Lane).
-
- Jun 25, 2003
-
-
Bruce Momjian authored
Joe Conway
-
Bruce Momjian authored
Joe Conway
-