aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* Fix small thinko.D'Arcy J.M. Cain2001-05-15
|
* Fix regression for new oids.Bruce Momjian2001-05-15
|
* Re-add pg_index.indhaskeytype.Bruce Momjian2001-05-15
|
* 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
|
* 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.
* 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.
* 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
|
* 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
|
* BSD/OS has new precision, and negative zeros now.Bruce Momjian2001-05-10
|
* Up version to force initdb to fix regression problems.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.
* Move disabled message up to a higher makefile.Bruce Momjian2001-05-10
|
* First cut at making indexscan cost estimates depend on correlationTom Lane2001-05-09
| | | | between index order and table order.
* 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
* that's just me again, here's normal patch for KOI8_U toBruce Momjian2001-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 typesBruce Momjian2001-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
* More cleanups to generate tcl unknown from Makefile.Bruce Momjian2001-05-09
|
* Make tcl unknown configure from Makefile, not configure.Bruce Momjian2001-05-09
|
* More --enable-pltcl-unknown renames.Bruce Momjian2001-05-09
|
* Change to enable_pltcl_unknown mention.Bruce Momjian2001-05-09
|
* Add TODO file.Bruce Momjian2001-05-09
|
* Add plpython code.Bruce Momjian2001-05-09
|
* Noticed a small bug in the code. Probably been there for some time. NoteBruce Momjian2001-05-09
| | | | | | | that the original code would consider things like UNIX domain sockets are regular files. Gavin Sherry
* This patch adds a new configure option --with-pltcl-unknown whichBruce Momjian2001-05-09
| | | | | | | | | | | | | | | | | | | | | enables pltcl unknown support. Also it adds substituting of tclsh with tclsh that was by configure in pltcl_*mod scripts. For example, On freebsd, tclsh can be called tclsh8.2 or tclsh8.3 depending on installed version of Tcl. After patching files src/pl/tcl/modules/pltcl_listmod src/pl/tcl/modules/pltcl_loadmod src/pl/tcl/modules/pltcl_delmod must be renamed(copied,repocopied) to src/pl/tcl/modules/pltcl_listmod.in src/pl/tcl/modules/pltcl_loadmod.in src/pl/tcl/modules/pltcl_delmod.in seva@sevasoft.kiev.ua