aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* Reduce default GEQO 'effort' setting to MEDIUM always.Tom Lane1999-05-22
| | | | | This agrees with the documentation and seems like a more useful default anyhow ...
* Modify aset.c logic so that blocks requested from malloc getTom Lane1999-05-22
| | | | | bigger the more space is used in an allocset. This reduces the malloc overhead very substantially on queries that need lots of memory.
* Improve error message from failed LOAD command (includeTom Lane1999-05-22
| | | | kernel's error description when file is not accessible).
* Allow GEQO effort to be specified numerically, as well asTom Lane1999-05-22
| | | | | symbolic LOW/MEDIUM/HIGH values --- needed for experiments with other effort levels ...
* Modify backend switch parsing to prevent 'insecure' switchesTom Lane1999-05-22
| | | | | from being accepted when they are passed from client connection request. Get rid of a couple that no longer do anything (like -P).
* Fix for select 1;select 2 without trailing semi.Bruce Momjian1999-05-22
|
* Fix for DEFAULT ''.Bruce Momjian1999-05-22
|
* Make postgres prompt backend>, and remove PARSEDEBUG.Bruce Momjian1999-05-22
|
* Change perl Makefile test.Bruce Momjian1999-05-21
|
* Disable fix. Didn't work.Bruce Momjian1999-05-21
|
* Fix typo and attempt default fix.Bruce Momjian1999-05-21
|
* *** empty log message ***Michael Meskes1999-05-21
|
* Treat {} as special regex too.Bruce Momjian1999-05-21
|
* add retest, a regex testing programTatsuo Ishii1999-05-21
|
* Fix problem with | in ~ comparison using index.Bruce Momjian1999-05-21
|
* Report strerror() rather than errno in low-level backend libpqTom Lane1999-05-21
| | | | failure messages.
* Minor updates to libpq documentation.Tom Lane1999-05-21
|
* Removed the automatic installation of built procedural languagesJan Wieck1999-05-20
| | | | | | | | | from initdb again. Added two new commands, createlang and destroylang to bin. These hopefully end this damned mklang.sql discussion. Jan
* Generate distinct error messages for trigger function not foundTom Lane1999-05-20
| | | | and trigger function found but returns wrong type.
* Fixed shift/reduce conflictJan Wieck1999-05-20
| | | | | | | | 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
* overwriting a large object now worksTatsuo Ishii1999-05-20
|
* Very minor improvements in CREATE OPERATOR docs.Tom Lane1999-05-20
|
* Doco updates for change to handling of INTERNAL functionTom Lane1999-05-20
| | | | entries (prosrc is now name of C-level function).
* Minor improvements to postmaster/backend man pages.Tom Lane1999-05-19
|
* Dec ALpha patchesBruce Momjian1999-05-19
|
* Dec alpha patches.Bruce Momjian1999-05-19
|
* Remove 4096 string limited key on block sizeBruce Momjian1999-05-19
|
* Upgrade to PyGreSQL (2.4)Bruce Momjian1999-05-19
|
* Bring python up to date ...Marc G. Fournier1999-05-19
| | | | From: D'Arcy J.M. Cain <darcy@druid.net>
* Add Aggref and ArrayRef to the set of node types that transformExprTom Lane1999-05-18
| | | | | | 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
* Forgot the CHANGELOGPeter Mount1999-05-18
|
* Internationalisation of error messagesPeter Mount1999-05-18
|
* Now that hashjoin is reliable for large joins (knock on wood),Tom Lane1999-05-18
| | | | | | remove optimizer's arbitrary limit on how large a join it will use hashing for. (The limit was too large to prevent the problems we'd been seeing, anyway...)
* Remove no-longer-used fields in Hash and HashJoin nodes.Tom Lane1999-05-18
|
* Rewrite hash join to use simple linked lists instead of aTom Lane1999-05-18
| | | | | | | fixed-size hashtable. This should prevent 'hashtable out of memory' errors, unless you really do run out of memory. Note: target size for hashtable is now taken from -S postmaster switch, not -B, since it is local memory in the backend rather than shared memory.
* Transactions in ImageViewerPeter Mount1999-05-18
|
* *** empty log message ***Michael Meskes1999-05-18
|
* Fixed Internationalization of error messages.Peter Mount1999-05-17
|
* Minor bug fixes. Replaced DateStyle support with ISO.Peter Mount1999-05-17
|
* All works on linux now by my tests and regression(with patch below).Bruce Momjian1999-05-17
| | | | | ALTER TABLE RENAME with extents. Ole Gjerde
* Skip junk nodes when comparing UNION target list lengths.Bruce Momjian1999-05-17
|
* Change resjunk to a boolean.Bruce Momjian1999-05-17
|
* Fixed latest regression diff's by omitting viewowner in SELECT from pg_views.Jan Wieck1999-05-17
| | | | Jan
* This is actually more of a fundamental problem with mdtruncate. ItBruce Momjian1999-05-17
| | | | | | | | | | | | looks like someone just didn't add support for multiple segments for truncation. The following patch seems to do the right thing, for me at least. It passed my tests, my data looks right(no data that shouldn't be in there) and regression is ok. Ole Gjerde
* Add pythonBruce Momjian1999-05-17
|
* Re-add python.Bruce Momjian1999-05-17
|
* Updates for 6.5.Bruce Momjian1999-05-17
|
* Prior patch added 2 more characters to string allocatedTom Lane1999-05-17
| | | | for SERIAL column's constraint, but forgot to increase space palloc'd...
* SELECT * error message fix.Bruce Momjian1999-05-17
|
* Apply freebsd specific patches dealign with ELF system from FreeBSD'sMarc G. Fournier1999-05-17
| | | | ports collection ...