| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2002-11-21 | Add mention of kern.ipc.shm_use_phys for locking shared memory. | Bruce Momjian | |
| 2002-11-21 | Code review for superuser_reserved_connections patch. Don't try to do | Tom Lane | |
| database access outside a transaction; revert bogus performance improvement in SIBackendInit(); improve comments; add documentation (this part courtesy Neil Conway). | |||
| 2002-11-21 | Finish implementation of hashed aggregation. Add enable_hashagg GUC | Tom Lane | |
| parameter to allow it to be forced off for comparison purposes. Add ORDER BY clauses to a bunch of regression test queries that will otherwise produce randomly-ordered output in the new regime. | |||
| 2002-11-20 | Update ports list. | Bruce Momjian | |
| 2002-11-19 | Back out NetBSD/arm32 port. | Bruce Momjian | |
| 2002-11-19 | Update ports list. | Bruce Momjian | |
| 2002-11-18 | Fix typo and markup. | Peter Eisentraut | |
| 2002-11-18 | Update SGML problem in ports. | Bruce Momjian | |
| 2002-11-18 | Remove ALL from CLUSTER ALL. Use just CLUSTER. | Bruce Momjian | |
| 2002-11-18 | Update ports list. | Bruce Momjian | |
| 2002-11-17 | Re-order REINDEX options in manual for consistency. REINDEX | Bruce Momjian | |
| DATABASE/TABLE/INDEX is the proper order. | |||
| 2002-11-17 | Revise SQL features list. | Peter Eisentraut | |
| 2002-11-15 | SGML markup fixes. | Bruce Momjian | |
| 2002-11-15 | SGML improvements. | Bruce Momjian | |
| Neil Conway | |||
| 2002-11-15 | New version attached. The following is implemented: | Bruce Momjian | |
| - CLUSTER ALL clusters all the tables that have some index with indisclustered set and the calling user owns. - CLUSTER tablename clusters the named table, using the index with indisclustered set. If no index has the bit set, throws elog(ERROR). - The multi-relation version (CLUSTER ALL) uses a multitransaction approach, similar to what VACUUM does. Alvaro Herrera | |||
| 2002-11-15 | Add DOMAIN check constraints. | Bruce Momjian | |
| Rod Taylor | |||
| 2002-11-15 | Add checkpoint_warning to warn of excessive checkpoints caused by too | Bruce Momjian | |
| few WAL files. | |||
| 2002-11-15 | Rename hostname_lookup to log_hostname. | Bruce Momjian | |
| 2002-11-15 | Rename show_source_port to log_source_port. | Bruce Momjian | |
| 2002-11-15 | Rename: | Bruce Momjian | |
| ! #show_parser_stats = false ! #show_planner_stats = false ! #show_executor_stats = false ! #show_statement_stats = false TO: ! #log_parser_stats = false ! #log_planner_stats = false ! #log_executor_stats = false ! #log_statement_stats = false | |||
| 2002-11-14 | Rename server_min_messages to log_min_messages. Part of consolidation | Bruce Momjian | |
| of log_ settings. | |||
| 2002-11-14 | Update ports list. | Bruce Momjian | |
| 2002-11-14 | Fix Magnus's name. | Bruce Momjian | |
| 2002-11-14 | Fix version number for FreeBSD/alpha on ports list. | Bruce Momjian | |
| 2002-11-14 | Update ports list. | Bruce Momjian | |
| 2002-11-14 | Update ports list. | Bruce Momjian | |
| 2002-11-14 | Update ports list. | Bruce Momjian | |
| 2002-11-13 | Make MOVE/FETCH 0 actually move/fetch 0. Add MOVE LAST to move to end | Bruce Momjian | |
| of cursor. | |||
| 2002-11-12 | Add AIX as supported platform. | Bruce Momjian | |
| 2002-11-11 | Code review for ON COMMIT patch. Make the actual on-commit action happen | Tom Lane | |
| before commit, not after :-( --- the original coding is not only unsafe if an error occurs while it's processing, but it generates an invalid sequence of WAL entries. Resurrect 7.2 logic for deleting items when no longer needed. Use an enum instead of random macros. Editorialize on names used for routines and constants. Teach backend/nodes routines about new field in CreateTable struct. Add a regression test. | |||
| 2002-11-11 | Merge documentation updates from 7.3 branch. | Peter Eisentraut | |
| 2002-11-11 | Merge release note updates from 7.3 branch. | Peter Eisentraut | |
| 2002-11-11 | Update jdbc doc to reflect correct name of the PGConnection class. | Barry Lind | |
| 2002-11-10 | Update russian FAQ, from Viktor Vislobokov. | Bruce Momjian | |
| 2002-11-10 | This patch makes a minor cleanup to the implementation of PERFORM in | Bruce Momjian | |
| PL/PgSQL. Previously, it had been bundled together with the assign statement implementation, for some reason that wasn't clear to me (they certainly don't share any code with one another). So I separated them and made PERFORM a statement like any other. No changes in functionality. Along the way, I added some regression tests for PERFORM, added a bunch more SGML tags to the PL/PgSQL docs, and removed an obsolete comment relating to the implementation of RETURN NEXT. Neil Conway | |||
| 2002-11-10 | Add documentation for array_upper/lower(). | Bruce Momjian | |
| 2002-11-10 | I just discovered, that there is missing a const when passing a buffer | Bruce Momjian | |
| to PQescapeBytea and PQunescapeBytea. I fixed it and tried to create a usable diff (I'm not so familar to diff). Tommi M?kitalo | |||
| 2002-11-10 | Tweak CREATE SEQUENCE grammar to be more SQL1999 standards compliant. | Bruce Momjian | |
| Neil Conway | |||
| 2002-11-09 | Add code to handle [ON COMMIT { PRESERVE ROWS | DELETE ROWS | DROP }] | Bruce Momjian | |
| for temp tables. Gavin Sherry | |||
| 2002-11-08 | Update discussion of floating-point problems in regression tests. | Tom Lane | |
| 2002-11-08 | Here is a patch that does just that, while maintaining the | Bruce Momjian | |
| "traditional" behavior, so the change should be transparent. Use the command "\pset pager always" to turn it on. Anything else does the normal toggle between "on" and "off" Greg Sabino Mullane | |||
| 2002-11-08 | Add extra_float_digits GUC parameter to allow adjustment of displayed | Tom Lane | |
| precision for float4, float8, and geometric types. Set it in pg_dump so that float data can be dumped/reloaded exactly (at least on platforms where the float I/O support is properly implemented). Initial patch by Pedro Ferreira, some additional work by Tom Lane. | |||
| 2002-11-08 | Update libpq PQcmdTuples() and PQcmdStatus() docs, remove const param | Bruce Momjian | |
| doc mention to match code and include files. | |||
| 2002-11-08 | I'm using libpgtcl with PostgreSQL-7.2.3. There is a discrepancy between | Bruce Momjian | |
| the documentation and behavior of "pg_result $res -oid" when $res is not from an INSERT. The documentation says it should return an empty string, but in fact it returns 0. I think it used to return an empty string around PostgreSQL-7.1.3 when PQoidStatus() was used, but now it uses PQoidValue() which returns InvalidOid, 0 in this case. Assuming the current behavior is desired, here is a patch to the documentation doc/src/sgml/libpgtcl.sgml to match what really happens: ljb | |||
| 2002-11-08 | Update release docs for 7.3. | Bruce Momjian | |
| 2002-11-05 | Add OS/X kernel tuning section. | Bruce Momjian | |
| 2002-11-05 | Update FAQ_DEV. | Bruce Momjian | |
| 2002-11-05 | Update FAQ_DEV. | Bruce Momjian | |
| 2002-11-05 | Update ports list. | Bruce Momjian | |
| 2002-11-05 | Update ports list. | Bruce Momjian | |
