| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 1997-01-05 | final fix for shared library under BSD44_derived | Marc G. Fournier | |
| Submitted by: "Martin J. Laubach" <mjl@wwx.vip.at> | |||
| 1997-01-05 | Shared library fixes for BSD44_Derived port | Marc G. Fournier | |
| Submitted by: "Martin J. Laubach" <mjl@wwx.vip.at> NOTE: The following patch I was uncertain of, but applied it...will end up testing the compile on my machine later tonight anyway, but if anyone knows why this *shouldn't* have been done, please change it. (CC -> LD) *************** *** 61,68 **** ../backend/lib/dllist.o: $(MAKE) -C ../backend/lib dllist.o ! libpq.so.1: $(OBJS) ! $(CC) $(LDFLAGS) -shared $(OBJS) -o libpq.so.1 c.h: ../include/c.h rm -f c.h --- 66,73 ---- ../backend/lib/dllist.o: $(MAKE) -C ../backend/lib dllist.o ! $(shlib): $(OBJS) ! $(LD) $(LDFLAGS) -shared $(OBJS) -o $(shlib) c.h: ../include/c.h rm -f c.h | |||
| 1997-01-05 | Fixes: | Marc G. Fournier | |
| This corrects the newline handling when using the readline library. Submitted by: "Martin J. Laubach" <mjl@wwx.vip.at> | |||
| 1997-01-05 | Fixes: | Marc G. Fournier | |
| First, this is because of dlopen() and dlsym() having a char * in the system prototype. Submitted by: "Martin J. Laubach" <mjl@wwx.vip.at> | |||
| 1997-01-05 | Just reviewed what I changed as far a dlopen/etc are concerned, and determined | Marc G. Fournier | |
| that the "fix" is wrong... | |||
| 1997-01-05 | Silence compiler warnings, fix error in complex compare function. | Bryan Henderson | |
| 1997-01-05 | Standardize all LDADD to LD_ADD. | Bryan Henderson | |
| 1997-01-05 | Closing opened indices. | Vadim B. Mikheev | |
| 1997-01-05 | Releasing empty root page in _bt_endpoint () to avoid | Vadim B. Mikheev | |
| buffer leak. | |||
| 1997-01-03 | someone added pg_listen and pg_notifies to libpgtcl. But first | Marc G. Fournier | |
| these routines try to use the old pointer casting stuff to get the connection id, second the notification hash table should be part of the cliendData. Otherwise, one interpreter might eat up the notifies for another one. Please apply the patch below to the current 6.0 tree. Submitted by: wieck@sapserv.debis.de | |||
| 1997-01-03 | documentation updating to 6.0 release | Bruce Momjian | |
| 1997-01-03 | FreeBSD doesn't require the dl{open,close,sym,error} functions, as they are | Marc G. Fournier | |
| already included in the system libraries. Used if !defined(__FreeBSD__) to single FreeBSD out from the other BSD44 derived OSs | |||
| 1997-01-02 | fix for previous fix | Bruce Momjian | |
| 1997-01-02 | psql paren. with \r fix. | Bruce Momjian | |
| 1997-01-02 | ALTER TABLE (text) fix | Bruce Momjian | |
| 1997-01-01 | Fix for SELECT INTO ... GROUP/ORDER BY where table already exists unlink error. | Bruce Momjian | |
| 1996-12-31 | Make error messages more explicit, PQtrace() output more readable. | Bryan Henderson | |
| 1996-12-31 | Rename Makefile to GNUmakefile to catch people using other makes. | Bryan Henderson | |
| 1996-12-31 | Fixed realloc for increasing tempRels list. | Vadim B. Mikheev | |
| 1996-12-31 | ReleaseTmpRelBuffers () releases buffers in LOCAL buffer pool now | Vadim B. Mikheev | |
| (if rd_islocal is true). | |||
| 1996-12-30 | Put $(CURSES_LIB) in Makefile.global to replace similar thing in psql/Makefile. | Bryan Henderson | |
| 1996-12-30 | Check that PQendcopy succeeded. Issue error message if not. | Bryan Henderson | |
| 1996-12-29 | explain change | Bruce Momjian | |
| 1996-12-29 | typo fix | Bruce Momjian | |
| 1996-12-29 | New EXPLAIN manual page. | Bruce Momjian | |
| 1996-12-29 | Changed EXPLAIN option names. | Bruce Momjian | |
| 1996-12-29 | Improved EXPLAIN option handling. | Bruce Momjian | |
| 1996-12-28 | Fix expected regression output. | Bruce Momjian | |
| 1996-12-28 | Fixed errors in create statement. | Bruce Momjian | |
| 1996-12-28 | Fixed error where = should be ==. | Bruce Momjian | |
| 1996-12-28 | Fixed Assert check where ! should be !=. | Bruce Momjian | |
| 1996-12-28 | Here is a bug fix and some spelling changes for the complex number tutorial | Bruce Momjian | |
| code. I have also written a complete complex number package based on this tutorial; I will submit this as a contribution soon. Is there a particular format for contributed tar files? I have a C source file, two SQL files, and a Makefile. Thomas Lockhart | |||
| 1996-12-28 | Here's the final set of patches to 6.0 (sup'd on 27/12/96) that allow a full | Bruce Momjian | |
| gmake of the code without interruption. There's also some tidy-up of the MAXPATHLEN stuff based on the assumption that all supported platforms have MAXPATHLEN defined in <sys/param.h>. (The only unknowns for the above are AIX and IRIX5.) | |||
| 1996-12-28 | Patch for copy from stdin. | Bruce Momjian | |
| 1996-12-27 | Add messages to assist in problem diagnosis. Eliminate lines > 80 characters. | Bryan Henderson | |
| 1996-12-27 | Add asserts to check for file descriptor ring corruption. | Bryan Henderson | |
| 1996-12-27 | There was JMP_BUF defined in config.h. And SIGJMP_BUF later. | Vadim B. Mikheev | |
| And now - JMP_BUF again. Is it enough, folks ? Fixed again: cc1: warnings being treated as errors exc.c: In function 'ExcRaise': exc.c:187: warning: passing arg 1 of 'Longjmp' from incompatible pointer type gmake[3]: *** [exc.o] Error 1 | |||
| 1996-12-26 | Remove use of "bool", which user program may not have defined. This .h file | Bryan Henderson | |
| gets included by libpq-fe.h, and thus is part of the API. | |||
| 1996-12-26 | Remove use of "bool", which user program may not have defined. | Bryan Henderson | |
| 1996-12-26 | pq/signal() portability patch. Also psql copy prompt fix. | Bruce Momjian | |
| 1996-12-26 | Fix syntax of \copy in \? display. | Bryan Henderson | |
| 1996-12-26 | Added needed prototype. | Bruce Momjian | |
| Bruce Momjian | |||
| 1996-12-26 | Removal of unused CppConcat defines. | Bruce Momjian | |
| Bruce Momjian | |||
| 1996-12-26 | Note the => changes to == after a connect and stays that way on subsequent | Bruce Momjian | |
| database changes. To fix, apply the following patch:- Keith Parks. | |||
| 1996-12-26 | Added include files needed for getpid prototype. | Bruce Momjian | |
| Bruce Momjian | |||
| 1996-12-26 | Change %ud to %u | Bruce Momjian | |
| Darren King. | |||
| 1996-12-26 | In file: .../src/backend/postmaster/postmaster.c I found 3 leaks and | Bruce Momjian | |
| probably a bug. To find code added/modifyied, search "Fixed". Gianluca Puggelli | |||
| 1996-12-26 | I have this annoying habit (among others) of putting | Bruce Momjian | |
| %ud in a printf format strings instead of just %u. There were three occurances of this in catalog_utils.c, two in parser.c and one in rewriteSupport.c in the oid patch that I submitted and was applied. They won't crash anything, but the error messages will have a 'd' after the Oid. Annoying, but none are db-threatening. Sorry about that folks...I'll be more careful in the future... Darren King | |||
| 1996-12-26 | In src/backend/catalog/pg_operator.c in OperatorDef, there | Bruce Momjian | |
| are three SearchSysCacheTuple(PRONAME,...) calls that use three different macros to convert the typeId array of Oids. Darren King | |||
| 1996-12-26 | Removal of CppConcat from indexam.c. | Bruce Momjian | |
| As an example I sent a bug-report on 26 Nov to tell that the fix included below is necessary to compile pg95-current on Ultrix with Digital's standard C compiler c89. In fact I think that this fix is needed for any C compiler sticking very close the standard, see my discussion in the original bug report. Erik Bertelsen | |||
