aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Remove columns pg_index.haskeytype and pg_index.indisclustered. Not used.Bruce Momjian2001-05-14
|
* Use RTLD_GLOBAL flag for dlopen-style dynamic loaders.Peter Eisentraut2001-05-14
|
* Update TODO list.Bruce Momjian2001-05-14
|
* Remove unused tables pg_variable, pg_inheritproc, pg_ipl tables. InitdbBruce Momjian2001-05-14
| | | | forced.
* Current implementation of FOR UPDATE has no hope of working correctlyTom Lane2001-05-14
| | | | | for relations on the nullable side of an OUTER JOIN. For now I think we'd better refuse such queries.
* Fix 'set path' for csh.Bruce Momjian2001-05-14
|
* Update TODO list.Bruce Momjian2001-05-13
|
* > I've been experimenting with pgcrypto 0.3 (distributed withBruce Momjian2001-05-13
| | | | | | | | | | | | | | | | | | | | > Postgres 7.1.0), and I think I've found a bug. > > I compiled Pgcrypto with OpenSSL, using gcc 2.95.4 and > OpenSSL 0.9.6a (the latest Debian 'unstable' packages). > web=> select encode(digest('blah', 'sha1'), 'base64'); > FATAL 1: pg_encode: overflow, encode estimate too small > pqReadData() -- backend closed the channel unexpectedly. > This probably means the backend terminated abnormally > before or while processing the request. > The connection to the server was lost. Attempting reset: Succeeded. > Is this a bug? Can it be fixed? This is a bug alright. And a silly one :) Marko Kreen
* Update to ora2pg 1.2.Bruce Momjian2001-05-13
|
* Update TODO list.Bruce Momjian2001-05-13
|
* Cope with configure arguments that contain spaces.Peter Eisentraut2001-05-13
|
* proisstrict must be assumed FALSE when dumping from a 7.0 database,Tom Lane2001-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 Eisentraut2001-05-12
|
* Modify RelationGetBufferForTuple() so that we only do lseek and lockTom Lane2001-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 stillPeter Eisentraut2001-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 Eisentraut2001-05-12
|
* PL/Python should build portably now, if you can get over the fact thatPeter Eisentraut2001-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 Lane2001-05-12
|
* Make bootstrap debug messages more readable. Clean up some clutter.Peter Eisentraut2001-05-12
|
* PL/Python integration: support in create/droplang, add CVS keywords,Peter Eisentraut2001-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 dumpsPhilip Warner2001-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 Eisentraut2001-05-11
|
* no more Andy Piper toolsPeter Eisentraut2001-05-11
|
* Improve discussion of %TYPE and %ROWTYPE.Tom Lane2001-05-11
|
* Suppress failures in parallel regress tests due to use of same tableTom Lane2001-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 theBruce Momjian2001-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 Momjian2001-05-11
|
* Update FAQ.Bruce Momjian2001-05-11
|
* BSD/OS has new precision, and negative zeros now.Bruce Momjian2001-05-10
|
* Update TODO list.Bruce Momjian2001-05-10
|
* Up version to force initdb to fix regression problems.Bruce Momjian2001-05-10
|
* Update TODO list.Bruce Momjian2001-05-10
|
* Avoid unnecessary lseek() calls by cleanups in md.c. mdfd_lstbcnt wasTom Lane2001-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 Momjian2001-05-10
|
* Update TODO list.Bruce Momjian2001-05-10
|
* Update TODO list.Bruce Momjian2001-05-10
|
* Update TODO list.Bruce Momjian2001-05-10
|
* Add mention in README of Oracle.Bruce Momjian2001-05-10
|
* Add oracle conversion utility ora2pg in /contrib/oracle.Bruce Momjian2001-05-10
|
* Add dbase conversion utility to /contrib.Bruce Momjian2001-05-10
|
* Move disabled message up to a higher makefile.Bruce Momjian2001-05-10
|
* Another add.Bruce Momjian2001-05-09
|
* Add new emails.Bruce Momjian2001-05-09
|
* First cut at making indexscan cost estimates depend on correlationTom Lane2001-05-09
| | | | between index order and table order.
* Update TODO list.Bruce Momjian2001-05-09
|
* This directory contains a module that implements the "Metaphone" code asBruce Momjian2001-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 Eisentraut2001-05-09
| | | | from Oliver Elphick
* Wow, I am getting good at this Makefile stuff. Peter may be OK with it.Bruce Momjian2001-05-09
|
* I think I got the pltcl Makefile unknown rules working properly.Bruce Momjian2001-05-09
|
* I have modifed heap.c so that it won't automatically generate duplicateBruce Momjian2001-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