Age | Commit message (Collapse) | Author | |
---|---|---|---|
1999-02-23 | Add many new test cases. | Thomas G. Lockhart | |
1999-02-23 | Remove non-portable queries by replacing getpgusername() with a constant | Thomas G. Lockhart | |
string. | |||
1999-02-23 | First tests using JOIN syntax. | Thomas G. Lockhart | |
1999-02-23 | Rearrange order of subdirectory creation to help generate parse.h | Thomas G. Lockhart | |
file early enough to use in nodes/. Try to be more complete for rules on generating parse.h, but it still does not work any better than before. Should be able to make correctly if parser/gram.y is updated even without a "make clean" but so far not there yet. | |||
1999-02-22 | comments cleanup. | Bruce Momjian | |
1999-02-22 | comment cleanup. | Bruce Momjian | |
1999-02-22 | ifdef out append(). | Bruce Momjian | |
1999-02-22 | Ok. I found an align problem in lobj that might not appear other than | Bruce Momjian | |
Solaris/sparc. Please apply included patches to src/backend/storage/large_object/inv_api.c and try again. (These are Tatsuo Ishii | |||
1999-02-22 | Repair some pretty serious problems in dynahash.c and | Tom Lane | |
shared memory space allocation. It's a wonder we have not seen bug reports traceable to this area ... it's quite clear that the routine dir_realloc() has never worked correctly, for example. | |||
1999-02-22 | more cleanup | Bruce Momjian | |
1999-02-22 | Final optimizer cleanups. | Bruce Momjian | |
1999-02-22 | rename pgsql to postgres in regression. | Bruce Momjian | |
1999-02-22 | change pgsql to postgres | Bruce Momjian | |
1999-02-22 | fix compile problem. | Bruce Momjian | |
1999-02-21 | From: Tatsuo Ishii <t-ishii@sra.co.jp> | Marc G. Fournier | |
Ok. I made patches replacing all of "#if FALSE" or "#if 0" to "#ifdef NOT_USED" for current. I have tested these patches in that the postgres binaries are identical. | |||
1999-02-21 | Document postmaster's -N switch. | Tom Lane | |
1999-02-21 | From: Michael Meskes <Michael_Meskes@topmail.de> | Marc G. Fournier | |
+ + Fri Feb 19 21:40:14 CET 1999 + + - Fixed bug in libecpg that caused it to start transactions only for + the first connection. + - Set library version to 2.7.1 | |||
1999-02-21 | pathkeys.c cleanup. | Bruce Momjian | |
1999-02-21 | Rearrange handling of MAXBACKENDS a little bit. The default setting | Tom Lane | |
of MAXBACKENDS is now 1024, since all it's costing is about 32 bytes of memory per array slot. configure's --with-maxbackends switch now controls DEF_MAXBACKENDS which is simply the default value of the postmaster's -N switch. Thus, the out-of-the-box configuration will still limit you to 64 backends, but you can go up to 1024 backends simply by restarting the postmaster with a different -N switch --- no rebuild required. | |||
1999-02-20 | pathkeys fixes | Bruce Momjian | |
1999-02-20 | Update pathkeys comparison function. | Bruce Momjian | |
1999-02-20 | update pathkey description. | Bruce Momjian | |
1999-02-20 | add pathkeys description. | Bruce Momjian | |
1999-02-20 | another rename of optimizer | Bruce Momjian | |
1999-02-20 | From: Michael Meskes <Michael_Meskes@topmail.de> | Marc G. Fournier | |
See Changes file... | |||
1999-02-19 | OOPS ... Perl5 interface to PQsetdbLogin was actually | Tom Lane | |
calling PQsetdb ... | |||
1999-02-19 | Reorder startup ops so that if preallocation of semas fails, | Tom Lane | |
postmaster will release whatever it did get before dying. | |||
1999-02-19 | Allow maximum number of backends to be set at configure time | Tom Lane | |
(--with-maxbackends). Add a postmaster switch (-N backends) that allows the limit to be reduced at postmaster start time. (You can't increase it, sorry to say, because there are still some fixed-size arrays.) Grab the number of semaphores indicated by min(MAXBACKENDS, -N) at postmaster startup, so that this particular form of bogus configuration is exposed immediately rather than under heavy load. | |||
1999-02-19 | optimizer cleanup | Bruce Momjian | |
1999-02-19 | optimizer cleanup | Bruce Momjian | |
1999-02-18 | rename optimizer file name | Bruce Momjian | |
1999-02-18 | Enable bushy and right-hand queries by default. | Bruce Momjian | |
1999-02-18 | Enable bushy plans by default. | Bruce Momjian | |
1999-02-18 | optimizer cleanup | Bruce Momjian | |
1999-02-18 | more optimizer cleanups | Bruce Momjian | |
1999-02-18 | Produce a more specific error message when backend sees EOF on | Tom Lane | |
client connection. | |||
1999-02-18 | Fix bushy plans. Cleanup. | Bruce Momjian | |
1999-02-16 | Re-enable bushy plans. Vadim want them. | Bruce Momjian | |
1999-02-15 | Update optimizer readme. | Bruce Momjian | |
1999-02-15 | regprocin should accept '-' signifying InvalidOid, for | Tom Lane | |
symmetry with regprocout. | |||
1999-02-15 | rename | Bruce Momjian | |
1999-02-15 | optimizer rename | Bruce Momjian | |
1999-02-15 | optimizer rename | Bruce Momjian | |
1999-02-15 | otherrels is now unjoined_rels | Bruce Momjian | |
1999-02-15 | optimizer rename | Bruce Momjian | |
1999-02-15 | Remove duplicate geqo functions, and more optimizer cleanup | Bruce Momjian | |
1999-02-15 | Replace non-idiomatic nconc(x, lcons(y, NIL)) with lappend(x, y). | Tom Lane | |
1999-02-15 | Fix a number of places that made faulty assumptions about | Tom Lane | |
what is_opclause will accept. | |||
1999-02-14 | Fix optimizer coredump with unary-operator WHERE clauses. | Tom Lane | |
A test case is: create table linetab (x line); select * from linetab where ?| x; which coredumps in 6.4.2 and current sources. | |||
1999-02-14 | optimizer cleanup. | Bruce Momjian | |