aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Fix units in postgresql.conf.Bruce Momjian2002-08-27
|
* Add OS X link line example for external functions.Bruce Momjian2002-08-26
|
* Add discussion of pre-write pages to WAL.Bruce Momjian2002-08-26
|
* Add:Bruce Momjian2002-08-26
| | | | > partial page writes [wal]
* Add:Bruce Momjian2002-08-26
| | | | > * Add CORRESPONDING BY to UNION/INTERSECT/EXCEPT
* Add units to postgresql.conf file.Bruce Momjian2002-08-26
|
* Remove:Bruce Momjian2002-08-26
| | | | < o Add plsh server-side shell language (Peter E)
* *** empty log message ***Bruce Momjian2002-08-26
|
* Add to selfjoin DELETE todo.Bruce Momjian2002-08-26
|
* Add:Bruce Momjian2002-08-26
| | | | > * Allow DELETE to handle table aliases for self-joins [delete]
* Add delete selfjoin item.Bruce Momjian2002-08-26
|
* Add info on disabled triggers.Bruce Momjian2002-08-26
|
* Add:Bruce Momjian2002-08-26
| | | | > * Allow triggers to be disabled [trigger]
* Increase WIDTH_THRESHOLD from 256 to 1K. This addresses recent observationTom Lane2002-08-26
| | | | | | that ANALYZE would not gather any stats for a CHAR(255) column. I still think a width threshold is appropriate for the reasons mentioned in the code, but we can loosen it at least.
* Modify array operations to include array's element type OID in theTom Lane2002-08-26
| | | | | | | | | | array header, and to compute sizing and alignment of array elements the same way normal tuple access operations do --- viz, using the tupmacs.h macros att_addlength and att_align. This makes the world safe for arrays of cstrings or intervals, and should make it much easier to write array-type-polymorphic functions; as examples see the cleanups of array_out and contrib/array_iterator. By Joe Conway and Tom Lane.
* Add 'return' file.Bruce Momjian2002-08-26
|
* Add return tuple count item to TODO.Bruce Momjian2002-08-26
|
* Add:Bruce Momjian2002-08-26
| | | | > * Return proper effected tuple count from complex commands [return]
* Add anther sequential scan email.Bruce Momjian2002-08-26
|
* Add mention of 1 terrabyte databases.Bruce Momjian2002-08-26
|
* *** empty log message ***Bruce Momjian2002-08-26
|
* Add raw file discussion to performance TODO.detail.Bruce Momjian2002-08-26
|
* Done:Bruce Momjian2002-08-26
| | | | > * -Disallow TRUNCATE on tables that are involved in referential constraints
* Add to tablespaces discussion.Bruce Momjian2002-08-26
|
* Add to tablespaces file.Bruce Momjian2002-08-26
|
* Add Bob Devine's name to the optimizer README.Bruce Momjian2002-08-25
|
* Add file describing error message format.Bruce Momjian2002-08-25
|
* Add:Bruce Momjian2002-08-25
| | | | > * Make error messages more consistent [error]
* Clean up comments to be careful about the distinction between variable-Tom Lane2002-08-25
| | | | | | | | | | width types and varlena types, since with the introduction of CSTRING as a more-or-less-real type, these concepts aren't identical. I've tried to use varlena consistently to denote datatypes with typlen = -1, ie, they have a length word and are potentially TOASTable; while the term variable width covers both varlena and cstring (and, perhaps, someday other types with other rules for computing the actual width). No code changes in this commit except for renaming a couple macros.
* Update docs for 7.2.2 release info.Bruce Momjian2002-08-25
|
* Update Japanese FAQ, from Jun KuwamuraBruce Momjian2002-08-25
|
* The cstring datatype can now be copied, passed around, etc. The typlenTom Lane2002-08-24
| | | | | | | value '-2' is used to indicate a variable-width type whose width is computed as strlen(datum)+1. Everything that looks at typlen is updated except for array support, which Joe Conway is working on; at the moment it wouldn't work to try to create an array of cstring.
* Done:Bruce Momjian2002-08-24
| | | | > * -SELECT cash_out(2) crashes because of opaque
* Enhancements to how queries with bind values are stored internally and sent toBarry Lind2002-08-23
| | | | | | | | | | | | | | | | | | | the server. Previously we allocated a new String object for the entire final query we were sending to the database. If you had a big query, or especially if you had large bind values you ended up with essentially two copies in memory. This change will reuse the existing objects and therefore should take 1/2 the memory it does today for a given query. This restructuring will also allow in the future the ability to stream bytea data to the server instead of the current approach of pulling it all into memory. I also fixed a test that was failing on a 7.2 database. Also renamed some internal variables and some minor cleanup. Modified Files: jdbc/org/postgresql/core/QueryExecutor.java jdbc/org/postgresql/jdbc1/AbstractJdbc1Connection.java jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java jdbc/org/postgresql/jdbc2/AbstractJdbc2Statement.java jdbc/org/postgresql/test/jdbc2/DatabaseMetaDataTest.java
* Further cleanup around the edges of OPAQUE/pseudotype changes. CorrectTom Lane2002-08-23
| | | | | the declarations of some index access method support functions. Support SQL functions returning VOID.
* Adapt for SRF(Set Returning Function).Tatsuo Ishii2002-08-23
|
* Not sure how I fixed it the first time, but here's a fix for anotherBruce Momjian2002-08-23
| | | | | | instance in which the docs mention that 'NAMEDATALEN == 32". Neil Conway
* Add space.k>Bruce Momjian2002-08-23
|
* Add:Bruce Momjian2002-08-23
| | | | | > * Allow xlog directory location to be specified during initdb, perhaps > using symlinks
* Patch resolve ERROR problem for non-goog query_txt.Bruce Momjian2002-08-23
| | | | Teodor Sigaev
* This patch updates the CREATE OPERATOR sgml docs for the new defaultBruce Momjian2002-08-23
| | | | | | | settings of NAMEDATALEN. I looked through the docs for other references to NAMEDATALEN, but this is the only one I could find. Neil Conway
* Update Russian FAQ.Bruce Momjian2002-08-23
|
* Add:Bruce Momjian2002-08-23
| | | | > * Add GUC parameter to print queries that generate errors
* Very minor copy-editing.Tom Lane2002-08-23
|
* Add note that explains that \df omits functions it thinks are I/O functions.Tom Lane2002-08-23
|
* Update reference to value of NAMEDATALEN. Someone needs to troll theTom Lane2002-08-23
| | | | docs and find the other obsolete statements that no doubt lurk.
* Update contrib regression tests for OPAQUE datatype changes.Tom Lane2002-08-23
|
* Since the plpgsql test has been part of the standard regression testsTom Lane2002-08-22
| | | | for a good long while, I see no reason to maintain this original copy.
* Transpose info from src/pl/plpgsql/test/README into standard regression test ↵Tom Lane2002-08-22
| | | | file.
* Mark 7.2.2 as newest release.Bruce Momjian2002-08-22
|