Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |||
1996-12-26 | Added mention of CUSTOM_COPT to file. | Bruce Momjian | |
1996-12-24 | Clarify error message about trying to PQgetvalue() nonexistent row. | Bryan Henderson | |
1996-12-23 | Fix Solaris stuff so it compiles. Thanks Keith Parks. | Bryan Henderson | |
1996-12-23 | Add some quotes so it works on more shells. | Bryan Henderson | |
1996-12-23 | Add cast to quiet compiler warning. | Bryan Henderson | |
1996-12-20 | Fix multiple "C" from backend. | Bruce Momjian | |
1996-12-20 | Remove NOTIFY_PATCH. | Bruce Momjian | |
1996-12-20 | Improve handling of semicolons ending statements. | Bruce Momjian | |
1996-12-20 | Rename parameter. | Bruce Momjian | |
1996-12-19 | Make sure user is running GNU make. | Bryan Henderson | |
1996-12-19 | Add two new comments to pglibtcl... | Marc G. Fournier | |
From: Massimo Dal Zotto <dz@cs.unitn.it> | |||
1996-12-19 | More patches/documentation from: Massimo Dal Zotto <dz@cs.unitn.it> | Marc G. Fournier | |
1996-12-19 | COPY_PATCH... | Marc G. Fournier | |
Submitted by: Massimo Dal Zotto <dz@cs.unitn.it> | |||
1996-12-19 | Add various comments to explain #define's and add a few extra #define's | Marc G. Fournier | |
Submitted by: Massimo Dal Zotto <dz@cs.unitn.it> | |||
1996-12-19 | #ifdef ASYNC_DEBUG various sections of async.c | Marc G. Fournier | |
Submitted by: Massimo Dal Zotto <dz@cs.unitn.it> | |||
1996-12-17 | Make GROUP BY work with aliases, ORDER BY with column numbers | Bruce Momjian | |
1996-12-16 | Put sys/types.h before sys/timeb.h so Ultrix compiles. | Bryan Henderson | |
1996-12-15 | Remove __P macro usage so it compiles without cdefs.h. | Bryan Henderson | |
1996-12-15 | Make compile on AIX, Alpha OSF. Thanks Darren King, Igor Notanzon. | Bryan Henderson | |
1996-12-14 | Fix over fix: JMP_BUF gone away and we have SIGJMP_BUF now. | Vadim B. Mikheev | |
Excuse me. | |||
1996-12-14 | if (settings->opt.fieldSep); | Vadim B. Mikheev | |
^ - deleted free(settings->opt.fieldSep); | |||
1996-12-14 | Avoiding: | Vadim B. Mikheev | |
cc1: warnings being treated as errors datum.c: In function `DatumGetSize': datum.c:57: warning: unsigned value >= 0 is always 1 gmake[3]: *** [datum.o] Error 1 There was: if (byVal) { if (len >= 0 && len <= sizeof(Datum)) { but len has type Size (unsigned int) and so now there is: if (byVal) { if (len <= sizeof(Datum)) { | |||
1996-12-14 | const register ... --> register const ... | Vadim B. Mikheev | |
1996-12-14 | Avoiding | Vadim B. Mikheev | |
cc1: warnings being treated as errors exc.c: In function 'ExcRaise': exc.c:186: warning: passing arg 1 of 'Longjmp' from incompatible pointer type gmake[3]: *** [exc.o] Error 1 Now we have: #if defined (JMP_BUF) longjmp(efp->context, 1); #else siglongjmp(efp->context, 1); #endif | |||
1996-12-14 | Avoiding | Vadim B. Mikheev | |
cc1: warnings being treated as errors transsup.c: In function `TransBlockGetLastTransactionIdStatus': transsup.c:122: warning: unsigned value >= 0 is always 1 gmake[3]: *** [transsup.o] Error 1 ... | |||
1996-12-14 | Unuseful tupDesc = CreateTupleDesc(attr_count, attr); in CopyFrom | Vadim B. Mikheev | |
is eliminated (now I can copy 2000000-table from file without memmory exhausting). | |||
1996-12-13 | Clean up. Get rid of tabs and overly long lines. | Bryan Henderson | |
1996-12-13 | Small regression and doc patch | Bruce Momjian | |
1996-12-11 | Postgres95 to PostgreSQL. | Bruce Momjian | |
1996-12-11 | Require seimcolons between statements. | Bruce Momjian | |
1996-12-11 | Use "Oid" type where applicable and %ud instead of %d. Thanks Darren King. | Bryan Henderson | |
1996-12-11 | Rename postgres95 to PostgreSQL. Add comment for SELECT NULL | Bruce Momjian | |
1996-12-10 | Fix bug: libpq clients (which include libpq-fe.h) won't compile. | Bryan Henderson | |
1996-12-10 | sigjmp_buf/jmp_buf is backwards, so backend doesn't compile. | Bryan Henderson | |
1996-12-10 | Fix bug: libpq clients (which include libpq-fe.h) won't compile. | Bryan Henderson | |
Plus: sigjmp_buf/jmp_buf is backwards, so backend doesn't compile. | |||
1996-12-10 | Add empty "dep:" target. | Bryan Henderson | |
1996-12-10 | No change...just a test to make sure I didn't screw anything up | Marc G. Fournier | |
1996-12-09 | Monitor has been obsoleted by psql. | Bryan Henderson | |