aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Re-add pg_index.indisclustered in a minimalist way. Also fix BSDiBruce Momjian2001-05-15
| | | | dynamic linker change. #include must be before #ifdef test.
* Some badly needed documentation about EvalPlanQual.Tom Lane2001-05-15
|
* EvalPlanQual was thoroughly broken for concurrent update/delete on inheritanceTom Lane2001-05-15
| | | | | | | | trees (mostly my fault). Repair. Also fix long-standing bug in ExecReplace: after recomputing a concurrently updated tuple, we must recheck constraints. Make EvalPlanQual leak memory with somewhat less enthusiasm than before, although plugging leaks fully will require more changes than I care to risk in a dot-release.
* Let's stick to the documented number of digits in CATVERSION, shall we?Tom Lane2001-05-15
|
* Update regression for new oids, some now two smaller.Bruce Momjian2001-05-14
|
* Remove linking hacks now that dynloader is fixed.Peter Eisentraut2001-05-14
|
* Small include file fix for pg_variabie.hBruce Momjian2001-05-14
|
* Update catalog version for fix.Bruce Momjian2001-05-14
|
* Pg_varaiable removal cleanup found from regression.Bruce Momjian2001-05-14
|
* 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
|