Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Prevent problem with extra-long password packets from allocating lots of | Bruce Momjian | 2002-08-29 |
| | | | | | | memory. Neil Conway | ||
* | This patch reserves the last superuser_reserved_connections slots for | Bruce Momjian | 2002-08-29 |
| | | | | | | | | | | | | | | | | | | | connections by the superuser only. This patch replaces the last patch I sent a couple of days ago. It closes a connection that has not been authorised by a superuser if it would leave less than the GUC variable ReservedBackends (superuser_reserved_connections in postgres.conf) backend process slots free in the SISeg. This differs to the first patch which only reserved the last ReservedBackends slots in the procState array. This has made the free slot test more expensive due to the use of a lock. After thinking about a comment on the first patch I've also made it a fatal error if the number of reserved slots is not less than the maximum number of connections. Nigel J. Andrews | ||
* | please apply small patch for README.tsearch. | Bruce Momjian | 2002-08-29 |
| | | | | | | I've documented space usage and using CLUSTER command Oleg Bartunov | ||
* | The unit for statement_timeout is s/1000, not s/1000000 | Bruce Momjian | 2002-08-29 |
| | | | | Manfred Koizar | ||
* | Back out patch, that was alpha, which I think still needs just -O. | Bruce Momjian | 2002-08-29 |
| | |||
* | Change FreeBSD to use -O2, important for MemSet. | Bruce Momjian | 2002-08-29 |
| | |||
* | Adjust nodeFunctionscan.c to reset transient memory context between calls | Tom Lane | 2002-08-29 |
| | | | | | | | to the table function, thus preventing memory leakage accumulation across calls. This means that SRFs need to be careful to distinguish permanent and local storage; adjust code and documentation accordingly. Patch by Joe Conway, very minor tweaks by Tom Lane. | ||
* | Push down outer qualification clauses into UNION and INTERSECT subqueries. | Tom Lane | 2002-08-29 |
| | | | | Per pghackers discussion from back around 1-August. | ||
* | Cause REINDEX to regard TOAST tables as regular relations, not system | Tom Lane | 2002-08-29 |
| | | | | | tables that need special defenses. I believe this is okay even for TOAST tables that belong to system tables. | ||
* | chkpass_rout returns text so change PG_RETURN_CSTRING to PG_RETURN_TEXT_P. | D'Arcy J.M. Cain | 2002-08-29 |
| | | | | | This is currently a cosmetic difference but I make the change now in case the macros diverge one day. | ||
* | Remove MULTIBYTE | Tatsuo Ishii | 2002-08-29 |
| | |||
* | Remove #ifdef MULTIBYTE per hackers list discussion. | Tatsuo Ishii | 2002-08-29 |
| | |||
* | Rephrase 'Cannot insert into a view' and related messages, per | Tom Lane | 2002-08-29 |
| | | | | pghackers discussion around 31-Jul-02. | ||
* | A few more fixes for the <replaceable>able> fiasco. | Tom Lane | 2002-08-29 |
| | |||
* | update mbregress expected files | Tatsuo Ishii | 2002-08-29 |
| | |||
* | Produce a somewhat-useful error message, namely | Tom Lane | 2002-08-29 |
| | | | | | | ERROR: Cannot display a value of type RECORD rather than a random integer when someone tries to SELECT a tuple value. Per pghackers discussion around 26-May-02. | ||
* | FOUND patch was a bit over-enthusiastic: SQL commands that are not | Tom Lane | 2002-08-29 |
| | | | | | INSERT, UPDATE, or DELETE shouldn't change FOUND. IMHO anyway. Also, try to make documentation a little clearer. | ||
* | Remove support for version-0 FE/BE protocol, per pghackers discussion. | Tom Lane | 2002-08-29 |
| | | | | This breaks support for 6.2 or older client libraries. | ||
* | Fix ruleutils to dump column definition lists for anonymous record types | Tom Lane | 2002-08-29 |
| | | | | defined in the FROM clause. From Joe Conway, with some tweaks. | ||
* | Code review for standalone composite types, query-specified composite | Tom Lane | 2002-08-29 |
| | | | | | types, SRFs. Not happy with memory management yet, but I'll commit these other changes. | ||
* | Improve description of tablefunc. | Tom Lane | 2002-08-28 |
| | |||
* | Initial Spanish translation from Karim Mribti <karim@inlosa.com> | Peter Eisentraut | 2002-08-28 |
| | |||
* | Updates from Dennis Bjorklund | Peter Eisentraut | 2002-08-28 |
| | |||
* | Break up the long usage messages in pg_dump and pg_restore and | Peter Eisentraut | 2002-08-28 |
| | | | | | | unify the wording, to make life easier for translators. from Dennis Bjorklund | ||
* | Remove TIOGA files from CVS current; they remain in repositiry. | Bruce Momjian | 2002-08-28 |
| | |||
* | This trivial patches fixes the error message returned by CREATE INDEX | Bruce Momjian | 2002-08-28 |
| | | | | | | | | | | | | | | | | when it finds an existing relation with the same name as the to-be-created index. Old error message: nconway=# create table foo (a int); CREATE TABLE nconway=# create index foo on foo (a); ERROR: index named "foo" already exists I replaced 'index' with 'relation' in the error message. Neil Conway | ||
* | backend where a statically sized buffer is written to. Most of these | Bruce Momjian | 2002-08-28 |
| | | | | | | | | | | | should be pretty safe in practice, but it's probably better to be safe than sorry. I was actually looking for cases where NAMEDATALEN is assumed to be 32, but only found one. That's fixed too, as well as a few bits of code cleanup. Neil Conway | ||
* | This is a quick patch to fix a crash in pgquery_dictresult() introduced | Bruce Momjian | 2002-08-28 |
| | | | | | | | recently. I just ran into it while running a set of python test scripts, and I'm not sure who the normal maintainer is for interfaces/python. John Nield | ||
* | The following small patch provides a couple of minor updates (against | Bruce Momjian | 2002-08-28 |
| | | | | | | | | | | | | | | CVS HEAD): Amended "strings" regression test. TOAST tests now insert two values with storage set to "external", to exercise properly the TOAST slice routines which fetch only a subset of the chunks. Changed now-misleading comment on AlterTableCreateToastTable in tablecmds.c, because both columns of the index on a toast table are now used. John Gray | ||
* | Add mention of foreign key dependency and SERIAL in 7.2 data restores. | Bruce Momjian | 2002-08-28 |
| | | | | | | Note can probably be removed after a couple of releases. Rod Taylor | ||
* | Dump ALTER DATABASE/USER ... SET ... | Peter Eisentraut | 2002-08-28 |
| | |||
* | Remove: | Bruce Momjian | 2002-08-28 |
| | | | | < * Remove PGPASSWORD because it is insecure on some OS's, in 7.4 | ||
* | Update info about relkind and pg_type entries for composite-types patch. | Tom Lane | 2002-08-28 |
| | |||
* | Allow FOR UPDATE to appear after LIMIT/OFFSET to match MySQL syntax and as | Bruce Momjian | 2002-08-28 |
| | | | | a more logical ordering. | ||
* | Fix compile warning. | Tom Lane | 2002-08-27 |
| | |||
* | Flush output streams before calling pg_dump subprocess. | Peter Eisentraut | 2002-08-27 |
| | |||
* | Add: | Bruce Momjian | 2002-08-27 |
| | | | | > o Add SET SCHEMA | ||
* | Disable use of -c and -a together in pg_dump; they don't make sense together. | Bruce Momjian | 2002-08-27 |
| | |||
* | Bring comments back in sync with code. | Tom Lane | 2002-08-27 |
| | |||
* | Throw error on pg_atoi(''), regression adjustments. | Bruce Momjian | 2002-08-27 |
| | |||
* | Enable locale, so case conversion (identifier processing) and number | Peter Eisentraut | 2002-08-27 |
| | | | | | | formatting (\timing) works correctly. Change "Total time" to "Time" since there is nothing that "total" refers to. Remove non-multibyte code. | ||
* | Reimplement pg_dumpall in C. Currently no change in functionality, | Peter Eisentraut | 2002-08-27 |
| | | | | except that it's more robust, reconnects less often, and is NLS'ed. | ||
* | Add '+' mention in \? help. More clean of \? to do. | Bruce Momjian | 2002-08-27 |
| | |||
* | Make change for pg_locks table. | Bruce Momjian | 2002-08-27 |
| | |||
* | The attached patch implements the password packet length sanity check | Bruce Momjian | 2002-08-27 |
| | | | | | | (using an elog(LOG) ), as well as includes a few more comment fixes. Neil Conway | ||
* | Add: | Bruce Momjian | 2002-08-27 |
| | | | | > * Allow free space map to be auto-sized or warn when it is too small | ||
* | Add error code emails. | Bruce Momjian | 2002-08-27 |
| | |||
* | Add most of Neil Conway's cleanups. | Bruce Momjian | 2002-08-27 |
| | |||
* | More connection timeout cleanups. | Bruce Momjian | 2002-08-27 |
| | |||
* | Cleanup of libpq connection timeout code. | Bruce Momjian | 2002-08-27 |
| |