aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Remove support for version-0 FE/BE protocol, per pghackers discussion.Tom Lane2002-08-29
| | | | This breaks support for 6.2 or older client libraries.
* Fix ruleutils to dump column definition lists for anonymous record typesTom Lane2002-08-29
| | | | defined in the FROM clause. From Joe Conway, with some tweaks.
* Code review for standalone composite types, query-specified compositeTom Lane2002-08-29
| | | | | types, SRFs. Not happy with memory management yet, but I'll commit these other changes.
* Improve description of tablefunc.Tom Lane2002-08-28
|
* Initial Spanish translation from Karim Mribti <karim@inlosa.com>Peter Eisentraut2002-08-28
|
* Updates from Dennis BjorklundPeter Eisentraut2002-08-28
|
* Break up the long usage messages in pg_dump and pg_restore andPeter Eisentraut2002-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 Momjian2002-08-28
|
* This trivial patches fixes the error message returned by CREATE INDEXBruce Momjian2002-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 theseBruce Momjian2002-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() introducedBruce Momjian2002-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 (againstBruce Momjian2002-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 Momjian2002-08-28
| | | | | | Note can probably be removed after a couple of releases. Rod Taylor
* Dump ALTER DATABASE/USER ... SET ...Peter Eisentraut2002-08-28
|
* Remove:Bruce Momjian2002-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 Lane2002-08-28
|
* Allow FOR UPDATE to appear after LIMIT/OFFSET to match MySQL syntax and asBruce Momjian2002-08-28
| | | | a more logical ordering.
* Fix compile warning.Tom Lane2002-08-27
|
* Flush output streams before calling pg_dump subprocess.Peter Eisentraut2002-08-27
|
* Add:Bruce Momjian2002-08-27
| | | | > o Add SET SCHEMA
* Disable use of -c and -a together in pg_dump; they don't make sense together.Bruce Momjian2002-08-27
|
* Bring comments back in sync with code.Tom Lane2002-08-27
|
* Throw error on pg_atoi(''), regression adjustments.Bruce Momjian2002-08-27
|
* Enable locale, so case conversion (identifier processing) and numberPeter Eisentraut2002-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 Eisentraut2002-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 Momjian2002-08-27
|
* Make change for pg_locks table.Bruce Momjian2002-08-27
|
* The attached patch implements the password packet length sanity checkBruce Momjian2002-08-27
| | | | | | (using an elog(LOG) ), as well as includes a few more comment fixes. Neil Conway
* Add:Bruce Momjian2002-08-27
| | | | > * Allow free space map to be auto-sized or warn when it is too small
* Add error code emails.Bruce Momjian2002-08-27
|
* Add most of Neil Conway's cleanups.Bruce Momjian2002-08-27
|
* More connection timeout cleanups.Bruce Momjian2002-08-27
|
* Cleanup of libpq connection timeout code.Bruce Momjian2002-08-27
|
* Add:Bruce Momjian2002-08-27
| | | | | > * Allow REINDEX to rebuild all indexes, remove /contrib/reindex > o Allow CLUSTER to cluster all tables, remove clusterdb
* Add fsm sizes.Bruce Momjian2002-08-27
|
* PREPARE/EXECUTE statements. Patch by Neil Conway, some kibitzingTom Lane2002-08-27
| | | | from Tom Lane.
* Done:Bruce Momjian2002-08-27
| | | | > o -Cluster all tables at once using pg_index.indisclustered set during
* Add to mmap discussion.Bruce Momjian2002-08-27
|
* This patch updates the lock listing code to use Joe Conway's newBruce Momjian2002-08-27
| | | | | | | | 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
* This is a 2 line patch to src/interfaces/perl5/GNUMakefile that fixesBruce Momjian2002-08-27
| | | | | | | | | 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
* This patches replaces a few more usages of strcpy() and sprintf() whenBruce Momjian2002-08-27
| | | | | | | | 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
* Cleanup of SGMLBruce Momjian2002-08-27
|
* I attach a little patch to make CLUSTER set and reset the indisclusteredBruce Momjian2002-08-27
| | | | | | | | | | | | | | | | | 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
* Add to skip list in check_gucBruce Momjian2002-08-27
|
* Comment cleanup.Bruce Momjian2002-08-27
|
* Script cleanups.Bruce Momjian2002-08-27
|
* Clean up script.Bruce Momjian2002-08-27
|
* Add check_guc utility to compare guc.c and postgresql.conf.sample.Bruce Momjian2002-08-27
|
* Fix units in postgresql.conf.Bruce Momjian2002-08-27
|
* Add OS X link line example for external functions.Bruce Momjian2002-08-26
|