Bruce Momjian
8c72118527
Documentatoin update
1996-12-26 22:15:15 +00:00
Bruce Momjian
e8f43854ac
pq/signal() portability patch. Also psql copy prompt fix.
1996-12-26 22:08:34 +00:00
Bryan Henderson
7f00f11c01
Fix syntax of \copy in \? display.
1996-12-26 20:56:40 +00:00
Bruce Momjian
9643e8ba37
Added needed prototype.
...
Bruce Momjian
1996-12-26 17:53:40 +00:00
Bruce Momjian
0cb22cb7ef
Removal of unused CppConcat defines.
...
Bruce Momjian
1996-12-26 17:53:24 +00:00
Bruce Momjian
b1765f4637
Note the => changes to == after a connect and stays that way on subsequent
...
database changes.
To fix, apply the following patch:-
Keith Parks.
1996-12-26 17:52:46 +00:00
Bruce Momjian
89b2807170
Added include files needed for getpid prototype.
...
Bruce Momjian
1996-12-26 17:50:26 +00:00
Bruce Momjian
d419e11cb6
Change %ud to %u
...
Darren King.
1996-12-26 17:49:56 +00:00
Bruce Momjian
0681513693
In file: .../src/backend/postmaster/postmaster.c I found 3 leaks and
...
probably a bug.
To find code added/modifyied, search "Fixed".
Gianluca Puggelli
1996-12-26 17:49:05 +00:00
Bruce Momjian
28a08fd4ac
I have this annoying habit (among others) of putting
...
%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 17:47:42 +00:00
Bruce Momjian
c5aaba2c34
In src/backend/catalog/pg_operator.c in OperatorDef, there
...
are three SearchSysCacheTuple(PRONAME,...) calls that use three
different macros to convert the typeId array of Oids.
Darren King
1996-12-26 17:46:07 +00:00
Bruce Momjian
df0eee9963
Removal of CppConcat from indexam.c.
...
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 17:44:46 +00:00
Bruce Momjian
0fde972e25
Added mention of CUSTOM_COPT to file.
1996-12-26 17:39:58 +00:00
Bryan Henderson
9b55904647
Clarify error message about trying to PQgetvalue() nonexistent row.
1996-12-24 09:03:16 +00:00
Bryan Henderson
ab90c18d12
Fix Solaris stuff so it compiles. Thanks Keith Parks.
1996-12-23 10:16:54 +00:00
Bryan Henderson
d9e10180ee
Add some quotes so it works on more shells.
1996-12-23 08:50:27 +00:00
Bryan Henderson
d6c06feb18
Add cast to quiet compiler warning.
1996-12-23 08:39:27 +00:00
Bruce Momjian
4540a8bd5c
Fix multiple "C" from backend.
1996-12-20 20:34:38 +00:00
Bruce Momjian
a952d67296
Remove NOTIFY_PATCH.
1996-12-20 20:33:46 +00:00
Bruce Momjian
4371756f16
Improve handling of semicolons ending statements.
1996-12-20 20:33:12 +00:00
Bruce Momjian
231e1e70d8
Rename parameter.
1996-12-20 20:31:31 +00:00
Bryan Henderson
64e45b0ebc
Make sure user is running GNU make.
1996-12-19 08:03:46 +00:00
Marc G. Fournier
56e8243d22
Add two new comments to pglibtcl...
...
From: Massimo Dal Zotto <dz@cs.unitn.it>
1996-12-19 05:02:51 +00:00
Marc G. Fournier
194ed4efe5
More patches/documentation from: Massimo Dal Zotto <dz@cs.unitn.it>
1996-12-19 05:01:17 +00:00
Marc G. Fournier
07c8d9f0f3
COPY_PATCH...
...
Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
1996-12-19 04:58:24 +00:00
Marc G. Fournier
dc97a7b90e
Add various comments to explain #define's and add a few extra #define's
...
Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
1996-12-19 04:56:35 +00:00
Marc G. Fournier
f0bcb1762d
#ifdef ASYNC_DEBUG various sections of async.c
...
Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
1996-12-19 04:54:56 +00:00
Bruce Momjian
db7a90f1d9
Make GROUP BY work with aliases, ORDER BY with column numbers
1996-12-17 01:53:43 +00:00
Bryan Henderson
ec105b6026
Put sys/types.h before sys/timeb.h so Ultrix compiles.
1996-12-16 03:34:52 +00:00
Bryan Henderson
fa9c0fff36
Remove __P macro usage so it compiles without cdefs.h.
1996-12-15 09:21:37 +00:00
Bryan Henderson
9fc7250d3a
Make compile on AIX, Alpha OSF. Thanks Darren King, Igor Notanzon.
1996-12-15 09:05:53 +00:00
Vadim B. Mikheev
290d3b5198
Fix over fix: JMP_BUF gone away and we have SIGJMP_BUF now.
...
Excuse me.
1996-12-14 08:26:34 +00:00
Vadim B. Mikheev
cbb131570e
if (settings->opt.fieldSep);
...
^ - deleted
free(settings->opt.fieldSep);
1996-12-14 08:20:18 +00:00
Vadim B. Mikheev
4556a50cf8
Avoiding:
...
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 07:56:05 +00:00
Vadim B. Mikheev
14ad435294
const register ... --> register const ...
1996-12-14 06:08:14 +00:00
Vadim B. Mikheev
25eb9e2a66
Avoiding
...
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 05:55:27 +00:00
Vadim B. Mikheev
02ba3cf871
Avoiding
...
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 05:20:39 +00:00
Vadim B. Mikheev
b555822fed
Unuseful tupDesc = CreateTupleDesc(attr_count, attr); in CopyFrom
...
is eliminated (now I can copy 2000000-table from file without memmory
exhausting).
1996-12-14 04:58:20 +00:00
Bryan Henderson
255363f859
Clean up. Get rid of tabs and overly long lines.
1996-12-13 09:25:08 +00:00
Bruce Momjian
ea8b5196ff
Small regression and doc patch
1996-12-13 02:39:00 +00:00
Bruce Momjian
1b929d1749
Postgres95 to PostgreSQL.
1996-12-11 22:58:16 +00:00
Bruce Momjian
7af262d2a7
Require seimcolons between statements.
1996-12-11 22:55:53 +00:00
Bryan Henderson
7439ba64b1
Use "Oid" type where applicable and %ud instead of %d. Thanks Darren King.
1996-12-11 03:18:12 +00:00
Bruce Momjian
9b41da6ce4
Rename postgres95 to PostgreSQL. Add comment for SELECT NULL
1996-12-11 00:28:15 +00:00
Bryan Henderson
7f36a2a718
Fix bug: libpq clients (which include libpq-fe.h) won't compile.
1996-12-10 07:05:12 +00:00
Bryan Henderson
2697c27923
sigjmp_buf/jmp_buf is backwards, so backend doesn't compile.
1996-12-10 07:04:22 +00:00
Bryan Henderson
7492fb165f
Fix bug: libpq clients (which include libpq-fe.h) won't compile.
...
Plus: sigjmp_buf/jmp_buf is backwards, so backend doesn't compile.
1996-12-10 07:03:43 +00:00
Bryan Henderson
41b3674754
Add empty "dep:" target.
1996-12-10 03:40:23 +00:00
Marc G. Fournier
0861594cb3
No change...just a test to make sure I didn't screw anything up
1996-12-10 03:03:36 +00:00
Bryan Henderson
9e60c1711d
Monitor has been obsoleted by psql.
1996-12-09 01:55:51 +00:00