Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Cope with configure arguments that contain spaces. | Peter Eisentraut | 2001-05-13 |
| | |||
* | proisstrict must be assumed FALSE when dumping from a 7.0 database, | Tom Lane | 2001-05-12 |
| | | | | | | not TRUE. Otherwise we break pl call handler functions. fmgr_oldstyle will take care of making sure the semantics are the same for C functions. Clean up some slightly grotty coding in 7.0 pg_class reading, also. | ||
* | Add index. Only some parts of the manual set have index entries so far... | Peter Eisentraut | 2001-05-12 |
| | |||
* | Modify RelationGetBufferForTuple() so that we only do lseek and lock | Tom Lane | 2001-05-12 |
| | | | | | | | | | | | when we need to move to a new page; as long as we can insert the new tuple on the same page as before, we only need LockBuffer and not the expensive stuff. Also, twiddle bufmgr interfaces to avoid redundant lseeks in RelationGetBufferForTuple and BufferAlloc. Successive inserts now require one lseek per page added, rather than one per tuple with several additional ones at each page boundary as happened before. Lock contention when multiple backends are inserting in same table is also greatly reduced. | ||
* | Add provisions for using strdup replacement in the places that still | Peter Eisentraut | 2001-05-12 |
| | | | | | | needed it. from our fearless Ultrix porter, Alexander Klimov <ask@wisdom.weizmann.ac.il> | ||
* | Add command '\pset footer' to psql to turn off default "(x rows)" footer. | Peter Eisentraut | 2001-05-12 |
| | |||
* | PL/Python should build portably now, if you can get over the fact that | Peter Eisentraut | 2001-05-12 |
| | | | | | there's no shared libpython. Test suite works as well. Also, add some documentation. | ||
* | Add comment to explain need for bizarre-looking coding in HandleSlashCmds. | Tom Lane | 2001-05-12 |
| | |||
* | Make bootstrap debug messages more readable. Clean up some clutter. | Peter Eisentraut | 2001-05-12 |
| | |||
* | PL/Python integration: support in create/droplang, add CVS keywords, | Peter Eisentraut | 2001-05-12 |
| | | | | | remove useless files, beat some sense into Makefile. For me it builds and sort of runs, so it's a start. | ||
* | - Don't dump COMMENTs in data-only dumps | Philip Warner | 2001-05-12 |
| | | | | | | | | | - Fix view dumping SQL for V7.0 - Fix bug when getting view oid with long view names - Treat SEQUENCE SET TOC entries as data entries rather than schema entries. - Make allowance for data entries that did not have a data dumper routine (eg. SEQUENCE SET) | ||
* | Cleanups of pltcl unknown thingy. | Peter Eisentraut | 2001-05-11 |
| | |||
* | no more Andy Piper tools | Peter Eisentraut | 2001-05-11 |
| | |||
* | Improve discussion of %TYPE and %ROWTYPE. | Tom Lane | 2001-05-11 |
| | |||
* | Suppress failures in parallel regress tests due to use of same table | Tom Lane | 2001-05-11 |
| | | | | | name in two different tests. This solution does not meet with universal approval, so it may get changed later ... | ||
* | Stamp CVS as 7.2. Update all interface version numbers. This is the | Bruce Momjian | 2001-05-11 |
| | | | | | time to do it, not during beta because people are using this stuff in production sometimes. | ||
* | Stamp for 7.1.2. Ready when you are... | Bruce Momjian | 2001-05-11 |
| | |||
* | Update FAQ. | Bruce Momjian | 2001-05-11 |
| | |||
* | BSD/OS has new precision, and negative zeros now. | Bruce Momjian | 2001-05-10 |
| | |||
* | Update TODO list. | Bruce Momjian | 2001-05-10 |
| | |||
* | Up version to force initdb to fix regression problems. | Bruce Momjian | 2001-05-10 |
| | |||
* | Update TODO list. | Bruce Momjian | 2001-05-10 |
| | |||
* | Avoid unnecessary lseek() calls by cleanups in md.c. mdfd_lstbcnt was | Tom Lane | 2001-05-10 |
| | | | | | | | | | not being consulted anywhere, so remove it and remove the _mdnblocks() calls that were used to set it. Change smgrextend interface to pass in the target block number (ie, current file length) --- the caller always knows this already, having already done smgrnblocks(), so it's silly to do it over again inside mdextend. Net result: extension of a file now takes one lseek(SEEK_END) and a write(), not three lseeks and a write. | ||
* | Update TODO list. | Bruce Momjian | 2001-05-10 |
| | |||
* | Update TODO list. | Bruce Momjian | 2001-05-10 |
| | |||
* | Update TODO list. | Bruce Momjian | 2001-05-10 |
| | |||
* | Update TODO list. | Bruce Momjian | 2001-05-10 |
| | |||
* | Add mention in README of Oracle. | Bruce Momjian | 2001-05-10 |
| | |||
* | Add oracle conversion utility ora2pg in /contrib/oracle. | Bruce Momjian | 2001-05-10 |
| | |||
* | Add dbase conversion utility to /contrib. | Bruce Momjian | 2001-05-10 |
| | |||
* | Move disabled message up to a higher makefile. | Bruce Momjian | 2001-05-10 |
| | |||
* | Another add. | Bruce Momjian | 2001-05-09 |
| | |||
* | Add new emails. | Bruce Momjian | 2001-05-09 |
| | |||
* | First cut at making indexscan cost estimates depend on correlation | Tom Lane | 2001-05-09 |
| | | | | between index order and table order. | ||
* | Update TODO list. | Bruce Momjian | 2001-05-09 |
| | |||
* | This directory contains a module that implements the "Metaphone" code as | Bruce Momjian | 2001-05-09 |
| | | | | | | | | | | | | | a PostgreSQL user-defined function. The Metaphone system is a method of matching similar sounding names (or any words) to the same code. Metaphone was invented by Lawrence Philips as an improvement to the popular name-hashing routine, Soundex. This metaphone code is from Michael Kuhn, and is detailed at http://aspell.sourceforge.net/metaphone/metaphone-kuhn.txt Joel Burton | ||
* | Add --echo option to createlang and droplang. | Peter Eisentraut | 2001-05-09 |
| | | | | from Oliver Elphick | ||
* | Wow, I am getting good at this Makefile stuff. Peter may be OK with it. | Bruce Momjian | 2001-05-09 |
| | |||
* | I think I got the pltcl Makefile unknown rules working properly. | Bruce Momjian | 2001-05-09 |
| | |||
* | I have modifed heap.c so that it won't automatically generate duplicate | Bruce Momjian | 2001-05-09 |
| | | | | | | | | | | | | | | constraint names. > > A reasonable interpretation of DROP CONSTRAINT "foo" is to drop *all* > > constraints named "foo" on the target table. > > Then it should probably be a good thing to avoid the automatic > generation of > duplicate names? I might take a look at that, actually... > Christopher Kings-Lynne | ||
* | that's just me again, here's normal patch for KOI8_U to | Bruce Momjian | 2001-05-09 |
| | | | | | | | | | | | | | jdbc/Connection.java Andy P.S. in Connection.java if encoding=="WIN" then dbEncoding is set to "Cp1252". What if it's Cyrillic "WIN"? Than it should be "Cp1251". Is there any way to fix that without making different "WIN" encodings in PostgreSQL? Andy Rysin | ||
* | This patch should catch cases where the types | Bruce Momjian | 2001-05-09 |
| | | | | | | | | in referencing and referenced columns of an fk constraint aren't comparable using '=' at constraint definition time rather than insert/update time. Stephan Szabo | ||
* | Update TODO list. | Bruce Momjian | 2001-05-09 |
| | |||
* | More cleanups to generate tcl unknown from Makefile. | Bruce Momjian | 2001-05-09 |
| | |||
* | autoconf | Bruce Momjian | 2001-05-09 |
| | |||
* | Make tcl unknown configure from Makefile, not configure. | Bruce Momjian | 2001-05-09 |
| | |||
* | More --enable-pltcl-unknown renames. | Bruce Momjian | 2001-05-09 |
| | |||
* | Change to enable_pltcl_unknown mention. | Bruce Momjian | 2001-05-09 |
| | |||
* | Add TODO file. | Bruce Momjian | 2001-05-09 |
| | |||
* | Add plpython code. | Bruce Momjian | 2001-05-09 |
| |