aboutsummaryrefslogtreecommitdiff
path: root/doc/src
Commit message (Collapse)AuthorAge
...
* Fix breakage in new-in-7.3 timetz_zone() function: was giving randomTom Lane2002-11-21
| | | | | | results due to doing arithmetic on uninitialized values. Add some documentation about the AT TIME ZONE construct. Update some other date/time documentation that seemed out of date for 7.3.
* Add mention of kern.ipc.shm_use_phys for locking shared memory.Bruce Momjian2002-11-21
|
* Code review for superuser_reserved_connections patch. Don't try to doTom Lane2002-11-21
| | | | | | database access outside a transaction; revert bogus performance improvement in SIBackendInit(); improve comments; add documentation (this part courtesy Neil Conway).
* Finish implementation of hashed aggregation. Add enable_hashagg GUCTom Lane2002-11-21
| | | | | | 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.
* Update ports list.Bruce Momjian2002-11-20
|
* Back out NetBSD/arm32 port.Bruce Momjian2002-11-19
|
* Update ports list.Bruce Momjian2002-11-19
|
* Fix typo and markup.Peter Eisentraut2002-11-18
|
* Update SGML problem in ports.Bruce Momjian2002-11-18
|
* Remove ALL from CLUSTER ALL. Use just CLUSTER.Bruce Momjian2002-11-18
|
* Update ports list.Bruce Momjian2002-11-18
|
* Re-order REINDEX options in manual for consistency. REINDEXBruce Momjian2002-11-17
| | | | DATABASE/TABLE/INDEX is the proper order.
* Revise SQL features list.Peter Eisentraut2002-11-17
|
* SGML markup fixes.Bruce Momjian2002-11-15
|
* SGML improvements.Bruce Momjian2002-11-15
| | | | Neil Conway
* New version attached. The following is implemented:Bruce Momjian2002-11-15
| | | | | | | | | | | - 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
* Add DOMAIN check constraints.Bruce Momjian2002-11-15
| | | | Rod Taylor
* Add checkpoint_warning to warn of excessive checkpoints caused by tooBruce Momjian2002-11-15
| | | | few WAL files.
* Rename hostname_lookup to log_hostname.Bruce Momjian2002-11-15
|
* Rename show_source_port to log_source_port.Bruce Momjian2002-11-15
|
* Rename:Bruce Momjian2002-11-15
| | | | | | | | | | | | | | ! #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
* Rename server_min_messages to log_min_messages. Part of consolidationBruce Momjian2002-11-14
| | | | of log_ settings.
* Update ports list.Bruce Momjian2002-11-14
|
* Fix Magnus's name.Bruce Momjian2002-11-14
|
* Fix version number for FreeBSD/alpha on ports list.Bruce Momjian2002-11-14
|
* Update ports list.Bruce Momjian2002-11-14
|
* Update ports list.Bruce Momjian2002-11-14
|
* Update ports list.Bruce Momjian2002-11-14
|
* Make MOVE/FETCH 0 actually move/fetch 0. Add MOVE LAST to move to endBruce Momjian2002-11-13
| | | | of cursor.
* Add AIX as supported platform.Bruce Momjian2002-11-12
|
* Code review for ON COMMIT patch. Make the actual on-commit action happenTom Lane2002-11-11
| | | | | | | | | 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.
* Merge documentation updates from 7.3 branch.Peter Eisentraut2002-11-11
|
* Merge release note updates from 7.3 branch.Peter Eisentraut2002-11-11
|
* Update jdbc doc to reflect correct name of the PGConnection class.Barry Lind2002-11-11
|
* Update russian FAQ, from Viktor Vislobokov.Bruce Momjian2002-11-10
|
* This patch makes a minor cleanup to the implementation of PERFORM inBruce Momjian2002-11-10
| | | | | | | | | | | | | | 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
* Add documentation for array_upper/lower().Bruce Momjian2002-11-10
|
* I just discovered, that there is missing a const when passing a bufferBruce Momjian2002-11-10
| | | | | | | to PQescapeBytea and PQunescapeBytea. I fixed it and tried to create a usable diff (I'm not so familar to diff). Tommi M?kitalo
* Tweak CREATE SEQUENCE grammar to be more SQL1999 standards compliant.Bruce Momjian2002-11-10
| | | | Neil Conway
* Add code to handle [ON COMMIT { PRESERVE ROWS | DELETE ROWS | DROP }]Bruce Momjian2002-11-09
| | | | | | for temp tables. Gavin Sherry
* Update discussion of floating-point problems in regression tests.Tom Lane2002-11-08
|
* Here is a patch that does just that, while maintaining theBruce Momjian2002-11-08
| | | | | | | | "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
* Add extra_float_digits GUC parameter to allow adjustment of displayedTom Lane2002-11-08
| | | | | | | 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.
* Update libpq PQcmdTuples() and PQcmdStatus() docs, remove const paramBruce Momjian2002-11-08
| | | | doc mention to match code and include files.
* I'm using libpgtcl with PostgreSQL-7.2.3. There is a discrepancy betweenBruce Momjian2002-11-08
| | | | | | | | | | | | | | 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
* Update release docs for 7.3.Bruce Momjian2002-11-08
|
* Add OS/X kernel tuning section.Bruce Momjian2002-11-05
|
* Update FAQ_DEV.Bruce Momjian2002-11-05
|
* Update FAQ_DEV.Bruce Momjian2002-11-05
|
* Update ports list.Bruce Momjian2002-11-05
|