summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2000-12-05I've just seen what happens when the MEMORY_CONTEXT_CHECKING code firesTom Lane
an error at end of transaction ... and I did *not* like it. Reduce ERROR to NOTICE so that this situation doesn't cause an infinite loop.
2000-12-05In SELECT FOR UPDATE, silently ignore null CTIDs, rather than generatingTom Lane
an error as we used to. In an OUTER JOIN scenario, retrieving a null CTID from one of the input relations is entirely expected. We still want to lock the input rows from the other relations, so just ignore the null and keep going.
2000-12-05From Stephan Szabo:Tom Lane
I believe this should fix the issue that Philip Warner noticed about the check for unique constraints meeting the referenced keys of a foreign key constraint allowing the specification of a subset of a foreign key instead of rejecting it. I also added tests for a base case of this to the foreign key and alter table tests and patches for expected output.
2000-12-05Add regress test case for INSERT ... SELECT in rules.Tom Lane
2000-12-05Repair breakage of rules containing INSERT ... SELECT actions, per bugTom Lane
report from Joel Burton. Turns out that my simple idea of turning the SELECT into a subquery does not interact well *at all* with the way the rule rewriter works. Really what we need to make INSERT ... SELECT work cleanly is to decouple targetlists from rangetables: an INSERT ... SELECT wants to have two levels of targetlist but only one rangetable. No time for that for 7.1, however, so I've inserted some ugly hacks to make the rewriter know explicitly about the structure of INSERT ... SELECT queries. Ugh :-(
2000-12-04Fix bogus makefiles ... these didn't build on platforms that are stickyREL7_1_BETATom Lane
about being given accurate references to referenced libraries ...
2000-12-04Seems to have been missed in GetPgUserName updates.Tom Lane
2000-12-04Eliminate some of the more blatant platform-dependencies ... it builds here ↵Tom Lane
now, anyway ...
2000-12-04Seems like make clean or make distclean should clean out contribTom Lane
directories too, not only src and doc.
2000-12-03correctionsPeter Eisentraut
2000-12-03Ensure that all uses of <ctype.h> functions are applied to unsigned-charTom Lane
values, whether the local char type is signed or not. This is necessary for portability. Per discussion on pghackers around 9/16/00.
2000-12-03Update for new tests. These are extrapolations and will need to be confirmedTom Lane
correct on the relevant platforms.
2000-12-03Update for new tests.Tom Lane
2000-12-03Don't use 'private' as a parameter name in visible headers ... makes C++Tom Lane
very unhappy ...
2000-12-03Fix counting of lines in scripts with 'copy from stdin'.Peter Eisentraut
2000-12-03Repair usage of the OVERLAPS operator.Thomas G. Lockhart
Allow some operator-like tokens to be used as function names. Flesh out support for time, timetz, and interval operators and interactions. Regression tests pass, but non-reference-platform horology test results will need to be updated.
2000-12-03Clarify the allowed length of the text data type.Thomas G. Lockhart
2000-12-03Convert files from DOS format to normal text.Thomas G. Lockhart
2000-12-03Support IBM S/390. Patches from Neale Ferguson@softwareAG-usa.com.Thomas G. Lockhart
2000-12-03Final(?) GUC clean-up. Update psql tab completion.Peter Eisentraut
2000-12-03Disable elog(ERROR|FATAL) in signal handlers inVadim B. Mikheev
critical sections of code.
2000-12-02Avoid memory leakage during regular COPY when outputting toasted values.Tom Lane
COPY BINARY is still broken for toasted data, however.
2000-12-02Avoid repeated detoasting (and possible memory leaks) when processingTom Lane
a toasted datum in VACUUM ANALYZE.
2000-12-02Don't cause --enable-cassert to define COPY_PARSE_PLAN_TREES automaticallyTom Lane
anymore. That won't teach us anything new for the rest of this release cycle, so it seems better to keep the --assert environment more like the non-assert environment for beta. I'm going to leave CLOBBER_FREED_MEMORY and MEMORY_CONTEXT_CHECKING turned on by --enable-cassert for now, however.
2000-12-01Make tuple receive/print routines TOAST-aware. Formerly, printtup wouldTom Lane
leak memory when printing a toasted attribute, and printtup_internal didn't work at all...
2000-12-01Fix inadequate tree-walking code in exec_eval_clear_fcache.Tom Lane
2000-12-01Make elog() switch to ErrorContext while invoking libpq output routines,Tom Lane
since those routines may do palloc's. We want to be fairly sure we can send the error message to the client even under low-memory conditions. That's what we stashed away 8K in ErrorContext for, after all ...
2000-12-01Pursuant to a pghackers discussion back around 11-Jul-00, get rid of aset.c'sTom Lane
not-very-good handling of mid-size allocation requests. Do everything via either the "small" case (chunk size rounded up to power of 2) or the "large" case (pass it straight off to malloc()). Increase the number of freelists a little to set the breakpoint between these behaviors at 8K.
2000-12-01It seems appropriate that the extended MEMORY_CONTEXT_CHECKING codeTom Lane
immediately uncovered three of Karel's own bugs, including a routine that scribbled on its input (naughty naughty!)
2000-12-01Clean up MEMORY_CONTEXT_CHECKING code, and apply it more thoroughly. Also,Tom Lane
apply Karel Zak's patch to recycle residual space in an exhausted allocation block. (Bet you thought I'd forgot about that, Karel?)
2000-11-30Repair residual sillinesses from UUNET virtual host/socket path patch.Tom Lane
I hope all the dust has settled out now ...
2000-11-30Make default socket directory location configurable from config.h.Tom Lane
If we're going to let it be run-time configurable, might as well allow this too...
2000-11-30Correct obsolete entry for strpos().Tom Lane
2000-11-30Minor tweaks in installation instructions, regenerate INSTALL file.Peter Eisentraut
2000-11-30Remove DISABLE_COMPLEX_MACRO definitions, since people seem to be gettingPeter Eisentraut
by without them. Don't check for preprocessor symbols from system header files in port include files, since those header files aren't included at this point.
2000-11-30Remove old regression test drivers.Peter Eisentraut
2000-11-30Make all commands that link a program look likePeter Eisentraut
$(CC) $(CFLAGS) $(LDFLAGS) <object files> <extra-libraries> $(LIBS) -o $@ This form seemed to be the most portable, readable, and logical, but in any case it's better than having a dozen different ones in the tree.
2000-11-30miscVadim B. Mikheev
2000-11-30Hope that this is valid localbuf.c versionVadim B. Mikheev
2000-11-30Remove obsolete claim that char(n) is more efficient than other text types.Tom Lane
2000-11-30Remove VARLENA_FIXED_SIZE hack, which is irreversibly broken now thatTom Lane
both MULTIBYTE and TOAST prevent char(n) from being truly fixed-size. Simplify and speed up fastgetattr() and index_getattr() macros by eliminating special cases for attnum=1. It's just as fast to handle the first attribute by presetting its attcacheoff to zero; so do that instead when loading the tupledesc in relcache.c.
2000-11-30Sort out things after fe-connect.c cleanup after unix socket patch.Peter Eisentraut
2000-11-30Remove remaining unixsocket-setting interfaces, since the host parameterPeter Eisentraut
does that. Disable URL-style connection parameter specification code, which doesn't work.
2000-11-30No more #ifdef XLOG.Vadim B. Mikheev
2000-11-30It seems some platforms declare kill(2) in signal.h not unistd.h.Tom Lane
2000-11-30XLOG stuff for sequences.Vadim B. Mikheev
CommitDelay in guc.c
2000-11-30Rearrange bufmgr header files so that buf_internals.h need not beTom Lane
included by everything that includes bufmgr.h --- it's supposed to be internals, after all, not part of the API! This fixes the conflict against FreeBSD headers reported by Rosenman, by making it unnecessary for s_lock.h to be included by plperl.c.
2000-11-30all options are allowed if not under postmaster:Vadim B. Mikheev
SetConfigOption(name, value, (IsUnderPostmaster) ? PGC_BACKEND : PGC_POSTMASTER);
2000-11-29Just noticed that with -S switch, MyProcPid is permanently wrong inTom Lane
postmaster, because it isn't updated after forking away from the terminal. Apparently it's not used anyplace in the postmaster ... but seems best to make it show the correct PID ...
2000-11-29Get rid of not-very-portable fcntl(F_SETLK) mechanism for locking the UnixTom Lane
socket file, in favor of having an ordinary lockfile beside the socket file. Clean up a few robustness problems in the lockfile code. If postmaster is going to reject a connection request based on database state, it will now tell you so before authentication exchange not after. (Of course, a failure after is still possible if conditions change meanwhile, but this makes life easier for a yet-to-be-written pg_ping utility.)