summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
1999-03-07Retrofit hashtable and shared-mem-size-estimation bug fixesREL6_4Tom Lane
into REL6_4.
1999-03-07Oops, looks like my local copy of dt.c conflicted withTom Lane
Thomas' changes...
1999-03-06Correct compile failures in REL6_4 datetime code.Tom Lane
1999-03-04A fix for the int8 problem under FreeBSD ... if __FreeBSD__ is defined,Marc G. Fournier
then use %qd vs %lld ... Regression test for int8 passes with this applied... Similar change should be applied to -CURRENT, am just focusing on v6.4.3 right now though...
1999-03-03Move common date/time macros to a central place.Thomas G. Lockhart
1999-02-13Remove equivalence between datetime and float8. Wasn't worth the troubleThomas G. Lockhart
especially since datetime has too many reserved values to be a reasonable mapping.
1999-02-13This patch fixes some problems in date handling for atypical dates.Thomas G. Lockhart
Here is a summary: Be more careful to check input string lengths as well as values when deciding whether a field is a year field. Assume *anything* longer than 2 digits (if it isn't a special-case doy) is a valid year. This should fix the "Y1K" and "Y10K" problems pointed out by Massimo recently. Check usage of BC to require a positive-valued year; before just used it to flip the sign of the year without checking. This led to problems near year zero. Allow a 5 digit "concatenated date" of 2 digit year plus day of year. Do 2->4 digit year correction for 6 and 5 digit "concatenated dates". Somehow forgot this originally. Guess not many folks use it... Move common macros to dt.h.
1999-02-07Back-patch freebsd4 and '. ./conftest.sh' fixes into REL6_4.Tom Lane
1999-02-07Changed ExecConstraints() and ExecRelCheck() to cache constraintJan Wieck
qualification trees in the execution state to avoid memory exhaustion on INSERT, UPDATE and COPY to tables with check constraints. This also speeds up those operations substantial because the nodeToString() for the constraints ccbin is only performed once per query. Jan
1999-02-07Fixed not free'd heap tuple if BEFORE DELETE trigger procedureJan Wieck
returns new created tuple instead of the one given to it. Jan
1999-02-02Fixed failed assertion happening in multiple action rulesJan Wieck
when parsestate in makeRangeTable() already contains an opened p_target_relation. Jan
1999-01-17Re-insert %.sl rule into Makefile.hpux ... seems it is notTom Lane
quite as unused as I thought ... how embarrassing.
1999-01-03HISTORY update.REL6_4_2Bruce Momjian
1999-01-02Mention 6.4.2 changes.Bruce Momjian
1998-12-31Change ordering of HAVE_TM_ZONE and HAVE_INT_TIMEZONE code blocksThomas G. Lockhart
to give HAVE_TM_ZONE priority. This fixes glibc2 machines and any other machine which passes both tests in configure. Repair HAVE_TM_ZONE code which stuffs tm structure with date type values. Same problems as were originally there before v6.1, but never noticed. Thanks to Oleg for nagging :)
1998-12-29Upgrade for 6.4.2.Bruce Momjian
1998-12-29Update for 6.4.2.Bruce Momjian
1998-12-25Fix for version, update to 6.5.Bruce Momjian
1998-12-23Add subversion mentionBruce Momjian
1998-12-19Fix problem with bad reference to tzn in GetCurrentAbsoluteTime().Thomas G. Lockhart
Already was done in the main tree.
1998-12-18Included are patches for doc/README.mb and README.mb.jp.Bruce Momjian
Please apply to both trees. -- Tatsuo Ishii
1998-12-18Here are descriptions:Bruce Momjian
- 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
1998-12-18Upgrade for 6.4.1.Bruce Momjian
1998-12-18Update for 6.4.1Bruce Momjian
1998-12-18Fix for HAVE_LONG bug in snprintf.c.Bruce Momjian
1998-12-18Upgrade for 6.4.1.Bruce Momjian
1998-12-18Prepare for 6.4.1.Bruce Momjian
1998-12-17Remove need for doc 'install man' in INSTALL file. install does bothBruce Momjian
html and man.
1998-12-17Upgrade to Pygress 2.2.Bruce Momjian
1998-12-14Compilation of libpq for Win32 breaks on 6.4, because of a change that IBruce Momjian
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
1998-12-14OK, here is a diff for the README file in /usr/src/pgsql/contrib/spi/.Bruce Momjian
For the 6.5 tree. Have a great night. Terry
1998-12-14Current multi-byte related codes have a bug with SQL_ASCIIBruce Momjian
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
1998-12-14Add routines to help with single-byte char type handling.Thomas G. Lockhart
1998-12-14Add routines and synonyms to help with single-byte char type handling.Thomas G. Lockhart
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.
1998-12-14Adjust handling of data type names to suppress double quotesThomas G. Lockhart
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.
1998-12-14Add routines to help with single-byte (internal) character type support.Thomas G. Lockhart
1998-12-14Use the new implicit type coersion techniques for matching up typesThomas G. Lockhart
between columns and DEFAULT clauses.
1998-12-14Switch around conditional code so that HAVE_TM_ZONE takes precedenceThomas G. Lockhart
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.
1998-12-13Build pltcl.so correctly on platforms that want dependentTom Lane
shared libraries to be listed in the link command.
1998-12-13Partial fix for vendor-cc-versus-gcc incompatibility on HPUX:Tom Lane
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...
1998-12-13Use standard AC_PROG_INSTALL macro to search for install program,Tom Lane
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.
1998-12-13Add enable_plpgsql from Oliver.Bruce Momjian
1998-12-13Cleanup patch from Oleg.Bruce Momjian
1998-12-13Fix for lo_import crash.Bruce Momjian
1998-12-13While investigating a user's complaint, I have found some memoryBruce Momjian
destructions in 6.4 source using purify. (1) parser/gram.y:fmtId() It writes n+3 bytes into n+1 byte-long memory area if mixed case or non-ascii identifiers given. (2) catalog/index.c: ATTRIBUTE_TUPLE_SIZE bytes are allocated but sizeof(FormData_pg_attribute) bytes are written. Note that ATTRIBUTE_TUPLE_SIZE is smaller than sizeof(FormData_pg_attribute). (for example, on solaris 2.6, Tatsuo Ishii
1998-12-13New ecpg man page.Bruce Momjian
1998-12-13This patch fixes the undefined (according to C) and erroneous (underBruce Momjian
Digital Uni x with both DEC cc and gcc) behaviour of modifying an lvalue on the left side an d then using it on the right side of an assignment. Since this code modifies the dbname parameter, it was changing, for example, "dbname=template1" into "dbname =emplate1". David Smith Programmer P
1998-12-12Included patches should fix following problems in the muti-byteBruce Momjian
enabled PostgreSQL 6.4. o binary cursor does not work o pg_dumpall produces incorrect create database statemnt Tatsuo Ishii t-ishii@sra.co.jp
1998-12-12Fix prototype for 64-bit platforms.Bruce Momjian
1998-12-12update pgaccess to 0.93.Bruce Momjian