Age | Commit message (Collapse) | Author | |
---|---|---|---|
1999-05-25 | FIx for 0.0.0.0/0 output as 00/0. | Bruce Momjian | |
1999-05-23 | Do not assign output columns to junk attributes created from | Tom Lane | |
GROUP BY or ORDER BY expressions in INSERT ... SELECT. | |||
1999-05-23 | Detect case of invalid use of GROUP BY when there are no | Tom 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-23 | Remove more -B parameters not needed. | Bruce Momjian | |
1999-05-23 | Remove -B from wisconsin test. | Bruce Momjian | |
1999-05-23 | Fix tuple chain moving bug found by "Hiroshi Inoue" <Inoue@tpf.co.jp>. | Vadim B. Mikheev | |
1999-05-23 | Here it is. Remove or rename the current interfaces/libpq++ and untar | Bruce 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-22 | Update commentary in sample GEQO config file. | Tom Lane | |
1999-05-22 | Reduce default GEQO 'effort' setting to MEDIUM always. | Tom Lane | |
This agrees with the documentation and seems like a more useful default anyhow ... | |||
1999-05-22 | Modify aset.c logic so that blocks requested from malloc get | Tom 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-22 | Improve error message from failed LOAD command (include | Tom Lane | |
kernel's error description when file is not accessible). | |||
1999-05-22 | Allow GEQO effort to be specified numerically, as well as | Tom Lane | |
symbolic LOW/MEDIUM/HIGH values --- needed for experiments with other effort levels ... | |||
1999-05-22 | Modify backend switch parsing to prevent 'insecure' switches | Tom 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-22 | Fix for select 1;select 2 without trailing semi. | Bruce Momjian | |
1999-05-22 | Fix for DEFAULT ''. | Bruce Momjian | |
1999-05-22 | Make postgres prompt backend>, and remove PARSEDEBUG. | Bruce Momjian | |
1999-05-21 | Change perl Makefile test. | Bruce Momjian | |
1999-05-21 | Disable fix. Didn't work. | Bruce Momjian | |
1999-05-21 | Fix typo and attempt default fix. | Bruce Momjian | |
1999-05-21 | *** empty log message *** | Michael Meskes | |
1999-05-21 | Treat {} as special regex too. | Bruce Momjian | |
1999-05-21 | add retest, a regex testing program | Tatsuo Ishii | |
1999-05-21 | Fix problem with | in ~ comparison using index. | Bruce Momjian | |
1999-05-21 | Report strerror() rather than errno in low-level backend libpq | Tom Lane | |
failure messages. | |||
1999-05-21 | Minor updates to libpq documentation. | Tom Lane | |
1999-05-20 | Removed the automatic installation of built procedural languages | Jan Wieck | |
from initdb again. Added two new commands, createlang and destroylang to bin. These hopefully end this damned mklang.sql discussion. Jan | |||
1999-05-20 | Generate distinct error messages for trigger function not found | Tom Lane | |
and trigger function found but returns wrong type. | |||
1999-05-20 | Fixed shift/reduce conflict | Jan 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-20 | overwriting a large object now works | Tatsuo Ishii | |
1999-05-20 | Very minor improvements in CREATE OPERATOR docs. | Tom Lane | |
1999-05-20 | Doco updates for change to handling of INTERNAL function | Tom Lane | |
entries (prosrc is now name of C-level function). | |||
1999-05-19 | Minor improvements to postmaster/backend man pages. | Tom Lane | |
1999-05-19 | Dec ALpha patches | Bruce Momjian | |
1999-05-19 | Dec alpha patches. | Bruce Momjian | |
1999-05-19 | Remove 4096 string limited key on block size | Bruce Momjian | |
1999-05-19 | Upgrade to PyGreSQL (2.4) | Bruce Momjian | |
1999-05-19 | Bring python up to date ... | Marc G. Fournier | |
From: D'Arcy J.M. Cain <darcy@druid.net> | |||
1999-05-18 | Add Aggref and ArrayRef to the set of node types that transformExpr | Tom 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-18 | Forgot the CHANGELOG | Peter Mount | |
1999-05-18 | Internationalisation of error messages | Peter Mount | |
1999-05-18 | Now that hashjoin is reliable for large joins (knock on wood), | Tom Lane | |
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...) | |||
1999-05-18 | Remove no-longer-used fields in Hash and HashJoin nodes. | Tom Lane | |
1999-05-18 | Rewrite hash join to use simple linked lists instead of a | Tom Lane | |
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. | |||
1999-05-18 | Transactions in ImageViewer | Peter Mount | |
1999-05-18 | *** empty log message *** | Michael Meskes | |
1999-05-17 | Fixed Internationalization of error messages. | Peter Mount | |
1999-05-17 | Minor bug fixes. Replaced DateStyle support with ISO. | Peter Mount | |
1999-05-17 | All works on linux now by my tests and regression(with patch below). | Bruce Momjian | |
ALTER TABLE RENAME with extents. Ole Gjerde | |||
1999-05-17 | Skip junk nodes when comparing UNION target list lengths. | Bruce Momjian | |
1999-05-17 | Change resjunk to a boolean. | Bruce Momjian | |