aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces
Commit message (Collapse)AuthorAge
* Fix case issues with quotes.Bruce Momjian1997-11-10
|
* Update of Java driver from Peter Mount.Bruce Momjian1997-11-07
|
* Add Unix domain socket support, from Goran Thyni, goran@bildbasen.seBruce Momjian1997-11-07
|
* Add paging for \d, and fix \i.Bruce Momjian1997-11-03
|
* Fix for java to allow password, european dates,from Peter T MountBruce Momjian1997-10-30
|
* Patch for tcl library crash, from Jan Wieck.Bruce Momjian1997-10-30
|
* Fix for java timestamp type from teunis@sigil.computersupportcentre.comBruce Momjian1997-10-30
|
* Fix for array handling, from Gerhard HintermayerBruce Momjian1997-10-30
|
* Fix for perl from Brook MilliganBruce Momjian1997-10-30
|
* Added support for shlib for BSD44_derived & i386_solaris.Vadim B. Mikheev1997-10-28
|
* From: Peter T Mount <patches@maidast.demon.co.uk>Marc G. Fournier1997-09-29
| | | | | | | | This patch fixes a few results in DatabaseMetaData, and updates the README and TODO files (the later being a new file). The TODO file lists the things that need to be looked into after 6.2 is released, and describes the problem with Large Objects.
* From: CNT systemen BV <cntsys@cistron.nl>Marc G. Fournier1997-09-28
| | | | | | | | I've found a problem in the Postgresql jdbc driver. "ReceiveInteger" shifts a received byte right instead of left. This means that only the least significant byte is read into the int. Reviewed by: Peter T Mount <patches@maidast.demon.co.uk>
* Changed location of libpgtcl stuff.Bruce Momjian1997-09-27
|
* Get these two files finally committed for Peter...sorry for delay :(Marc G. Fournier1997-09-26
|
* *** empty log message ***Edmund Mergl1997-09-25
|
* Fix for libpgtcl from Constantin Teodorescu.Bruce Momjian1997-09-25
|
* Cleanup.Bruce Momjian1997-09-23
|
* Bring in Peter's changes...finally :(Marc G. Fournier1997-09-20
|
* Inline memset() as MemSet().Bruce Momjian1997-09-18
|
* *** empty log message ***Edmund Mergl1997-09-17
|
* *** empty log message ***Edmund Mergl1997-09-17
|
* adapted to pgsql-v6.2Edmund Mergl1997-09-17
|
* *** empty log message ***Edmund Mergl1997-09-17
|
* Makefile cleanup.Bruce Momjian1997-09-16
|
* -Linux configure additoin, libtcl Makefile patch.Bruce Momjian1997-09-14
|
* Used modified version of indent that understands over 100 typedefs.Bruce Momjian1997-09-08
|
* Another PGINDENT run that changes variable indenting and case label ↵Bruce Momjian1997-09-08
| | | | indenting. Also static variable indenting.
* Massive commit to run PGINDENT on all *.c and *.h files.Bruce Momjian1997-09-07
|
* Add // comments.Bruce Momjian1997-09-05
|
* Update patch from Peter <patches@maidast.demon.co.uk>Marc G. Fournier1997-08-31
|
* Number of tuples inserted/affected by INSERT/UPDATE/DELETE...Vadim B. Mikheev1997-08-27
|
* Fix up paths to $(SRCDIR)Marc G. Fournier1997-08-17
|
* Add appropriate links into the interfaces directory, as well as a MakefileMarc G. Fournier1997-08-16
| | | | covering the interfaces directory
* Bring in Adrian's JDBC driver as an interfaceMarc G. Fournier1997-08-16
|
* Fix pgproc names over 15 chars in output. Add strNcpy() function. remove ↵Bruce Momjian1997-08-12
| | | | some (void) casts that are unnecessary.
* Fix c++ copy example code.Bruce Momjian1997-07-30
|
* mkLinux patches from Tatsuo Ishii.Bruce Momjian1997-07-29
|
* Change char to int as used in EOF compare, GerhardBruce Momjian1997-07-12
|
* Typo changes in tests/ examples.Bruce Momjian1997-06-25
|
* From: Igor <igor@sba.miami.edu>Marc G. Fournier1997-06-06
| | | | | | | | | | | | | | | | | | | | | Subject: [PATCHES] More psql and libpq patches Well..these would be the last patches until the release (I hope)... I ran the regression tests while watching psql under purify, and it did not leak even one byte. In this patch: * Plugged a major leak when PSQL reads files for input (either through \i options or through -f option) * Fixed the one remaining leak in PSQL in not clearing PGresult *results everywhere it is supposed to. (Thanks Tymm) * Fixed A small leak in PSQL not clearing all the PGsettings correctly. * A not-so-obvious (but small) leak in Libpq when PQsetdb fails for any reason. * Added \n to some Libpq error messages to make them easier to digest.. * Finally, added /* PURIFY */ comment to some of the code indicating the reason for why it was added/changed...for future developers.
* *** empty log message ***Edmund Mergl1997-06-02
|
* From: Igor <igor@sba.miami.edu>Marc G. Fournier1997-06-01
| | | | | | | | | | | | | | | | | | | | Subject: [PATCHES] memory leak patches in libpq and psql A couple of small memory leak patches (detected with Purify) primarily in libpq. * Fixed (NULL) border problem in psql (run psql, do \m, then select something from a table...row separators will be nulls) * Fixed memory leak with the abovementioned border not being freed properly. * Fixed memory leak in freePGconn() not freeing conn->port * Fixed up PQclear() to free parts of PGresult only if these parts are not null. * Fixed a decent memory leak that occured after executing every command in psql. PGresult *results was not freed most of the time. There is still a leak being detected (2 bytes) in readline functions, but I think this is old readline library. I will install new one and test it.
* Added \n to error message.Bruce Momjian1997-06-01
|
* Escape newline in select output, from A. Duursma.Bruce Momjian1997-06-01
|
* Added fcvt() prot for bsdi.Bruce Momjian1997-05-20
| | | | | Made PQsetdb() and PQfnumber() case-insensitive. Removed attempt to set table ownership via pg_dumpall.
* fix for sizeof pointed out by Ed BuddingtonBruce Momjian1997-05-13
|
* From: Edmund Mergl <E.Mergl@bawue.de>Marc G. Fournier1997-05-09
| | | | | | | | | | | | | | | | | | | | | | | | | Subject: [PATCHES] libpq patch Hi, here is a small patch which fixes two problems: 1. libpq/libpq-fe.h: somehow disappeared the line #define DefaultOption "" now compilation stops with an error complainig an unknown DefaultOption (970508). 2. Same patch as I sent already twice, but it never made it into the source tree: there is no default value for AuthType and Password. This way any libpq-application (i.e. perl-scripts) which use the function PQconnectdb will break with PostgreSQL-6.1. The patch simply uses an empty string as default value.
* From: "Martin J. Laubach" <mjl@CSlab.tuwien.ac.at>Marc G. Fournier1997-05-07
| | | | | | | | | Subject: [PATCHES] libpq SET var TO patch One last, I hope. This one corrects a bogus format string, and actually sends the contents of PG_DATESTYLE to the backend. That means, you can do a setenv PG_DATESTYLE 'iso', and your libpq will pick that up and tell the backend.
* Change LOread() and LOwrite() to loread() and lowrite() to allow useThomas G. Lockhart1997-05-06
| | | | with case-insensitive SQL parser.
* creation for postgresql-6.1Edmund Mergl1997-04-29
|