1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-10 09:21:54 +03:00
Commit Graph

13357 Commits

Author SHA1 Message Date
a1c218cae4 The attached patch implements the password packet length sanity check
(using an elog(LOG) ), as well as includes a few more comment fixes.

Neil Conway
2002-08-27 16:21:51 +00:00
dbf261f588 Add:
> * Allow free space map to be auto-sized or warn when it is too small
2002-08-27 16:19:46 +00:00
cf0be7fe5e Add error code emails. 2002-08-27 15:31:32 +00:00
fd3c4b2eaf Add most of Neil Conway's cleanups. 2002-08-27 15:15:23 +00:00
840deabfe0 More connection timeout cleanups. 2002-08-27 15:02:50 +00:00
4e723e6717 Cleanup of libpq connection timeout code. 2002-08-27 14:49:52 +00:00
78a693c430 Add:
> * Allow REINDEX to rebuild all indexes, remove /contrib/reindex
> 	o Allow CLUSTER to cluster all tables, remove clusterdb
2002-08-27 14:17:14 +00:00
0582ad91ac Add fsm sizes. 2002-08-27 14:06:05 +00:00
28e82066a1 PREPARE/EXECUTE statements. Patch by Neil Conway, some kibitzing
from Tom Lane.
2002-08-27 04:55:12 +00:00
bc8f725a4a Done:
> 	o -Cluster all tables at once using pg_index.indisclustered set during
2002-08-27 04:30:24 +00:00
a4965520f6 Add to mmap discussion. 2002-08-27 04:09:01 +00:00
a77d34f0b8 This patch updates the lock listing code to use Joe Conway's new
anonymous return type SRF code. It gets rid of the superflous
'pg_locks_result' that Bruce/Tom had commented on. Otherwise, no
changes in functionality.

Neil Conway
2002-08-27 04:00:28 +00:00
bda45958a8 This is a 2 line patch to src/interfaces/perl5/GNUMakefile that fixes
the 'override CPPFLAGS' to include the source directory during compile,
and makes the install target look in the proper place for the man page.

Changes are only required when building outside the source directory.

J. R. Nield
2002-08-27 03:57:11 +00:00
dd912c6977 This patches replaces a few more usages of strcpy() and sprintf() when
copying into a fixed-size buffer (in this case, a buffer of
NAMEDATALEN bytes). AFAICT nothing to worry about here, but worth
fixing anyway...

Neil Conway
2002-08-27 03:56:35 +00:00
e0a77f56e3 Cleanup of SGML 2002-08-27 03:55:17 +00:00
c0ad595386 I attach a little patch to make CLUSTER set and reset the indisclustered
bit on the indexes.

I also attach clusterdb and clusterdb.sgml; both of them are blatant
rips of vacuumdb and vacuumdb.sgml, but get the job done.  Please review
them, as I'm probably making a lot of mistakes with SGML and I can't
compile it here.

vacuumdb itself is not very comfortable to use when the databases have
passwords, because it has to connect once for each table (I can probably
make it connect only once for each database; should I?).  Because of
this I added a mention of PGPASSWORDFILE in the documentation, but I
don't know if that is the correct place for that.

