aboutsummaryrefslogtreecommitdiff
path: root/doc/src
Commit message (Collapse)AuthorAge
* Mark SCO Openserver 5.0.4. supported by 7.3.1 as per chat report from user.Bruce Momjian2002-12-11
| | | | template/sco updated.
* More minor improvements to the SGML docs, namelyBruce Momjian2002-12-10
| | | | | | doc/src/sgml/runtime.sgml Neil Conway
* This patch updates doc/src/sgml/runtime.sgml to refer to "MacOS X", notBruce Momjian2002-12-09
| | | | | | "OS/X". Neil Conway
* In the examples, I missed changing a few 'column' and 'table' mentionsBruce Momjian2002-12-06
| | | | | | to domain when copying alter table docs. -- Rod Taylor <rbt@rbt.ca>
* Attached are two small patches to expose md5 as a user function -- includingBruce Momjian2002-12-06
| | | | | | | | documentation and regression test mods. It seemed small and unobtrusive enough to not require a specific proposal on the hackers list -- but if not, let me know and I'll make a pitch. Otherwise, if there are no objections please apply. Joe Conway
* Mention of DEFAULT_STATISTICS_TARGET default.Bruce Momjian2002-12-06
| | | | Jeff Davis
* This patch improves the documentation for SERIAL columns a little bit.Bruce Momjian2002-12-06
| | | | Neil Conway
* RANDOM_PAGE_COST clarification of docs.Bruce Momjian2002-12-06
| | | | Joseph Shraibman
* Mark ALTER DOMAIN as supported, fix typo in header.Bruce Momjian2002-12-06
|
* Re-addd Rod's ALTER DOMAIN patch.Bruce Momjian2002-12-06
|
* Add file.Bruce Momjian2002-12-06
|
* Add SGML file.Bruce Momjian2002-12-06
|
* Back out ALTER DOMAIN patch until missing file appears.Bruce Momjian2002-12-06
|
* ALTER DOMAIN .. SET / DROP NOT NULLBruce Momjian2002-12-06
| | | | | | | | | | ALTER DOMAIN .. SET / DROP DEFAULT ALTER DOMAIN .. ADD / DROP CONSTRAINT New files: - doc/src/sgml/ref/alter_domain.sgml Rod Taylor
* With a recent commit truncate is transaction safe in 7.4.Bruce Momjian2002-12-06
| | | | Rod Taylor
* Improvements from Neil Conway.Bruce Momjian2002-12-05
|
* Document get/set bit/byte functions.Bruce Momjian2002-12-05
|
* Update docs mention of query string for debug_ commands, from JosephBruce Momjian2002-12-04
| | | | Shraibman.
* Add OpenBSD local indent credentials, from William Ahern.Bruce Momjian2002-12-03
|
* Make install and clean targets behave more normally.Tom Lane2002-11-30
|
* Recreate HISTORY file to match release.sgml changes. Stamp 7.3 final inBruce Momjian2002-11-26
| | | | configure/configure.in.
* Add -cmdTuples to tcl interface.Bruce Momjian2002-11-26
|
* Update build rules for /HISTORY.Bruce Momjian2002-11-26
|
* 7.4devel now supports SQL:1999's "enhanced trigger capability" (whichBruce Momjian2002-11-24
| | | | | | | is just FOR EACH STATEMENT triggers, AFAICS); this patch updates the SQL conformance docs to note that. Neil Conway
* This minor patch corrects an error in the function docs: it'sBruce Momjian2002-11-23
| | | | | | "version()", not "version". Neil Conway
* This patch implements FOR EACH STATEMENT triggers, per my email toBruce Momjian2002-11-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | -hackers a couple days ago. Notes/caveats: - added regression tests for the new functionality, all regression tests pass on my machine - added pg_dump support - updated PL/PgSQL to support per-statement triggers; didn't look at the other procedural languages. - there's (even) more code duplication in trigger.c than there was previously. Any suggestions on how to refactor the ExecXXXTriggers() functions to reuse more code would be welcome -- I took a brief look at it, but couldn't see an easy way to do it (there are several subtly-different versions of the code in question) - updated the documentation. I also took the liberty of removing a big chunk of duplicated syntax documentation in the Programmer's Guide on triggers, and moving that information to the CREATE TRIGGER reference page. - I also included some spelling fixes and similar small cleanups I noticed while making the changes. If you'd like me to split those into a separate patch, let me know. Neil Conway
* Update ports list from recent regression-test-database entries.Tom Lane2002-11-23
|
* Release note improvements (Neil, Tom)Tom Lane2002-11-23
|
* Fixups for man pagesPeter Eisentraut2002-11-21
|
* 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