aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
...
* Minor fixes to compile on unix for v6-40-0002Byron Nikolaidis1998-12-29
|
* Update for version 6-40-0002 and re-merge Thomas' changes.Byron Nikolaidis1998-12-29
|
* autoconfBruce Momjian1998-12-28
|
* Fix for current dir not in path, from stan's report.Bruce Momjian1998-12-28
|
* Long awaited port for NetBSD/m68k was finally done by Mr. MutsukiBruce Momjian1998-12-26
| | | | | | | | | | Nakajima. Since he is not subscribing the mailing list, I'm posting his patches by his request. According to him, he has successfully compiled and passed the regression test on Mac SE/30 running NetBSD/m68k. Also, another person has reported that with the patches PostgreSQL is working on NetBSD/sun3 too. -- Tatsuo Ishii
* Fix for version, update to 6.5.Bruce Momjian1998-12-25
|
* Fix for snprintf and long long unsigned.Bruce Momjian1998-12-24
|
* Fix reference to null pointer when no aggregate function candidatesThomas G. Lockhart1998-12-23
| | | | | | are available. Problem reported by David Sauer <davids@iol.cz>. Modify information in resulting error message to indicate both agg name and data type.
* Add subversion mentionBruce Momjian1998-12-23
|
* From: Michael Meskes <Michael.Meskes@usa.net>Marc G. Fournier1998-12-22
| | | | | | | | | | | | | + +Wed Dec 9 11:24:54 MEZ 1998 + + - Synced preproc.y with gram.y and the keywords.c files to add CASE + statement. + +Tue Dec 22 14:16:11 CET 1998 + + - Synced preproc.y with gram.y for locking statements. + - Set version to 2.4.5
* Changed TypeName.typmod to int32 - atttypmod is of that sizeJan Wieck1998-12-21
| | | | Jan
* finished cleaning up outnodes.c ...Marc G. Fournier1998-12-20
|
* Fix deadlock so it only checks once.Bruce Momjian1998-12-18
|
* Add pgaccess Makefile.Bruce Momjian1998-12-18
|
* Here are descriptions:Bruce Momjian1998-12-18
| | | | | | | | | | | | | | | | - the first patch is just to preven listing the perl warning in the make output unless it is actually emitted by the make. this may prevent new users from being confused by the warning in their output - the second patch (to 2 files) just enables building/installing pgaccess if TCL and TK are available. a Makefile is created to do this, but you may wish to change the heading information in it since I just copied another Makefile to use as a template. I hope these make it into 6.4.1. Cheers, Brook
* I have ported PostgreSQL 6.4 to Cobalt Qube running Linux 2.0.33 withBruce Momjian1998-12-18
| | | | | | | MIPS cpu (I think it's R4000). I have tested the patches on LinuxPPC and FreeBSD. I believe they do not harm other platforms. -- Tatsuo Ishii
* Fixed nodeToString() to put out "<>" for NULL strings again.Jan Wieck1998-12-18
| | | | | | More cleanups to appendStringInfo() usage in node/outfuncs.c. Jan
* SET TRANSACTION ISOLATION LEVEL ...Vadim B. Mikheev1998-12-18
| | | | | LOCK TABLE IN ... MODE ...implemented
* Missed a few files.Bruce Momjian1998-12-18
|
* Attached is a patch with some fixes that (I think that) should go intoBruce Momjian1998-12-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 6.4.1. Here is the list: - The type int8 now works. In fact, the bug(s) were in src/backend/port/snprintf.c, so int8 is probably broken in every platform that hasn't a native snprintf/vsnprintf. The type itself worked as expected, only the output was wrong. Anyway, this patch should be checked in other platforms. - The regression tests for int2 and int4, which were broken due to differences in the error messages, are fixed. - The regression test for float8, which was broken in the reference platform, is also fixed. I don't know if the new file (float8-OSF1.out) will work on other platforms, but it might be worth to try it. - Two new template files are provided (alpha_cc, which includes optimization, and alpha_gcc), and src/templates/.similar is updated accordingly. src/templates/alpha should be removed from the distribution. *IMPORTANT NOTE*: I don't know if you can use gcc to compile postgres; I've written the alpha_gcc file because alpha_cc has some flags that are specific to DEC C. - There is a (very basic) Digital Unix specific FAQ in doc/FAQ_DigitalUnix. -- ------------------------------------------------------------------- Pedro José Lobo Perea Tel: +34 91 336 78 19
* Fix for HAVE_LONG bug in snprintf.c.Bruce Momjian1998-12-18
|
* Fix for snprintf with long long's, define problem.Bruce Momjian1998-12-18
|
* From: Keith Parks <emkxp01@mtcc.demon.co.uk>Marc G. Fournier1998-12-17
| | | | Looks like :vartypmod got transmuted to %vartypmod in an editing session.
* Upgrade to Pygress 2.2.Bruce Momjian1998-12-17
|
* Serialized mode works!Vadim B. Mikheev1998-12-16
|
* Oops, sorry...meant to commit the patch from Thomas for tzn->CTZNameMarc G. Fournier1998-12-15
|
* tzn undeclared in FreeBSD, commented out.Vadim B. Mikheev1998-12-15
|
* Initial MVCC code.Vadim B. Mikheev1998-12-15
| | | | New code for locking buffer' context.
* More cleanups ... this is one big file *sigh*Marc G. Fournier1998-12-15
|
* Correct some typos...Marc G. Fournier1998-12-15
|
* More cleanups of appendStringInfo() function calls...Marc G. Fournier1998-12-15
|
* Compilation of libpq for Win32 breaks on 6.4, because of a change that IBruce Momjian1998-12-14
| | | | | | | | | | | | | | missed before the release. It's simply a symbol that is undefined. This patch defines this symbol in "win32.h", so it should have no effect on any other platforms. It should go into 6.4.1 if possible, since compilation is completely broken without it. I am also attaching a patch for the "win32.mak" file - it leaves a file behind when doing "make clean" after the library is built on Visual C++ 6.0. This is not at all as urgent, but I don't see it breaking here, so I think it might as well go in there too? //Magnus
* more cleanups...of note, appendStringInfo now performs like sprintf(),Marc G. Fournier1998-12-14
| | | | | | | | | | where you state a format and arguments. the old behavior required each appendStringInfo to have to have a sprintf() before it if any formatting was required. Also shortened several instances where there were multiple appendStringInfo() calls in a row, doing nothing more then adding one more word to the String, instead of doing them all in one call.
* Many more cleanups...Marc G. Fournier1998-12-14
|
* Initial attempt to clean up the code...Marc G. Fournier1998-12-14
| | | | | | Switch sprintf() to snprintf() Remove any/all #if 0 -or- #ifdef NOT_USED -or- #ifdef FALSE sections of code
* Current multi-byte related codes have a bug with SQL_ASCIIBruce Momjian1998-12-14
| | | | | | | | | | | support. Included patches will solve it and should be applied to both trees. Also, it fix the problem with \c command of psql when switching different encoding databases. Regression tests passed. -- Tatsuo Ishii t-ishii@sra.co.jp
* Add support for the CASE statement in the rewrite handling.Thomas G. Lockhart1998-12-14
| | | | | | Allows (at least some) rules and views. Still some trouble (crashes) with target CASE columns spanning tables, but lots now works.
* Improve CASE statement support.Thomas G. Lockhart1998-12-13
| | | | Try to label CASE columns for a SELECT if not specified with an AS clause.
* Fix up error messages when looking up functions and operators to notThomas G. Lockhart1998-12-13
| | | | | make the sometimes misleading claim that more than one candidate was identified. Now say "Unable to identify...".
* Use the new implicit type coersion techniques for matching up typesThomas G. Lockhart1998-12-13
| | | | between columns and DEFAULT clauses.
* Clean up error messages associated with rules and views.Thomas G. Lockhart1998-12-13
| | | | | Fix parser error message when an operator is not found to not explicitly claim that there is more than one.
* Build pltcl.so correctly on platforms that want dependentTom Lane1998-12-13
| | | | shared libraries to be listed in the link command.
* Add routines and synonyms to help with single-byte char type handling.Thomas G. Lockhart1998-12-13
| | | | | | Fix one usage of substr() which mapped to the "Oracle compatibility" funcs rather than the more recent (and closer to SQL92) function in varlena.c. Add more DESC() entries for conversion functions.
* Adjust handling of data type names to suppress double quotesThomas G. Lockhart1998-12-13
| | | | | | | | | | unless necessary. Label internal bpchar types as "character" and varchar types as "character varying" to be less Postgres-specific. These types map to the SQL92 definitions anyway. Redefine g_force_quotes to be the local variable force_quotes. Pass this as an argument to fmtId(). These should help with handling the single-byte internal "char" type.
* Add routines to help with single-byte (internal) character type support.Thomas G. Lockhart1998-12-13
|
* Switch around conditional code so that HAVE_TM_ZONE takes precedenceThomas G. Lockhart1998-12-13
| | | | | | | over HAVE_INT_TIMEZONE. This may help out linux/glibc2 and Dec Alpha. Included #error precompiler macros to catch cases where neither is defined but USE_POSIX_TIME is (shouldn't happen). Hopefully this isn't just a gcc-ism.
* Partial fix for vendor-cc-versus-gcc incompatibility on HPUX:Tom Lane1998-12-13
| | | | | prefer aCC as c++ compiler if hpux_cc is selected as template. Doesn't solve the problem if you have g++ and not aCC, however...
* Use standard AC_PROG_INSTALL macro to search for install program,Tom Lane1998-12-13
| | | | | | | | instead of our own halfway-there code. Add AC_STRUCT_TIMEZONE call to check whether tm_zone exists in struct tm. Revise reading of template file so that templates can define any variables they feel like (and, indeed, can execute arbitrary shell code) rather than being constrained to a fixed set of variable names.
* Add enable_plpgsql from Oliver.Bruce Momjian1998-12-13
|
* Cleanup patch from Oleg.Bruce Momjian1998-12-13
|