Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Flush output streams before calling pg_dump subprocess. | Peter Eisentraut | 2002-08-27 |
| | |||
* | Add: | Bruce Momjian | 2002-08-27 |
| | | | | > o Add SET SCHEMA | ||
* | Disable use of -c and -a together in pg_dump; they don't make sense together. | Bruce Momjian | 2002-08-27 |
| | |||
* | Bring comments back in sync with code. | Tom Lane | 2002-08-27 |
| | |||
* | Throw error on pg_atoi(''), regression adjustments. | Bruce Momjian | 2002-08-27 |
| | |||
* | Enable locale, so case conversion (identifier processing) and number | Peter Eisentraut | 2002-08-27 |
| | | | | | | formatting (\timing) works correctly. Change "Total time" to "Time" since there is nothing that "total" refers to. Remove non-multibyte code. | ||
* | Reimplement pg_dumpall in C. Currently no change in functionality, | Peter Eisentraut | 2002-08-27 |
| | | | | except that it's more robust, reconnects less often, and is NLS'ed. | ||
* | Add '+' mention in \? help. More clean of \? to do. | Bruce Momjian | 2002-08-27 |
| | |||
* | Make change for pg_locks table. | Bruce Momjian | 2002-08-27 |
| | |||
* | The attached patch implements the password packet length sanity check | Bruce Momjian | 2002-08-27 |
| | | | | | | (using an elog(LOG) ), as well as includes a few more comment fixes. Neil Conway | ||
* | Add: | Bruce Momjian | 2002-08-27 |
| | | | | > * Allow free space map to be auto-sized or warn when it is too small | ||
* | Add error code emails. | Bruce Momjian | 2002-08-27 |
| | |||
* | Add most of Neil Conway's cleanups. | Bruce Momjian | 2002-08-27 |
| | |||
* | More connection timeout cleanups. | Bruce Momjian | 2002-08-27 |
| | |||
* | Cleanup of libpq connection timeout code. | Bruce Momjian | 2002-08-27 |
| | |||
* | Add: | Bruce Momjian | 2002-08-27 |
| | | | | | > * Allow REINDEX to rebuild all indexes, remove /contrib/reindex > o Allow CLUSTER to cluster all tables, remove clusterdb | ||
* | Add fsm sizes. | Bruce Momjian | 2002-08-27 |
| | |||
* | PREPARE/EXECUTE statements. Patch by Neil Conway, some kibitzing | Tom Lane | 2002-08-27 |
| | | | | from Tom Lane. | ||
* | Done: | Bruce Momjian | 2002-08-27 |
| | | | | > o -Cluster all tables at once using pg_index.indisclustered set during | ||
* | Add to mmap discussion. | Bruce Momjian | 2002-08-27 |
| | |||
* | This patch updates the lock listing code to use Joe Conway's new | Bruce Momjian | 2002-08-27 |
| | | | | | | | | anonymous return type SRF code. It gets rid of the superflous 'pg_locks_result' that Bruce/Tom had commented on. Otherwise, no changes in functionality. Neil Conway | ||
* | This is a 2 line patch to src/interfaces/perl5/GNUMakefile that fixes | Bruce Momjian | 2002-08-27 |
| | | | | | | | | | the 'override CPPFLAGS' to include the source directory during compile, and makes the install target look in the proper place for the man page. Changes are only required when building outside the source directory. J. R. Nield | ||
* | This patches replaces a few more usages of strcpy() and sprintf() when | Bruce Momjian | 2002-08-27 |
| | | | | | | | | copying into a fixed-size buffer (in this case, a buffer of NAMEDATALEN bytes). AFAICT nothing to worry about here, but worth fixing anyway... Neil Conway | ||
* | Cleanup of SGML | Bruce Momjian | 2002-08-27 |
| | |||
* | I attach a little patch to make CLUSTER set and reset the indisclustered | Bruce Momjian | 2002-08-27 |
| | | | | | | | | | | | | | | | | | bit on the indexes. I also attach clusterdb and clusterdb.sgml; both of them are blatant rips of vacuumdb and vacuumdb.sgml, but get the job done. Please review them, as I'm probably making a lot of mistakes with SGML and I can't compile it here. vacuumdb itself is not very comfortable to use when the databases have passwords, because it has to connect once for each table (I can probably make it connect only once for each database; should I?). Because of this I added a mention of PGPASSWORDFILE in the documentation, but I don't know if that is the correct place for that. Alvaro Herrera | ||
* | Add to skip list in check_guc | Bruce Momjian | 2002-08-27 |
| | |||
* | Comment cleanup. | Bruce Momjian | 2002-08-27 |
| | |||
* | Script cleanups. | Bruce Momjian | 2002-08-27 |
| | |||
* | Clean up script. | Bruce Momjian | 2002-08-27 |
| | |||
* | Add check_guc utility to compare guc.c and postgresql.conf.sample. | Bruce Momjian | 2002-08-27 |
| | |||
* | Fix units in postgresql.conf. | Bruce Momjian | 2002-08-27 |
| | |||
* | Add OS X link line example for external functions. | Bruce Momjian | 2002-08-26 |
| | |||
* | Add discussion of pre-write pages to WAL. | Bruce Momjian | 2002-08-26 |
| | |||
* | Add: | Bruce Momjian | 2002-08-26 |
| | | | | > partial page writes [wal] | ||
* | Add: | Bruce Momjian | 2002-08-26 |
| | | | | > * Add CORRESPONDING BY to UNION/INTERSECT/EXCEPT | ||
* | Add units to postgresql.conf file. | Bruce Momjian | 2002-08-26 |
| | |||
* | Remove: | Bruce Momjian | 2002-08-26 |
| | | | | < o Add plsh server-side shell language (Peter E) | ||
* | *** empty log message *** | Bruce Momjian | 2002-08-26 |
| | |||
* | Add to selfjoin DELETE todo. | Bruce Momjian | 2002-08-26 |
| | |||
* | Add: | Bruce Momjian | 2002-08-26 |
| | | | | > * Allow DELETE to handle table aliases for self-joins [delete] | ||
* | Add delete selfjoin item. | Bruce Momjian | 2002-08-26 |
| | |||
* | Add info on disabled triggers. | Bruce Momjian | 2002-08-26 |
| | |||
* | Add: | Bruce Momjian | 2002-08-26 |
| | | | | > * Allow triggers to be disabled [trigger] | ||
* | Increase WIDTH_THRESHOLD from 256 to 1K. This addresses recent observation | Tom Lane | 2002-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 the | Tom Lane | 2002-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 Momjian | 2002-08-26 |
| | |||
* | Add return tuple count item to TODO. | Bruce Momjian | 2002-08-26 |
| | |||
* | Add: | Bruce Momjian | 2002-08-26 |
| | | | | > * Return proper effected tuple count from complex commands [return] | ||
* | Add anther sequential scan email. | Bruce Momjian | 2002-08-26 |
| | |||
* | Add mention of 1 terrabyte databases. | Bruce Momjian | 2002-08-26 |
| |