| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2002-12-06 | In the examples, I missed changing a few 'column' and 'table' mentions | Bruce Momjian | |
| to domain when copying alter table docs. -- Rod Taylor <rbt@rbt.ca> | |||
| 2002-12-06 | Attached are two small patches to expose md5 as a user function -- including | Bruce Momjian | |
| 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 | |||
| 2002-12-06 | Mention of DEFAULT_STATISTICS_TARGET default. | Bruce Momjian | |
| Jeff Davis | |||
| 2002-12-06 | This patch improves the documentation for SERIAL columns a little bit. | Bruce Momjian | |
| Neil Conway | |||
| 2002-12-06 | RANDOM_PAGE_COST clarification of docs. | Bruce Momjian | |
| Joseph Shraibman | |||
| 2002-12-06 | Mark ALTER DOMAIN as supported, fix typo in header. | Bruce Momjian | |
| 2002-12-06 | Re-addd Rod's ALTER DOMAIN patch. | Bruce Momjian | |
| 2002-12-06 | Add file. | Bruce Momjian | |
| 2002-12-06 | Add SGML file. | Bruce Momjian | |
| 2002-12-06 | Back out ALTER DOMAIN patch until missing file appears. | Bruce Momjian | |
| 2002-12-06 | ALTER DOMAIN .. SET / DROP NOT NULL | Bruce Momjian | |
| ALTER DOMAIN .. SET / DROP DEFAULT ALTER DOMAIN .. ADD / DROP CONSTRAINT New files: - doc/src/sgml/ref/alter_domain.sgml Rod Taylor | |||
| 2002-12-06 | With a recent commit truncate is transaction safe in 7.4. | Bruce Momjian | |
| Rod Taylor | |||
| 2002-12-05 | Improvements from Neil Conway. | Bruce Momjian | |
| 2002-12-05 | Document get/set bit/byte functions. | Bruce Momjian | |
| 2002-12-04 | Update docs mention of query string for debug_ commands, from Joseph | Bruce Momjian | |
| Shraibman. | |||
| 2002-12-03 | Add OpenBSD local indent credentials, from William Ahern. | Bruce Momjian | |
| 2002-11-30 | Make install and clean targets behave more normally. | Tom Lane | |
| 2002-11-26 | Recreate HISTORY file to match release.sgml changes. Stamp 7.3 final in | Bruce Momjian | |
| configure/configure.in. | |||
| 2002-11-26 | Add -cmdTuples to tcl interface. | Bruce Momjian | |
| 2002-11-26 | Update build rules for /HISTORY. | Bruce Momjian | |
| 2002-11-24 | 7.4devel now supports SQL:1999's "enhanced trigger capability" (which | Bruce Momjian | |
| is just FOR EACH STATEMENT triggers, AFAICS); this patch updates the SQL conformance docs to note that. Neil Conway | |||
| 2002-11-23 | This minor patch corrects an error in the function docs: it's | Bruce Momjian | |
| "version()", not "version". Neil Conway | |||
| 2002-11-23 | This patch implements FOR EACH STATEMENT triggers, per my email to | Bruce Momjian | |
| -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 | |||
| 2002-11-23 | Update ports list from recent regression-test-database entries. | Tom Lane | |
| 2002-11-23 | Release note improvements (Neil, Tom) | Tom Lane | |
| 2002-11-21 | Fixups for man pages | Peter Eisentraut | |
| 2002-11-21 | Fix breakage in new-in-7.3 timetz_zone() function: was giving random | Tom Lane | |
| 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. | |||
| 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 | |
