summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
1996-12-26Remove use of "bool", which user program may not have defined.Bryan Henderson
1996-12-26pq/signal() portability patch. Also psql copy prompt fix.Bruce Momjian
1996-12-26Fix syntax of \copy in \? display.Bryan Henderson
1996-12-26Added needed prototype.Bruce Momjian
Bruce Momjian
1996-12-26Removal of unused CppConcat defines.Bruce Momjian
Bruce Momjian
1996-12-26Note the => changes to == after a connect and stays that way on subsequentBruce Momjian
database changes. To fix, apply the following patch:- Keith Parks.
1996-12-26Added include files needed for getpid prototype.Bruce Momjian
Bruce Momjian
1996-12-26Change %ud to %uBruce Momjian
Darren King.
1996-12-26In file: .../src/backend/postmaster/postmaster.c I found 3 leaks andBruce Momjian
probably a bug. To find code added/modifyied, search "Fixed". Gianluca Puggelli
1996-12-26I have this annoying habit (among others) of puttingBruce 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-26In src/backend/catalog/pg_operator.c in OperatorDef, thereBruce Momjian
are three SearchSysCacheTuple(PRONAME,...) calls that use three different macros to convert the typeId array of Oids. Darren King
1996-12-26Removal 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-26Added mention of CUSTOM_COPT to file.Bruce Momjian
1996-12-24Clarify error message about trying to PQgetvalue() nonexistent row.Bryan Henderson
1996-12-23Fix Solaris stuff so it compiles. Thanks Keith Parks.Bryan Henderson
1996-12-23Add some quotes so it works on more shells.Bryan Henderson
1996-12-23Add cast to quiet compiler warning.Bryan Henderson
1996-12-20Fix multiple "C" from backend.Bruce Momjian
1996-12-20Remove NOTIFY_PATCH.Bruce Momjian
1996-12-20Improve handling of semicolons ending statements.Bruce Momjian
1996-12-20Rename parameter.Bruce Momjian
1996-12-19Make sure user is running GNU make.Bryan Henderson
1996-12-19Add two new comments to pglibtcl...Marc G. Fournier
From: Massimo Dal Zotto <dz@cs.unitn.it>
1996-12-19More patches/documentation from: Massimo Dal Zotto <dz@cs.unitn.it>Marc G. Fournier
1996-12-19COPY_PATCH...Marc G. Fournier
Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
1996-12-19Add various comments to explain #define's and add a few extra #define'sMarc G. Fournier
Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
1996-12-19#ifdef ASYNC_DEBUG various sections of async.cMarc G. Fournier
Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
1996-12-17Make GROUP BY work with aliases, ORDER BY with column numbersBruce Momjian
1996-12-16Put sys/types.h before sys/timeb.h so Ultrix compiles.Bryan Henderson
1996-12-15Remove __P macro usage so it compiles without cdefs.h.Bryan Henderson
1996-12-15Make compile on AIX, Alpha OSF. Thanks Darren King, Igor Notanzon.Bryan Henderson
1996-12-14Fix 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-14Avoiding: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-14const register ... --> register const ...Vadim B. Mikheev
1996-12-14AvoidingVadim 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-14AvoidingVadim 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-14Unuseful tupDesc = CreateTupleDesc(attr_count, attr); in CopyFromVadim B. Mikheev
is eliminated (now I can copy 2000000-table from file without memmory exhausting).
1996-12-13Clean up. Get rid of tabs and overly long lines.Bryan Henderson
1996-12-13Small regression and doc patchBruce Momjian
1996-12-11Postgres95 to PostgreSQL.Bruce Momjian
1996-12-11Require seimcolons between statements.Bruce Momjian
1996-12-11Use "Oid" type where applicable and %ud instead of %d. Thanks Darren King.Bryan Henderson
1996-12-11Rename postgres95 to PostgreSQL. Add comment for SELECT NULLBruce Momjian
1996-12-10Fix bug: libpq clients (which include libpq-fe.h) won't compile.Bryan Henderson
1996-12-10sigjmp_buf/jmp_buf is backwards, so backend doesn't compile.Bryan Henderson
1996-12-10Fix 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-10Add empty "dep:" target.Bryan Henderson
1996-12-10No change...just a test to make sure I didn't screw anything upMarc G. Fournier
1996-12-09Monitor has been obsoleted by psql.Bryan Henderson