- 10 Jan, 1997 7 commits
-
-
Bruce Momjian authored
At least the first two should be fixed before the final release of 6.0. 1) There is a mismatch between the type declared in the catalog for the input/output attributes of pg_type and the actual type of values stored in the table. The type of typinput, typoutput, typsend and typreceive are declared oid (26) while the values are regproc (24). The error was there also in previous versions but nobody noticed it until an Assert has been added in ExecEvalVar. The effect is that it is now impossible to replace the typoutput of existing data types with new procs. 2) The identd hba fails after the first time because the data read from the identd socket is not zero-terminated and strlen reports an incorrect length if the stack contains garbage, which usually happens after the first connection has been made. 3) The new initdb wants to create itself the data directory. This implies that the parent directory must be writable by postgres and this may not always be desirable. A better solution would be to allow the directory to be created by root and then filled by initdb. It would also nice to have some reasonable default for PGLIB and PGDATA like the previous version did. This applies also to the postmaster executable.
-
Vadim B. Mikheev authored
-
Vadim B. Mikheev authored
implementation).
-
Vadim B. Mikheev authored
implementation).
-
Vadim B. Mikheev authored
unique index implementation).
-
Vadim B. Mikheev authored
unique index implementation).
-
Vadim B. Mikheev authored
-
- 09 Jan, 1997 1 commit
-
-
Vadim B. Mikheev authored
-
- 08 Jan, 1997 10 commits
-
-
Marc G. Fournier authored
Hi, counting the empty dummy queries in libpq isn't everything. If the backend sends an error, the I returns from the dummies still come. So we must eat them up in any case, not just returning on the occurence of an E reply. Until later, Jan
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Vadim B. Mikheev authored
moved upper.
-
Bryan Henderson authored
-
Bryan Henderson authored
-
Bryan Henderson authored
-
Bryan Henderson authored
-
Marc G. Fournier authored
-
Marc G. Fournier authored
By: tgl@mythos.jpl.nasa.gov
-
- 07 Jan, 1997 1 commit
-
-
Marc G. Fournier authored
- dump Views Submitted by: Keith Parks <emkxp01@mtcc.demon.co.uk>
-
- 06 Jan, 1997 11 commits
-
-
Bryan Henderson authored
-
Bryan Henderson authored
-
Marc G. Fournier authored
exist anymore...
-
Marc G. Fournier authored
-
Marc G. Fournier authored
-
Marc G. Fournier authored
*should* have gone into the ports directory, but hopefully *someday* we'll be able to get rid of that?
-
Marc G. Fournier authored
Submitted by: Ovidiu Predescu <ovidiu@bx.logicnet.ro>
-
Marc G. Fournier authored
-
Marc G. Fournier authored
-
Marc G. Fournier authored
-
Marc G. Fournier authored
Pointed out by: Ovidiu Predescu <ovidiu@bx.logicnet.ro>
-
- 05 Jan, 1997 9 commits
-
-
Marc G. Fournier authored
Submitted by: "Martin J. Laubach" <mjl@wwx.vip.at>
-
Marc G. Fournier authored
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
-
Marc G. Fournier authored
This corrects the newline handling when using the readline library. Submitted by: "Martin J. Laubach" <mjl@wwx.vip.at>
-
Marc G. Fournier authored
First, this is because of dlopen() and dlsym() having a char * in the system prototype. Submitted by: "Martin J. Laubach" <mjl@wwx.vip.at>
-
Marc G. Fournier authored
that the "fix" is wrong...
-
Bryan Henderson authored
-
Bryan Henderson authored
-
Vadim B. Mikheev authored
-
Vadim B. Mikheev authored
buffer leak.
-
- 03 Jan, 1997 1 commit
-
-
Marc G. Fournier authored
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
-