summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
1999-05-26Allow pg_dump -v display proper table/sequence count display.Bruce Momjian
1999-05-26Make functions static or NOT_USED as appropriate.Bruce Momjian
1999-05-26Give BEOS a chance ...Marc G. Fournier
1999-05-25Another pgindent run. Sorry folks.Bruce Momjian
1999-05-25Make 0x007f -> (unsigned)0x7f to make pgindent happy.Bruce Momjian
1999-05-25Get rid of page-level locking in btree-s.Vadim B. Mikheev
BT_READ/BT_WRITE are BUFFER_LOCK_SHARE/BUFFER_LOCK_EXCLUSIVE now. Also get rid of #define BT_VERSION_1 - we use version 1 as default for near two years now.
1999-05-25Get rid of page-level locking in btree-s.Vadim B. Mikheev
LockBuffer is used to acquire read/write access to index pages. Pages are released before leaving index internals.
1999-05-25pgindent run over code.Bruce Momjian
1999-05-25*** empty log message ***Michael Meskes
1999-05-25Bugfix - Range table entries that are unused after rewriting shouldJan Wieck
not be marked inFromCl any longer. Otherwise the planner gets confused and joins over them where in fact it does not have to. Adjust hasSubLinks now with a recursive lookup - could be wrong in multi action rules because parse state isn't reset correctly and all actions in the rule are marked hasSubLinks if one of them has. Jan
1999-05-25Fixed bug in rules event qualification output.Jan Wieck
Jan
1999-05-25FIx for 0.0.0.0/0 output as 00/0.Bruce Momjian
1999-05-23Do not assign output columns to junk attributes created fromTom Lane
GROUP BY or ORDER BY expressions in INSERT ... SELECT.
1999-05-23Detect case of invalid use of GROUP BY when there are noTom Lane
aggregate functions, as in select a, b from foo group by a; The ungrouped reference to b is not kosher, but formerly we neglected to check this unless there was an aggregate function somewhere in the query.
1999-05-23Remove more -B parameters not needed.Bruce Momjian
1999-05-23Remove -B from wisconsin test.Bruce Momjian
1999-05-23Fix tuple chain moving bug found by "Hiroshi Inoue" <Inoue@tpf.co.jp>.Vadim B. Mikheev
1999-05-23Here it is. Remove or rename the current interfaces/libpq++ and untarBruce Momjian
this file in interfaces/ It will all need to be checked in. I used the char *rcsid[] method for cvs ids so it can be strings | grep'd to find version numbers. The new version for the library is 3.0. Run configure from src/ to create the Makefile and it should be good to go. I did minimal documentation references in the README, I'll see if I can get something to Tom Lockhart rather quickly. Vince.
1999-05-22Update commentary in sample GEQO config file.Tom Lane
1999-05-22Reduce default GEQO 'effort' setting to MEDIUM always.Tom Lane
This agrees with the documentation and seems like a more useful default anyhow ...
1999-05-22Modify aset.c logic so that blocks requested from malloc getTom Lane
bigger the more space is used in an allocset. This reduces the malloc overhead very substantially on queries that need lots of memory.
1999-05-22Improve error message from failed LOAD command (includeTom Lane
kernel's error description when file is not accessible).
1999-05-22Allow GEQO effort to be specified numerically, as well asTom Lane
symbolic LOW/MEDIUM/HIGH values --- needed for experiments with other effort levels ...
1999-05-22Modify backend switch parsing to prevent 'insecure' switchesTom Lane
from being accepted when they are passed from client connection request. Get rid of a couple that no longer do anything (like -P).
1999-05-22Fix for select 1;select 2 without trailing semi.Bruce Momjian
1999-05-22Fix for DEFAULT ''.Bruce Momjian
1999-05-22Make postgres prompt backend>, and remove PARSEDEBUG.Bruce Momjian
1999-05-21Change perl Makefile test.Bruce Momjian
1999-05-21Disable fix. Didn't work.Bruce Momjian
1999-05-21Fix typo and attempt default fix.Bruce Momjian
1999-05-21*** empty log message ***Michael Meskes
1999-05-21Treat {} as special regex too.Bruce Momjian
1999-05-21add retest, a regex testing programTatsuo Ishii
1999-05-21Fix problem with | in ~ comparison using index.Bruce Momjian
1999-05-21Report strerror() rather than errno in low-level backend libpqTom Lane
failure messages.
1999-05-21Minor updates to libpq documentation.Tom Lane
1999-05-20Removed the automatic installation of built procedural languagesJan Wieck
from initdb again. Added two new commands, createlang and destroylang to bin. These hopefully end this damned mklang.sql discussion. Jan
1999-05-20Generate distinct error messages for trigger function not foundTom Lane
and trigger function found but returns wrong type.
1999-05-20Fixed shift/reduce conflictJan Wieck
SelectStmt and CursorStmt tried to parse FOR UPDATE ... / FOR READ ONLY. Cursor now checks that it is read only by looking at forUpdate of Query. SelectStmt handles FOR READ ONLY too. Jan
1999-05-20overwriting a large object now worksTatsuo Ishii
1999-05-20Very minor improvements in CREATE OPERATOR docs.Tom Lane
1999-05-20Doco updates for change to handling of INTERNAL functionTom Lane
entries (prosrc is now name of C-level function).
1999-05-19Minor improvements to postmaster/backend man pages.Tom Lane
1999-05-19Dec ALpha patchesBruce Momjian
1999-05-19Dec alpha patches.Bruce Momjian
1999-05-19Remove 4096 string limited key on block sizeBruce Momjian
1999-05-19Upgrade to PyGreSQL (2.4)Bruce Momjian
1999-05-19Bring python up to date ...Marc G. Fournier
From: D'Arcy J.M. Cain <darcy@druid.net>
1999-05-18Add Aggref and ArrayRef to the set of node types that transformExprTom Lane
will pass through rather than spitting up. This is necessary to handle cases where coerce_type causes a subexpression to be retransformed, as in SELECT count(*) + 1.0 FROM table
1999-05-18Forgot the CHANGELOGPeter Mount