- Nov 16, 1999
-
-
Tom Lane authored
Warn_restart has been set by the backend main loop. This means that elog(ERROR) or elog(FATAL) in the postmaster or during backend startup now have well-defined behavior: proc_exit() rather than coredump. In the case of elog() inside the postmaster, I think that proc_exit() is probably not enough --- don't we want our child backends to be forced to quit too? But I don't understand Vadim's recent changes in this area, so I'll leave it to him to look over and tweak if needed.
-
- Oct 25, 1999
-
-
Tom Lane authored
eliminating some wildly inconsistent coding in various parts of the system. I set MAXPGPATH = 1024 in config.h.in. If anyone is really convinced that there ought to be a configure-time test to set the value, go right ahead ... but I think it's a waste of time.
-
- Oct 06, 1999
-
-
Vadim B. Mikheev authored
First step in cleaning up backend initialization code. Fix for FATAL: now FATAL is ERROR + exit.
-
- Sep 11, 1999
-
-
Tom Lane authored
This change seems necessary in conjunction with long queries, and it cleans up some bogosity in connection with long EXPLAIN texts anyway. Note that current libpq will accept any length error message (at least until it runs out of memory); prior versions have a limit of 8K, but will cleanly discard excess error text, so there shouldn't be any big compatibility problems with old clients.
-
- Jul 17, 1999
-
-
Bruce Momjian authored
-
- Jul 16, 1999
-
-
Bruce Momjian authored
-
- May 25, 1999
-
-
Bruce Momjian authored
-
- May 10, 1999
-
-
Bruce Momjian authored
real affect now.
-
- Apr 25, 1999
- Apr 20, 1999
-
-
Tom Lane authored
instead of doing a kill(self, SIGQUIT) and expecting the signal handler to do it. Also, clean up inconsistent definitions of the sigjmp buffer in the several files that already referenced it.
-
- Apr 16, 1999
-
-
Tatsuo Ishii authored
MyProcPid global variable is set to 0 when postgres starts as a command (not as a backend daemon). This leads issuing SIGQUIT to the process group, not the process itself. As a result, parent sh gets core dumped in the Wisconsin benchmark test.
-
- Feb 14, 1999
-
-
Bruce Momjian authored
-
- Jan 23, 1999
-
-
Tom Lane authored
buffering lost by not going through stdio anymore for client I/O.
-
- Jan 11, 1999
-
-
Marc G. Fournier authored
From: Magnus Hagander <mha@sollentuna.net> Here is a first patch to cleanup the backend side of libpq. This patch removes all external dependencies on the "Pfin" and "Pfout" that are declared in pqcomm.h. These variables are also changed to "static" to make sure. Almost all the change is in the handler of the "copy" command - most other areas of the backend already used the correct functions. This change will make the way for cleanup of the internal stuff there - now that all the functions accessing the file descriptors are confined to a single directory.
-
- Jan 01, 1999
-
-
Bruce Momjian authored
with some extra ugly sprintfs fixed. More work in this area is needed still. Göran Thyni
-
- Sep 01, 1998
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- Aug 31, 1998
-
-
Bruce Momjian authored
-
- Aug 25, 1998
-
-
Marc G. Fournier authored
From: Massimo Dal Zotto <dz@cs.unitn.it> > tprintf.patch > > tprintf.patch > > adds functions and macros which implement a conditional trace package > with the ability to change flags and numeric options of running > backends at runtime. > Options/flags can be specified in the command line and/or read from > the file pg_options in the data directory.
-
- Jul 08, 1998
-
-
Bruce Momjian authored
-
- Jun 27, 1998
-
-
Bruce Momjian authored
shmem_exit to replace exitpg().
-
- Jun 15, 1998
-
-
Bruce Momjian authored
-
- May 19, 1998
-
-
Bruce Momjian authored
to bool's.
-
- Feb 26, 1998
-
-
Bruce Momjian authored
-
- Feb 11, 1998
-
-
Bruce Momjian authored
-
- Jan 25, 1998
-
-
Bruce Momjian authored
-
- Jan 07, 1998
-
-
Bruce Momjian authored
-
- Jan 05, 1998
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- Nov 09, 1997
-
-
Marc G. Fournier authored
The attached patch makes elog() write the message to stderr if there is no frontend to talk to.
-
- Sep 08, 1997
-
-
Bruce Momjian authored
Another PGINDENT run that changes variable indenting and case label indenting. Also static variable indenting.
-
- Sep 07, 1997
-
-
Bruce Momjian authored
-
- Aug 13, 1997
-
-
Bruce Momjian authored
-
- Jul 24, 1997
-
-
Bruce Momjian authored
Various compile errors concerning overflow due to shifts, unsigned, and bad prototypes, from Solaris, from Diab Jerius
-
- Mar 18, 1997
-
-
Marc G. Fournier authored
According to man page under FreeBSD for sys_errlist[], strerror() should be used instead...not sure if this will break other systems, so only changing two files for now, and we'll see what "errors" it turns up
-
Marc G. Fournier authored
-
- Mar 12, 1997
-
-
Marc G. Fournier authored
Subject: [HACKERS] linux/alpha patches These patches lay the groundwork for a Linux/Alpha port. The port doesn't actually work unless you tweak the linker to put all the pointers in the first 32 bits of the address space, but it's at least a start. It implements the test-and-set instruction in Alpha assembly, and also fixes a lot of pointer-to-integer conversions, which is probably good anyway.
-
- Feb 14, 1997
-
-
Bruce Momjian authored
-