Age | Commit message (Collapse) | Author | |
---|---|---|---|
2000-04-16 | Print OIDs as %u not %d. | Tom Lane | |
2000-04-16 | Change 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-16 | get_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-15 | SYstem user not implemented | Bruce Momjian | |
2000-04-15 | elog(NOTICE) during COPY incorrectly reset lineno to 0, causing any | Tom 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-14 | fixed 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-14 | Update set constraints man page | Bruce Momjian | |
2000-04-14 | Fix busted markup. | Tom Lane | |
2000-04-14 | update | Bruce Momjian | |
2000-04-14 | MOre cleanup | Bruce Momjian | |
2000-04-14 | Update | Bruce Momjian | |
2000-04-14 | update | Bruce Momjian | |
2000-04-14 | Updates create_function.sgml with fixes for new foreign keys | Bruce Momjian | |
2000-04-14 | UPdate vacuum man page to be clearer. | Bruce Momjian | |
2000-04-14 | Fix spelling of "millennium". | Thomas G. Lockhart | |
Thanks to Mika Nystrom <mika@camembert.cs.caltech.edu> for spotting this. | |||
2000-04-14 | Fix (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-14 | Add mention of SET CONSTRAINT and CREATE CONSTRAINT TRIGGER. | Thomas G. Lockhart | |
2000-04-14 | Rename 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-14 | Mention CmdTuples(). From Vince. | Thomas G. Lockhart | |
2000-04-14 | Mention support for date_part('week',timestamp). | Thomas G. Lockhart | |
Fix spelling of "millennium". Thanks to Mika Nystrom <mika@camembert.cs.caltech.edu>. | |||
2000-04-14 | Update TODO list. | Bruce Momjian | |
2000-04-14 | Fix silly definition order in config.h --- we had prototypes like | Tom 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-14 | Another static-vs-not-static error. | Tom Lane | |
2000-04-14 | Remove 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-14 | Skip setsockopt(SO_REUSEADDR) for the Unix-domain postmaster socket on | Tom 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-14 | If 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-14 | Revert inclusion of postgres_ext.h to use "..." instead of <...>, per | Tom Lane | |
request from XEmacs people. | |||
2000-04-14 | Repair bug reported by Wickstrom: backend would crash if WHERE clause | Tom 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-13 | Change DEFINE TYPE to CREATE TYPE. | Bruce Momjian | |
2000-04-13 | Fixed CREATE TYPE to recognize changed parsenodes | Jan Wieck | |
Jan | |||
2000-04-13 | No longer need to cast default non-cacheable functions. | Bruce Momjian | |
2000-04-12 | A few more macro cleanups | Bruce Momjian | |
2000-04-12 | Update man page to prefer old over current. | Bruce Momjian | |
2000-04-12 | Ye-old pgindent run. Same 4-space tabs. | Bruce Momjian | |
2000-04-12 | Reverse out macro fix for the time being. | Bruce Momjian | |
2000-04-12 | Prevent drop database failure from showing. | Bruce Momjian | |
2000-04-12 | Fix assert with missing semicolon | Bruce Momjian | |
2000-04-12 | Fix up markup to allow building. | Thomas G. Lockhart | |
Adjust two-word substitution parameters to be one word only to reduce possible ambiguity. | |||
2000-04-12 | Update pgindent | Bruce Momjian | |
2000-04-11 | Update pgindent | Bruce Momjian | |
2000-04-11 | Update pgindent for 7.0 release | Bruce Momjian | |
2000-04-11 | Thomas pointed out this bug in my non-blocking stuff. | Bruce Momjian | |
Alfred Perlstein | |||
2000-04-11 | Allow libpq++ compile to fail | Bruce Momjian | |
2000-04-11 | disable plperl | Bruce Momjian | |
2000-04-11 | Clean up temp files from \e. | Bruce Momjian | |
2000-04-11 | Uppercase pg_options param | Bruce Momjian | |
2000-04-11 | Internal 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've | Bruce 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-11 | Update porting list. | Thomas G. Lockhart | |
Fix markup to get clean compile. |