Bruce Momjian
88ae9cd411
Mention of DEFAULT_STATISTICS_TARGET default.
...
Jeff Davis
2002-12-06 05:18:57 +00:00
Bruce Momjian
da1738a178
This patch improves the documentation for SERIAL columns a little bit.
...
Neil Conway
2002-12-06 05:17:42 +00:00
Bruce Momjian
982b26c0a9
RANDOM_PAGE_COST clarification of docs.
...
Joseph Shraibman
2002-12-06 05:17:03 +00:00
Bruce Momjian
f679690621
Mark ALTER DOMAIN as supported, fix typo in header.
2002-12-06 05:07:16 +00:00
Bruce Momjian
05a6b37912
Re-addd Rod's ALTER DOMAIN patch.
2002-12-06 05:00:34 +00:00
Bruce Momjian
78705d0a19
Add file.
2002-12-06 04:40:58 +00:00
Bruce Momjian
6e9adbe191
Add SGML file.
2002-12-06 04:40:36 +00:00
Bruce Momjian
5b4c16e099
Back out ALTER DOMAIN patch until missing file appears.
2002-12-06 03:43:35 +00:00
Bruce Momjian
853153ca6d
ALTER DOMAIN .. SET / DROP NOT NULL
...
ALTER DOMAIN .. SET / DROP DEFAULT
ALTER DOMAIN .. ADD / DROP CONSTRAINT
New files:
- doc/src/sgml/ref/alter_domain.sgml
Rod Taylor
2002-12-06 03:28:34 +00:00
Bruce Momjian
d851f002a4
With a recent commit truncate is transaction safe in 7.4.
...
Rod Taylor
2002-12-06 03:15:07 +00:00
Bruce Momjian
ec0a5b9e9d
Add:
...
> * Add SQL99 WITH clause to SELECT (Tom, Fernando)
> * Add SQL99 WITH RECURSIVE to SELECT (Tom, Fernando)
443a444
> * Fernando Nasser <fnasser@redhat.com>
2002-12-05 20:30:36 +00:00
Bruce Momjian
0f3b83edfa
Improvements from Neil Conway.
2002-12-05 05:47:44 +00:00
Bruce Momjian
23e88e25d6
Document get/set bit/byte functions.
2002-12-05 04:38:30 +00:00
Bruce Momjian
ec1bee1478
Update docs mention of query string for debug_ commands, from Joseph
...
Shraibman.
2002-12-04 21:43:07 +00:00
Bruce Momjian
20f2872467
Add:
...
> * Add ALTER SEQUENCE to modify min/max/increment/cache/cycle values
2002-12-04 18:23:47 +00:00
Bruce Momjian
91f508ae85
Done:
...
> * -Add OpenBSD's getpeereid() call for local socket authentication
2002-12-03 22:10:47 +00:00
Bruce Momjian
f988edb4e1
Add OpenBSD local indent credentials, from William Ahern.
2002-12-03 21:50:44 +00:00
Bruce Momjian
31504cc83b
Updated:
...
< * Add sql3 recursive unions
> * Add SQL99 WITH clause to SELECT
> * Add SQL99 WITH RECURSIVE to SELECT
2002-12-03 17:38:34 +00:00
Bruce Momjian
d117782a4b
Add for D'Arcy:
...
> * Python
> o Allow users to register their own types with _pg
> o Allow SELECT to return a dictionary of dictionaries
> o Allow COPY BINARY FROM
2002-12-02 05:42:36 +00:00
Bruce Momjian
c9a993ccf3
Done in 7.3, so removed:
...
< o Allow psql \copy to specify column names
199d197
< o Add SET REAL_FORMAT and SET DOUBLE_PRECISION_FORMAT using printf args
2002-12-01 21:28:01 +00:00
Bruce Momjian
68b944757a
Done:
...
> * -Inline simple SQL functions to avoid overhead (Tom)
2002-12-01 21:20:45 +00:00
Tom Lane
829cedc8cf
Make install and clean targets behave more normally.
2002-11-30 00:22:39 +00:00
Bruce Momjian
cf4e603e2c
Add trigger emails.
2002-11-28 20:05:13 +00:00
Tom Lane
1941887d6e
rm should be rm -f, per comment from Peter Harris.
...
(Checked with Peter Eisentraut.)
2002-11-27 23:21:12 +00:00
Bruce Momjian
c4439536e2
Move to URGENT, for Justin:
...
< * Create native Win32 port [win32]
2002-11-26 22:05:49 +00:00
Bruce Momjian
75d1ed3392
Recreate HISTORY file to match release.sgml changes. Stamp 7.3 final in
...
configure/configure.in.
2002-11-26 22:04:03 +00:00
Bruce Momjian
80e6d99731
Add -cmdTuples to tcl interface.
2002-11-26 21:38:49 +00:00
Bruce Momjian
7fb0d91062
Update trigger discussion.
2002-11-26 19:43:53 +00:00
Bruce Momjian
22a717a18e
Update build rules for /HISTORY.
2002-11-26 19:22:16 +00:00
Bruce Momjian
021f22605d
Add to trigger thread.
2002-11-26 18:54:26 +00:00
Bruce Momjian
6bfc09baf4
7.4devel now supports SQL:1999's "enhanced trigger capability" (which
...
is just FOR EACH STATEMENT triggers, AFAICS); this patch updates the
SQL conformance docs to note that.
Neil Conway
2002-11-24 03:15:55 +00:00
Bruce Momjian
1676753e2b
Split:
...
> * -Support statement-level triggers (Neil)
> * Support triggers on columns (Neil)
2002-11-24 03:14:01 +00:00
Bruce Momjian
a2b4a7071d
This minor patch corrects an error in the function docs: it's
...
"version()", not "version".
Neil Conway
2002-11-23 04:04:43 +00:00
Bruce Momjian
1b7f3cc02d
This patch implements FOR EACH STATEMENT triggers, per my email to
...
-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 03:59:09 +00:00
Bruce Momjian
ea29b32758
Done:
...
> * -Support statement-level triggers and triggers on columns (Neil)
2002-11-23 03:52:44 +00:00
Tom Lane
9416f3839d
Update ports list from recent regression-test-database entries.
2002-11-23 03:50:34 +00:00
Tom Lane
349d529abf
Release note improvements (Neil, Tom)
2002-11-23 02:41:03 +00:00
Peter Eisentraut
ed24f28538
Fixups for man pages
2002-11-21 23:34:43 +00:00
Tom Lane
75394d3f5b
Fix breakage in new-in-7.3 timetz_zone() function: was giving random
...
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 23:31:20 +00:00
Bruce Momjian
63c38401d9
Add:
...
> * Have sequence dependency track use of DEFAULT sequences, seqname.nextval
2002-11-21 19:15:04 +00:00
Bruce Momjian
71f411dd03
Add mention of kern.ipc.shm_use_phys for locking shared memory.
2002-11-21 18:19:51 +00:00
Tom Lane
8362be35e8
Code review for superuser_reserved_connections patch. Don't try to do
...
database access outside a transaction; revert bogus performance improvement
in SIBackendInit(); improve comments; add documentation (this part courtesy
Neil Conway).
2002-11-21 06:36:08 +00:00
Bruce Momjian
1c6adf0f67
Done:
...
> * -Add hash for evaluating GROUP BY aggregates (Tom)
2002-11-21 01:02:34 +00:00
Tom Lane
6c1d4662af
Finish implementation of hashed aggregation. Add enable_hashagg GUC
...
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-21 00:42:20 +00:00
Bruce Momjian
2676e11fdf
Update ports list.
2002-11-20 22:01:57 +00:00
Bruce Momjian
54cb1db6cf
Add my name:
...
> * Allow savepoints / nested transactions [transactions] (Bruce)
2002-11-19 20:35:13 +00:00
Bruce Momjian
cd55a2b1be
Back out NetBSD/arm32 port.
2002-11-19 17:17:48 +00:00
Bruce Momjian
7b5571e83d
Update ports list.
2002-11-19 16:40:05 +00:00
Peter Eisentraut
ded8f887aa
Fix typo and markup.
2002-11-18 18:10:59 +00:00
Bruce Momjian
075f482024
Update SGML problem in ports.
2002-11-18 17:15:27 +00:00