summaryrefslogtreecommitdiff
path: root/src/interfaces
AgeCommit message (Collapse)Author
1999-01-31From: Michael Meskes <Michael.Meskes@usa.net>Marc G. Fournier
+ + Wed Jan 27 12:42:22 CET 1999 + + - Fixed bug that caused ecpg to lose 'goto' information. + - Set ecpg version to 2.4.7 + + Fri Jan 29 18:03:52 CET 1999 + + - Fixed bug that caused 'enum' to be rejected in pure C code. + - Fixed bug that caused function names to be translated to lower case. + - Set ecpg version to 2.4.8 +
1999-01-27From: Tatsuo Ishii <t-ishii@sra.co.jp>Marc G. Fournier
Included patches fix a portability problem of unsetenv() used in 6.4.2 multi-byte support. unsetenv() is only avaliable on FreeBSD and Linux so I decided to replace with putenv().
1999-01-25From: Peter T Mount <peter@retep.org.uk>Marc G. Fournier
This implements some of the JDBC2 methods, fixes a bug introduced into the JDBC1 portion of the driver, and introduces a new example, showing how to use the CORBA ORB thats in Java2 with JDBC. The Tar file contains the new files, the diff the changes to the others. CHANGELOG is separate as I forgot to make a .orig ;-)
1999-01-22|From: "D'Arcy" "J.M." Cain <darcy@druid.net>Marc G. Fournier
| |The following patch just prevents a warning from being generated because |the data type isn't specified.
1999-01-21From: Michael Meskes <Michael.Meskes@usa.net>Marc G. Fournier
See attached file. Now accepts "exec sql whenever sqlwarning".
1999-01-18Okay, I've updated the ecpg parser yet again. Unfortunately it has oneBruce Momjian
remaining shift/reduce conflict. But the very same conflict is in gram.y, so I don't dig into it very much now. Anyway, I just saw that there were minor changes made to ecpg by others. Now I like that but I would prefer if I was told about that. Otherwise my version numbering and Changelog maintaining might break. Or simply change these too. :-) Also I had to add #include <errno.h> to backend/libpq/pqcomprim.c to be able to compile postgresql. Patch is attached. Since my resubscription process is still not finished yet, I still send them here. Michael
1999-01-17Keep Tcl from getting confused if backend closes connectionTom Lane
when a notify is installed.
1999-01-17TCL_ARRAYS option patches from Massimo Dal ZottoTom Lane
1999-01-17Apply Win32 patch from Horak Daniel.Bruce Momjian
1999-01-17As the email posted to the announce and interfaces list, attached is a tarBruce Momjian
file containing the latest version of the JDBC driver, allowing it to be compiled and used under JDK 1.2 and later. NB: None (well almost none) of the new methods actually do anything. This release only handles getting it to compile and run. Now this is done, I'll start working on implementing the new stuff. Now this tar file replaces everything under src/interfaces/jdbc. I had to do it this way, rather than diffs, because most of the classes under the postgresql subdirectory have moved to a new directory under that one, to enable the support of the two JDBC standards. Here's a list of files in the tar file. Any file not listed here (in the postgresql directory) will have to be deleted, otherwise it could cause the driver to fail: Peter Mount
1999-01-17Improve error message when connect() call fails:Tom Lane
report kernel's errno value.
1999-01-17Replace direct inclusions of c.h with inclusion of postgres.h,Tom Lane
to ensure that config.h is included as well.
1999-01-08Update 06-40-0004 -- Add Bookmark support!Byron Nikolaidis
1999-01-07Sorry for posting it here again, but I haven't corrected myBruce Momjian
subscriptions yet. It's just a small patch to ecpg to keep it in sync with gram.y. Michael
1999-01-06Update 06-40-0003Byron Nikolaidis
1999-01-05Mini Update #2 -- final fixes for buffer lengths, null buffers, truncationByron Nikolaidis
1998-12-31uncomment MYLOG to prevent warnings in compileByron Nikolaidis
1998-12-31Mini update to fix SQLGetInfo to work properly (truncation, NULL)Byron Nikolaidis
1998-12-29Minor fixes to compile on unix for v6-40-0002Byron Nikolaidis
1998-12-29Update for version 6-40-0002 and re-merge Thomas' changes.Byron Nikolaidis
1998-12-22From: Michael Meskes <Michael.Meskes@usa.net>Marc G. Fournier
+ +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
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-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-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-11-29Portability fix for old SunOS releases: realloc(NULL, ...)Tom Lane
doesn't work there.
1998-11-18Performance improvement for libpq: avoid calling malloc separatelyTom Lane
for each field of each tuple. Makes more difference than you'd think...
1998-11-12Fix at least a few shared-library problems on Linux.Tom Lane
We have not seen the end of this issue :-(.
1998-11-11Update for version 06-40-0001Byron Nikolaidis
1998-11-04Test for and handle NULL arguments to mylog() print statements.Thomas G. Lockhart
Include definition for _IN_ADDR_T if INADDR_NONE is not defined.
1998-11-04Somehow had the solaris template names reversed. Probably was somethingThomas G. Lockhart
fixed in src/configure.in a while ago.
1998-11-01Remove various files that were moved to various subdirectories...Marc G. Fournier
Requested by: Peter T Mount peter@retep.org.uk
1998-10-28Fix macro declarations to allow disabling mylog() and qlog() on Unix boxes.Thomas G. Lockhart
Fix spelling of "DIRSEPARATOR".
1998-10-28Include appropriate flags for resolved shared library LDFLAGS_ODBCThomas G. Lockhart
to allow ODBC library to be linked.
1998-10-27Detect lack of permission to install into Perl module library,Tom Lane
and emit informative message instead of aborting the Postgres install.
1998-10-23Put back string instead of string.h in libpq++.Bruce Momjian
1998-10-23Change string to string.h in libpq++. BSDI 3.0 complains.Bruce Momjian
1998-10-21Include new Makefile.shlib from top levelThomas G. Lockhart
when constructing standalone tarball.
1998-10-21Arbitrary addition of a comment line to get ownership of file in theThomas G. Lockhart
cvs tree. Am trying to fix the permissions to allow file execution, since I had damaged the permissions when transferring in with ftp.
1998-10-19Centralized shared-library build knowledge in a new file,Tom Lane
src/Makefile.shlib. Updated all the makefiles that try to build shlibs to include that file instead of having duplicate (and mostly incomplete) copies of shared-library options. It works on HPUX, a lot better than it did before in fact, but there's a chance I broke some other platforms. At least now you only have to fix one place not six...
1998-10-18run autoconfTom Lane
1998-10-18Clean up shared makefile install procedures.Tom Lane
Get the permissions right, don't overwrite real files with symlinks, etc. plpgsql and odbc still aren't fully up to speed, but at least they don't crash and burn...
1998-10-18Still another round of Perl-module installation tweaks.Tom Lane
Now, src/interfaces/perl5/Makefile.PL is pretty simple, and instead we work a little harder in src/interfaces/Makefile.
1998-10-18Still another round of Perl-module installation tweaks.Tom Lane
This time, src/interfaces/perl5/Makefile.PL no longer needs to be autoconf'd.
1998-10-17Remove Makefile.PL.Bruce Momjian
1998-10-17Fix for GNUmakefile and stupid cruft I forgot in there.Bruce Momjian
1998-10-16Add missing tcl *.in files.Bruce Momjian
1998-10-16interfaces/Makefile fix.Bruce Momjian
1998-10-16add missing file for perl.Bruce Momjian
1998-10-16Here's a patch. It also includes the latest parser changes.Bruce Momjian
Michael