Alvaro Herrera
2002-08-27 03:38:28 +00:00
b7e272429c Add to skip list in check_guc 2002-08-27 03:06:16 +00:00
fd9d665908 Comment cleanup. 2002-08-27 03:02:31 +00:00
fc67e1fb94 Script cleanups. 2002-08-27 03:01:13 +00:00
f20ec2e8f8 Clean up script. 2002-08-27 02:54:39 +00:00
1051346fb7 Add check_guc utility to compare guc.c and postgresql.conf.sample. 2002-08-27 02:52:42 +00:00
e46afb588d Fix units in postgresql.conf. 2002-08-27 02:50:41 +00:00
90997ddaac Add OS X link line example for external functions. 2002-08-26 23:22:47 +00:00
543539bb35 Add discussion of pre-write pages to WAL. 2002-08-26 23:14:15 +00:00
52b784a728 Add:
>   partial page writes [wal]
2002-08-26 23:13:37 +00:00
3109e33eb8 Add:
> * Add CORRESPONDING BY to UNION/INTERSECT/EXCEPT
2002-08-26 23:02:21 +00:00
9ede612245 Add units to postgresql.conf file. 2002-08-26 22:23:07 +00:00
c6b67cac6b Remove:
< 	o Add plsh server-side shell language (Peter E)
2002-08-26 22:02:20 +00:00
9072329da8 *** empty log message *** 2002-08-26 22:01:50 +00:00
6f8d160be3 Add to selfjoin DELETE todo. 2002-08-26 21:52:00 +00:00
80d5040fd7 Add:
> * Allow DELETE to handle table aliases for self-joins [delete]
2002-08-26 21:35:32 +00:00
566cde8cdc Add delete selfjoin item. 2002-08-26 21:35:01 +00:00
89f4f4a8e5 Add info on disabled triggers. 2002-08-26 20:03:10 +00:00
339982c850 Add:
> * Allow triggers to be disabled [trigger]
2002-08-26 20:02:45 +00:00
5d6758fd24 Increase WIDTH_THRESHOLD from 256 to 1K. This addresses recent observation
that ANALYZE would not gather any stats for a CHAR(255) column.  I still
think a width threshold is appropriate for the reasons mentioned in the
code, but we can loosen it at least.
2002-08-26 18:45:57 +00:00
5cabcfccce Modify array operations to include array's element type OID in the
array header, and to compute sizing and alignment of array elements
the same way normal tuple access operations do --- viz, using the
tupmacs.h macros att_addlength and att_align.  This makes the world
safe for arrays of cstrings or intervals, and should make it much
easier to write array-type-polymorphic functions; as examples see
the cleanups of array_out and contrib/array_iterator.  By Joe Conway
and Tom Lane.
2002-08-26 17:54:02 +00:00
8009c27592 Add 'return' file. 2002-08-26 17:40:27 +00:00
c7f3263dfb Add return tuple count item to TODO. 2002-08-26 17:40:00 +00:00
50bbb3a11d Add:
> * Return proper effected tuple count from complex commands [return]
2002-08-26 17:39:31 +00:00
d87677022b Add anther sequential scan email. 2002-08-26 17:14:29 +00:00
43e740b317 Add mention of 1 terrabyte databases. 2002-08-26 01:05:43 +00:00
f5615ed45d *** empty log message *** 2002-08-26 01:04:44 +00:00
e21e02ab12 Add raw file discussion to performance TODO.detail. 2002-08-26 01:04:13 +00:00
7e3f2449d8 Done:
> * -Disallow TRUNCATE on tables that are involved in referential constraints
2002-08-26 00:52:40 +00:00
11825dd96e Add to tablespaces discussion. 2002-08-26 00:22:53 +00:00
15f335eab9 Add to tablespaces file. 2002-08-26 00:19:33 +00:00
39e331be72 Add Bob Devine's name to the optimizer README. 2002-08-25 22:39:37 +00:00
a10353ab83 Add file describing error message format. 2002-08-25 20:36:14 +00:00
f82bab0952 Add:
> * Make error messages more consistent [error]
2002-08-25 20:30:30 +00:00
58de480999 Clean up comments to be careful about the distinction between variable-
width types and varlena types, since with the introduction of CSTRING as
a more-or-less-real type, these concepts aren't identical.  I've tried to
use varlena consistently to denote datatypes with typlen = -1, ie, they
have a length word and are potentially TOASTable; while the term variable
width covers both varlena and cstring (and, perhaps, someday other types
with other rules for computing the actual width).  No code changes in this
commit except for renaming a couple macros.
2002-08-25 17:20:01 +00:00