Tom Lane
99fd5cbd41
FOUND patch was a bit over-enthusiastic: SQL commands that are not
...
INSERT, UPDATE, or DELETE shouldn't change FOUND. IMHO anyway.
Also, try to make documentation a little clearer.
24 years ago
Tom Lane
5241a6259f
Remove support for version-0 FE/BE protocol, per pghackers discussion.
...
This breaks support for 6.2 or older client libraries.
24 years ago
Tom Lane
64505ed58b
Code review for standalone composite types, query-specified composite
...
types, SRFs. Not happy with memory management yet, but I'll commit these
other changes.
24 years ago
Bruce Momjian
1923816c37
Add mention of foreign key dependency and SERIAL in 7.2 data restores.
...
Note can probably be removed after a couple of releases.
Rod Taylor
24 years ago
Bruce Momjian
4469f1aec7
Remove:
...
< * Remove PGPASSWORD because it is insecure on some OS's, in 7.4
24 years ago
Tom Lane
83501ef4ca
Update info about relkind and pg_type entries for composite-types patch.
24 years ago
Bruce Momjian
6077db92c2
Allow FOR UPDATE to appear after LIMIT/OFFSET to match MySQL syntax and as
...
a more logical ordering.
24 years ago
Bruce Momjian
056dee3bad
Add:
...
> o Add SET SCHEMA
24 years ago
Peter Eisentraut
7292131c66
Enable locale, so case conversion (identifier processing) and number
...
formatting (\timing) works correctly. Change "Total time" to "Time"
since there is nothing that "total" refers to. Remove non-multibyte
code.
24 years ago
Peter Eisentraut
7af5ea736f
Reimplement pg_dumpall in C. Currently no change in functionality,
...
except that it's more robust, reconnects less often, and is NLS'ed.
24 years ago
Bruce Momjian
dbf261f588
Add:
...
> * Allow free space map to be auto-sized or warn when it is too small
24 years ago
Bruce Momjian
cf0be7fe5e
Add error code emails.
24 years ago
Bruce Momjian
78a693c430
Add:
...
> * Allow REINDEX to rebuild all indexes, remove /contrib/reindex
> o Allow CLUSTER to cluster all tables, remove clusterdb
24 years ago
Tom Lane
28e82066a1
PREPARE/EXECUTE statements. Patch by Neil Conway, some kibitzing
...
from Tom Lane.
24 years ago
Bruce Momjian
bc8f725a4a
Done:
...
> o -Cluster all tables at once using pg_index.indisclustered set during
24 years ago
Bruce Momjian
a4965520f6
Add to mmap discussion.
24 years ago
Bruce Momjian
e0a77f56e3
Cleanup of SGML
24 years ago
Bruce Momjian
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
24 years ago
Bruce Momjian
90997ddaac
Add OS X link line example for external functions.
24 years ago
Bruce Momjian
543539bb35
Add discussion of pre-write pages to WAL.
24 years ago
Bruce Momjian
52b784a728
Add:
...
> partial page writes [wal]
24 years ago
Bruce Momjian
3109e33eb8
Add:
...
> * Add CORRESPONDING BY to UNION/INTERSECT/EXCEPT
24 years ago
Bruce Momjian
c6b67cac6b
Remove:
...
< o Add plsh server-side shell language (Peter E)
24 years ago
Bruce Momjian
9072329da8
*** empty log message ***
24 years ago
Bruce Momjian
6f8d160be3
Add to selfjoin DELETE todo.
24 years ago
Bruce Momjian
80d5040fd7
Add:
...
> * Allow DELETE to handle table aliases for self-joins [delete]
24 years ago
Bruce Momjian
566cde8cdc
Add delete selfjoin item.
24 years ago
Bruce Momjian
89f4f4a8e5
Add info on disabled triggers.
24 years ago
Bruce Momjian
339982c850
Add:
...
> * Allow triggers to be disabled [trigger]
24 years ago
Bruce Momjian
8009c27592
Add 'return' file.
24 years ago
Bruce Momjian
c7f3263dfb
Add return tuple count item to TODO.
24 years ago
Bruce Momjian
50bbb3a11d
Add:
...
> * Return proper effected tuple count from complex commands [return]
24 years ago
Bruce Momjian
d87677022b
Add anther sequential scan email.
24 years ago
Bruce Momjian
43e740b317
Add mention of 1 terrabyte databases.
24 years ago
Bruce Momjian
f5615ed45d
*** empty log message ***
24 years ago
Bruce Momjian
e21e02ab12
Add raw file discussion to performance TODO.detail.
24 years ago
Bruce Momjian
7e3f2449d8
Done:
...
> * -Disallow TRUNCATE on tables that are involved in referential constraints
24 years ago
Bruce Momjian
11825dd96e
Add to tablespaces discussion.
24 years ago
Bruce Momjian
15f335eab9
Add to tablespaces file.
24 years ago
Bruce Momjian
a10353ab83
Add file describing error message format.
24 years ago
Bruce Momjian
f82bab0952
Add:
...
> * Make error messages more consistent [error]
24 years ago
Bruce Momjian
d46172e4fa
Update docs for 7.2.2 release info.
24 years ago
Bruce Momjian
58e47c40a0
Update Japanese FAQ, from Jun Kuwamura
24 years ago
Tom Lane
976246cc7e
The cstring datatype can now be copied, passed around, etc. The typlen
...
value '-2' is used to indicate a variable-width type whose width is
computed as strlen(datum)+1. Everything that looks at typlen is updated
except for array support, which Joe Conway is working on; at the moment
it wouldn't work to try to create an array of cstring.
24 years ago
Bruce Momjian
cf4d885c67
Done:
...
> * -SELECT cash_out(2) crashes because of opaque
24 years ago
Tom Lane
a2a3192802
Further cleanup around the edges of OPAQUE/pseudotype changes. Correct
...
the declarations of some index access method support functions. Support
SQL functions returning VOID.
24 years ago
Bruce Momjian
6415ffe7af
Not sure how I fixed it the first time, but here's a fix for another
...
instance in which the docs mention that 'NAMEDATALEN == 32".
Neil Conway
24 years ago
Bruce Momjian
77072f891b
Add space.k>
24 years ago
Bruce Momjian
ec2c71ad39
Add:
...
> * Allow xlog directory location to be specified during initdb, perhaps
> using symlinks
24 years ago
Bruce Momjian
2e0e430659
This patch updates the CREATE OPERATOR sgml docs for the new default
...
settings of NAMEDATALEN. I looked through the docs for other
references to NAMEDATALEN, but this is the only one I could find.
Neil Conway
24 years ago