2e1254e7fa
Repair planning bug introduced in 7.4: outer-join ON clauses that referenced
...
only the inner-side relation would be considered as potential equijoin clauses,
which is wrong because the condition doesn't necessarily hold above the point
of the outer join. Per test case from Kevin Grittner (bug#1916).
2005-09-28 21:17:02 +00:00
4ff203262b
Fix typo.
2005-09-28 18:40:28 +00:00
e05a8c553c
Add section on reliable operation, talking about caching and storage
...
subsystem reliability.
2005-09-28 18:18:02 +00:00
1c25594549
Improve messages
2005-09-28 13:11:26 +00:00
c2f7536543
Update SQL conformance mention to 2003.
2005-09-28 11:45:52 +00:00
3f540711ef
Update Russian FAQ.
...
Victor Vislobokov
2005-09-28 11:32:49 +00:00
6bc4e3617d
Add attribution.
2005-09-27 23:32:38 +00:00
455f48ddc5
Done:
...
< * +Add options to pg_config to show the share_dir, sysconfdir,
< pkgincludedir, and localedir
2005-09-27 18:04:34 +00:00
1610fcc351
Some marginal tweaks to make 'make installcheck' mostly work when
...
building contrib with USE_PGXS. To make it work all the way, the
pg_regress script would need to be included in the installation tree.
2005-09-27 17:43:31 +00:00
4fc935a5d4
Fix problems with PGXS builds against an installation tree that was
...
relocated after installation. We can't trust the installation paths
inserted into Makefile.global by configure, so instead we must get the
paths from pg_config. This requires extending pg_config to support all
the separately-configurable path names, but that was on TODO anyway.
2005-09-27 17:39:35 +00:00
2d8225eecc
Release notes up to date as of today.
2005-09-27 17:28:51 +00:00
e2d8b79f8b
Suppress FAQ and TODO changes in pgcvslog output.
2005-09-27 17:16:08 +00:00
0b36cb83dc
PGXS should be set with := not =, as specified in the documentation,
...
to avoid useless multiple executions of pg_config.
2005-09-27 17:13:14 +00:00
8ddd22f245
Fix incorrect psql \x memory allocation for numericlocale. Redesign API
...
to be less error-prone.
2005-09-27 16:30:25 +00:00
451cd7d426
Add:
...
> o Improve signal handling,
> http://archives.postgresql.org/pgsql-patches/2005-06/msg00027.php
2005-09-27 15:18:13 +00:00
240c8e7e43
Novice:
...
< * Add options to pg_config to show the share_dir, sysconfdir,
> * +Add options to pg_config to show the share_dir, sysconfdir,
2005-09-27 13:39:32 +00:00
3772975f30
Fix our version of strdup() to adhere to the standard semantics for
...
out-of-memory --- that is, return NULL rather than dumping core.
Noted by Qingqing Zhou.
2005-09-27 04:53:23 +00:00
4056efcfc1
Create preliminary release notes for upcoming back-branch releases.
2005-09-26 21:44:04 +00:00
c23240ecbe
Rename variable for clarity.
2005-09-26 18:09:57 +00:00
7fe1f9a2c2
Don't need gettext calls around debug messages.
2005-09-26 17:49:09 +00:00
d3a0c8dce9
Prevent threaded python build on BSD's, where it fails.
...
Marko Kreen
2005-09-26 16:48:28 +00:00
3ff1dc501e
Done:
...
< * Allow protocol-level EXECUTE that is actually a fetch to appear
< in the logs as a fetch rather than another execute
2005-09-26 15:52:35 +00:00
72739020c2
Log protocol-excute fetch operatation as fetch, rather than execute,
...
adjusted from a patch by Simon.
2005-09-26 15:51:12 +00:00
88922598da
Add:
...
> * Allow protocol-level BIND parameter values to be logged
> * Allow protocol-level EXECUTE that is actually a fetch to appear
> in the logs as a fetch rather than another execute
2005-09-26 02:44:28 +00:00
e990b9ce23
The original patch to avoid building a hash join's hashtable when the
...
outer relation is empty did not work, per test case from Patrick Welche.
It tried to use nodeHashjoin.c's high-level mechanisms for fetching an
outer-relation tuple, but that code expected the hash table to be filled
already. As patched, the code failed in corner cases such as having no
outer-relation tuples for the first hash batch. Revert and rewrite.
2005-09-25 19:37:35 +00:00
dd102d3683
Wording cleanup.
2005-09-25 03:12:13 +00:00
ccc0a1326e
Document why PQtrace and ecpg debug() can crash the application if the
...
DLL compiles to not match the application.
2005-09-25 03:06:41 +00:00
d3419467bb
Cleanups for recent addition to log_connections documentation.
2005-09-24 23:25:31 +00:00
5d82f9a898
Improve wording.
2005-09-24 23:08:07 +00:00
0df7f493f8
Clean up possibly-uninitialized-variable warnings reported by gcc 4.x.
2005-09-24 23:07:18 +00:00
030d5bd942
Add mention of duplicate connection messages from psql, per Andrew.
2005-09-24 23:06:24 +00:00
1a9d96a5fa
Update release notes for 4-byte UTF mappings.
2005-09-24 22:57:15 +00:00
303e089df5
Clean up possibly-uninitialized-variable warnings reported by gcc 4.x.
2005-09-24 22:54:44 +00:00
5d9c6b18d3
Document change in large object snapshotting behavior as a version
...
compatibility issue.
2005-09-24 20:35:21 +00:00
8a65b820e2
Suppress signed-vs-unsigned-char warnings in contrib.
2005-09-24 19:14:05 +00:00
8889685555
Suppress signed-vs-unsigned-char warnings.
2005-09-24 17:53:28 +00:00
54a8af058e
In a machine where INT64_IS_BUSTED, we can only support 32-bit values
...
for int8 and related types. However we might be talking to a client
that has working int64; so pq_getmsgint64 really needs to check the
incoming value and throw an overflow error if we can't represent it
accurately.
2005-09-24 15:34:07 +00:00
9f53cfd9db
Add comments explaining clauses used by CREATE ROLE but not ALTER.
2005-09-23 22:25:25 +00:00
86044a9d71
Add:
...
> * Simplify dropping roles that have objects in several databases
2005-09-23 21:55:01 +00:00
6db56cdf80
Add:
...
> o Allow PL/PgSQL to support WITH HOLD cursors
2005-09-23 20:41:39 +00:00
bf8e536215
Add:
...
>
> o Display IN, INOUT, and OUT parameters in \df+
>
> It probably requires psql to output newlines in the proper
> column, which is already on the TODO list.
2005-09-23 20:32:49 +00:00
bb36c18c51
Remove xid wraparound mention, because it was already done in 8.0, per Neil.
2005-09-23 16:36:35 +00:00
06d70d78a4
Fix typo in comment.
2005-09-23 15:36:57 +00:00
bb6b1a38b6
Document that chkpass ignores password characters after the eighth.
2005-09-23 15:05:04 +00:00
e6bae1c3d3
Add:
...
> * Add function to report the time of the most recent server reload
2005-09-23 03:06:03 +00:00
6e85717a77
Add:
...
> * Add options to pg_config to show the share_dir, sysconfdir,
> pkgincludedir, and localedir
>
2005-09-23 03:04:24 +00:00
e885554c8d
Clarify autovacuum wording.
2005-09-23 02:42:34 +00:00
01ead29b0c
Please find attached a patch which tells about what the spiffy,
...
integrated autovacuum now does :)
David Fetter
2005-09-23 02:25:35 +00:00
9822c73a9d
Mention that autovacuum also needs stats.
2005-09-23 02:06:58 +00:00
18ea8ae531
Attached patch takes a swing at improving the autovacuum wording in
...
maintenance.sgml.
Robert Treat
[ Also fix create domain markup.]
2005-09-23 02:01:35 +00:00