summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2000-04-16Print OIDs as %u not %d.Tom Lane
2000-04-16Change postmaster.opts.default.sample. remove -S option.Tatsuo Ishii
With the default option, pg_ctl can show messages from postmaster upon its failure.
2000-04-16get_relattval() should treat a NULL constant as a non-constant expression,Tom Lane
since it has no way to indicate to its caller that the constant is actually NULL. This prevents coredump in cases like WHERE textfield < null::text;
2000-04-15SYstem user not implementedBruce Momjian
2000-04-15elog(NOTICE) during COPY incorrectly reset lineno to 0, causing anyTom Lane
subsequent elogs() in the same COPY operation to display the wrong line number. Fix is to clear lineno only when elog level is such that we will not return to caller.
2000-04-14fixed another psql \e bug (handle newlines as whitespace)Peter Eisentraut
repaired psql option scanning bug (special treatment to \g |pipe) fixed ipcclean makefile made configure look for Perl to handle psql help build gracefully
2000-04-14Update set constraints man pageBruce Momjian
2000-04-14Fix busted markup.Tom Lane
2000-04-14updateBruce Momjian
2000-04-14MOre cleanupBruce Momjian
2000-04-14UpdateBruce Momjian
2000-04-14updateBruce Momjian
2000-04-14Updates create_function.sgml with fixes for new foreign keysBruce Momjian
2000-04-14UPdate vacuum man page to be clearer.Bruce Momjian
2000-04-14Fix spelling of "millennium".Thomas G. Lockhart
Thanks to Mika Nystrom <mika@camembert.cs.caltech.edu> for spotting this.
2000-04-14Fix (well, add) support for ISO "week" in date_part(). Needed for ODBC.Thomas G. Lockhart
Fix spelling of "millennium". Thanks to Mika Nystrom <mika@camembert.cs.caltech.edu> for spotting this.
2000-04-14Add mention of SET CONSTRAINT and CREATE CONSTRAINT TRIGGER.Thomas G. Lockhart
2000-04-14Rename Digital Unix to Compaq Tru64 :(Thomas G. Lockhart
Update platform support for HPUX, Linux-mips, Linux-ppc, mklinux, NetBSD-m68k (may be a bit premature), and Solaris.
2000-04-14Mention CmdTuples(). From Vince.Thomas G. Lockhart
2000-04-14Mention support for date_part('week',timestamp).Thomas G. Lockhart
Fix spelling of "millennium". Thanks to Mika Nystrom <mika@camembert.cs.caltech.edu>.
2000-04-14Update TODO list.Bruce Momjian
2000-04-14Fix silly definition order in config.h --- we had prototypes likeTom Lane
extern int inet_aton(const char *cp, struct in_addr * addr); appearing before the optional #define for const, which was certain to fail on a machine with neither const nor inet_aton().
2000-04-14Another static-vs-not-static error.Tom Lane
2000-04-14Remove bogus extern for 'descriptors' variable, which is in fact static.Tom Lane
Some compilers object to seeing extern and later static ...
2000-04-14#undef const, inline, signed, volatile, on the expectation that a C++Tom Lane
compiler will understand them. configure may have #define'd them to empty because the local C compiler doesn't understand them, but this may very well cause a C++ compilation to fail, so don't do it in C++.
2000-04-14Skip setsockopt(SO_REUSEADDR) for the Unix-domain postmaster socket onTom Lane
all platforms, not just SCO. The operation is undefined for Unix-domain sockets anyway. It seems SCO is not the only platform that complains instead of treating the call as a no-op.
2000-04-14If configure finds that inet_aton() is not present on this platform,Tom Lane
include the version from backend/port into libpq. There is a second-rate implementation of inet_aton() already present in fe-connect.c, #ifdef'd WIN32. That ought to be removed in favor of using the better version from port/. However, since I'm not in a position to test the WIN32 code, I will leave well enough alone for this release...
2000-04-14Revert inclusion of postgres_ext.h to use "..." instead of <...>, perTom Lane
request from XEmacs people.
2000-04-14Repair bug reported by Wickstrom: backend would crash if WHERE clauseTom Lane
contained a sub-SELECT nested within an AND/OR tree that cnfify() thought it should rearrange. Same physical sub-SELECT node could end up linked into multiple places in resulting expression tree. This is harmless for most node types, but not for SubLink. Repair bug by making physical copies of subexpressions that get logically duplicated by cnfify(). Also, tweak the heuristic that decides whether it's a good idea to do cnfify() --- we don't really want that to happen when it would cause multiple copies of a subselect to be generated, I think.
2000-04-13Change DEFINE TYPE to CREATE TYPE.Bruce Momjian
2000-04-13Fixed CREATE TYPE to recognize changed parsenodesJan Wieck
Jan
2000-04-13No longer need to cast default non-cacheable functions.Bruce Momjian
2000-04-12A few more macro cleanupsBruce Momjian
2000-04-12Update man page to prefer old over current.Bruce Momjian
2000-04-12Ye-old pgindent run. Same 4-space tabs.Bruce Momjian
2000-04-12Reverse out macro fix for the time being.Bruce Momjian
2000-04-12Prevent drop database failure from showing.Bruce Momjian
2000-04-12Fix assert with missing semicolonBruce Momjian
2000-04-12Fix up markup to allow building.Thomas G. Lockhart
Adjust two-word substitution parameters to be one word only to reduce possible ambiguity.
2000-04-12Update pgindentBruce Momjian
2000-04-11Update pgindentBruce Momjian
2000-04-11Update pgindent for 7.0 releaseBruce Momjian
2000-04-11Thomas pointed out this bug in my non-blocking stuff.Bruce Momjian
Alfred Perlstein
2000-04-11Allow libpq++ compile to failBruce Momjian
2000-04-11disable plperlBruce Momjian
2000-04-11Clean up temp files from \e.Bruce Momjian
2000-04-11Uppercase pg_options paramBruce Momjian
2000-04-11Internal functions to support newest ODBC driver {fn ...} conventions.Thomas G. Lockhart
Includes compiled code to support pre-7.0 backends, but for 7.0 only requires executing odbc.sql.
2000-04-11 Attached is are diffs for CREATE/ALTER table doc I'veBruce Momjian
forgotten in my mailbox (sorry). Haven't tried to apply and since I don't have working sgml stuff cannot check. Jan
2000-04-11Update porting list.Thomas G. Lockhart
Fix markup to get clean compile.