Age | Commit message (Collapse) | Author | |
---|---|---|---|
1999-02-28 | From: Michael Meskes <Michael_Meskes@topmail.de> | Marc G. Fournier | |
+ + Tue Feb 23 17:32:25 CET 1999 + + - Other than a struct a union itself cannot be specified as variable. + + Fri Feb 26 07:18:25 CET 1999 + + - Synced preproc.y with gram.y. + + Sat Feb 27 20:30:03 CET 1999 + + - Added automatic allocating for NULL pointers. | |||
1999-02-28 | Fix pg_operator entries for mergejoinable operators with different left and | Tom Lane | |
right side data types. Correct the opr_sanity regress test to check these entries properly. NOTE that opr_sanity will now fail until you do an initdb! | |||
1999-02-28 | Fix executor to work correctly with mergejoins where left and | Tom Lane | |
right sides have different data types. | |||
1999-02-27 | Remove recipe.o from Makefile ... dead code not quite dead enough, | Tom Lane | |
it seems. | |||
1999-02-27 | Put back T_RecipeStmt, since the system doesn't actually build | Tom Lane | |
without it. Sloppy, sloppy. | |||
1999-02-27 | Someone forgot to commit gram.c and parse.h after his latest | Tom Lane | |
set of updates to gram.y. | |||
1999-02-25 | Remove reference to recipe.h. | Bruce Momjian | |
1999-02-24 | Fix problem with selectivity error in added columns with ALTER TABLE. | Bruce Momjian | |
Move files to deadcode. | |||
1999-02-24 | update comments | Bruce Momjian | |
1999-02-24 | Thank you for the advice. I concluded that current inet code has a | Bruce Momjian | |
portability problem. Included patches should be applied to both current and 6.4 tree. I have tested on LinuxPPC, FreeBSD and Solaris 2.6. Now the inet regression tests on these platforms are all happy. --- Tatsuo Ishii | |||
1999-02-23 | From: Michael Meskes <Michael_Meskes@topmail.de> | Marc G. Fournier | |
+ + Son Feb 21 14:10:47 CET 1999 + + - Fixed variable detection in libecpg. + + Mon Feb 22 19:47:45 CET 1999 + + - Added 'at <db_connection>' option to all commands it is apllicable + to. Due to changing the API of some libecpg functions this + requires me to increase the major version number. + - Synced pgc.l with scan.l. + - Added support for unions. + - Set library version to 3.0.0 + - Set ecpg version to 3.0.0 | |||
1999-02-23 | Add parameters to function calls to pass back table qualifications. | Thomas G. Lockhart | |
1999-02-23 | Add a few other parser-only nodes for debugging help. | Thomas G. Lockhart | |
Define the JoinExpr node. | |||
1999-02-23 | Define JoinExpr structure for outer join syntax. | Thomas G. Lockhart | |
Clean up comments in execnodes.h. | |||
1999-02-23 | Clean up error messages. | Thomas G. Lockhart | |
1999-02-23 | Do a better job of selecting candidates among functions | Thomas G. Lockhart | |
when no exact match. Clean up elog error messages. | |||
1999-02-23 | Include some new code for outer joins. Disabled by default, but enable by | Thomas G. Lockhart | |
including the following in your Makefile.custom: CFLAGS+= -DENABLE_OUTER_JOINS -DEXEC_MERGEJOINDEBUG | |||
1999-02-23 | Put in explicit checks for implicit index name lengths. | Thomas G. Lockhart | |
Put in hooks for outer joins by passing a few parameters back and forth in function calls. May not be close to working yet. | |||
1999-02-23 | Modify the outer join placeholder code with something closer to working | Thomas G. Lockhart | |
code. Works here, but not completely implemented past this point. | |||
1999-02-23 | Bring debugging print statement declarations up to date. | Thomas G. Lockhart | |
Comment-out the #undef default declarations to allow the parameters to be set on the compiler command line. | |||
1999-02-23 | Add constants for outer join states in executor. | Thomas G. Lockhart | |
1999-02-23 | Fix typos in comments. | Thomas G. Lockhart | |
1999-02-23 | Add first code to help with outer joins. | Thomas G. Lockhart | |
Enable by defining CFLAGS+= -DENABLE_OUTER_JOINS -DEXEC_MERGEJOINDEBUG in your Makefile.custom | |||
1999-02-23 | Fix typo in comment. | Thomas G. Lockhart | |
1999-02-23 | Update error messages with more consistant format. | Thomas G. Lockhart | |
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... |