Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | This patch fixes a bug reported by Graham Leggett (minfrin@sharp.fm). | Barry Lind | 2001-11-25 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The bug was that any insert or update would fail if the returned oid was larger than a signed int. Since OIDs are unsigned int's it was a bug that the code used a java signed int to deal with the values. The bug would result in the error message: "Unable to fathom update count". While fixing the bug, it became apparent that other code made a similar assumption about OIDs being signed ints. Therefore some methods that returned or took OIDs are arguements also needed to be changed. Since we are so close to the 7.2 release I have added new methods that return longs and deprecated the old methods returning ints. Therefore all old code should still work without requiring a code change to cast from long to int. Also note that the methods below are PostgreSQL specific extensions to the JDBC api are are not part of the spec from Sun, thus it is unlikely that they are used much or at all. The deprecated methods are: ResultSet.getInsertedOID() Statement.getInsertedOID() Serialize.store() Connection.putObject() and are replaced by: ResultSet.getLastOID() Statement.getLastOID() Serialize.storeObject() Connection.storeObject() All the deprecated methods returned int, while their replacements return long This patch also fixes two comments in MD5Digest that the author Jeremy Wohl submitted. --Barry | ||
* | Remove compile errors of psql.exe and libpq.dll under | Hiroshi Inoue | 2001-11-22 |
| | | | | Multibyte mode. | ||
* | Spell 'precedes', 'preceding' correctly in various places. | Tom Lane | 2001-11-21 |
| | |||
* | // -> /* */, per Tatsuo. | Bruce Momjian | 2001-11-21 |
| | |||
* | Change 'return ;' to 'return;'; remove space. | Bruce Momjian | 2001-11-19 |
| | |||
* | Indent jdbc case labels using pgjindent. | Bruce Momjian | 2001-11-19 |
| | |||
* | More jdbc comment cleanups. Code looks very nice now. | Bruce Momjian | 2001-11-19 |
| | |||
* | JDBC indenting, comment cleanups. | Bruce Momjian | 2001-11-19 |
| | |||
* | Fix comment at top of file to match file name. | Hiroshi Inoue | 2001-11-19 |
| | |||
* | A bunch of small doco updates motivated by scanning the comments on | Tom Lane | 2001-11-19 |
| | | | | the interactive docs. | ||
* | Improve comments about duplicate files. | Bruce Momjian | 2001-11-18 |
| | |||
* | Add missing prototype. | Bruce Momjian | 2001-11-16 |
| | |||
* | Add configure result checks on odbc, per Peter E. | Bruce Momjian | 2001-11-16 |
| | |||
* | Once again, Michael has overwritten someone else's patch ... | Tom Lane | 2001-11-16 |
| | |||
* | Make the yacc rules safe for parallel make. See discussion on pgsql-patches | Peter Eisentraut | 2001-11-16 |
| | | | | and comment in src/backend/parser/Makefile for the technical details. | ||
* | Committed again to add the missing files/patches. | Michael Meskes | 2001-11-16 |
| | |||
* | Change SQLDescribeCol so that it returns alias name properly. | Hiroshi Inoue | 2001-11-16 |
| | |||
* | Update keyword lists per suggestions by Peter. There are now four | Tom Lane | 2001-11-16 |
| | | | | | | mutually exclusive keyword lists spanning all known keywords --- including AS. Moved COALESCE and a few other ColLabels into the can-be-ColId list. | ||
* | Update md5.h because it can't get the value from configure. | Bruce Momjian | 2001-11-15 |
| | |||
* | Fix comment at top of file to match file name. | Bruce Momjian | 2001-11-15 |
| | |||
* | fixes getIndex to work with forte's transparent persistence | Dave Cramer | 2001-11-14 |
| | |||
* | Added Christof's patches. | Michael Meskes | 2001-11-14 |
| | |||
* | Attached is a patch against the CVS repository that fixes the ResultSet ↵ | Barry Lind | 2001-11-14 |
| | | | | | | | | | | | absolute() problem. There's also a little fix for the getRow() method. While fixing absolute(), I noticed that getRow() wasn't quite following the spec: it wasn't returning 0 when the ResultSet wasn't positioned on a row. I've started a ResultSet test case and included it as well. Liam Stewart | ||
* | Update CVS tags. | Bruce Momjian | 2001-11-13 |
| | |||
* | Remove md5.c check, add CVS log stamp. Update comments. | Bruce Momjian | 2001-11-13 |
| | |||
* | fixed bug in ResultSet. Version 1.29 backed out two previous fixes (1.26 ↵ | Barry Lind | 2001-11-12 |
| | | | | and 1.25). This checkin add back those two previous fixes. Problem reported by Daniel Germain | ||
* | Commit to support MD5 passwords as per the backend for 7.2. This patch was ↵ | Barry Lind | 2001-11-12 |
| | | | | submitted by Jeremy Wohl jeremyw-pgjdbc@igmus.org | ||
* | Sync up both files. | Bruce Momjian | 2001-11-12 |
| | |||
* | Add comments and remove CVS tag from md5.c so they remain identical. | Bruce Momjian | 2001-11-12 |
| | |||
* | Update md5 to match. | Bruce Momjian | 2001-11-12 |
| | |||
* | Add md5 authentication support thanks to Bruce Momjian. | Hiroshi Inoue | 2001-11-12 |
| | |||
* | Use abbreviated connection string more widely. | Hiroshi Inoue | 2001-11-11 |
| | | | | | This seems to fix the trouble with PowerBuilder reported by Magbus Weber. | ||
* | Defend against possibility that SSL error reporting mechanism returns | Tom Lane | 2001-11-11 |
| | | | | a NULL pointer. Per report from Stephen Pillinger 8-Nov-01. | ||
* | Allow TIMESTAMP, VARCHAR, et al to be used as unquoted column names, | Tom Lane | 2001-11-10 |
| | | | | | | though alas not as unquoted function names. De-reserve a bunch of keywords that could have been in ColId rather than ColLabel all along. Per recent proposal in pgsql-patches. | ||
* | Jason Davies patch to getImported/getExported keys | Dave Cramer | 2001-11-09 |
| | |||
* | Fix indenting for 'extern "C"' cases. | Bruce Momjian | 2001-11-08 |
| | |||
* | Add casts to suppress compiler warnings observed on Darwin platform | Tom Lane | 2001-11-08 |
| | | | | (surprised no one has reported these yet...) | ||
* | Some post pgident run updates, | Bruce Momjian | 2001-11-07 |
| | | | | | | | | | | | one fuzzy translation fix, some other messages tweaking. Theoretically, should be up-to-date by now. Please apply to /src/interfaces/libpq/ru.po -- Serguei A. Mokhov | ||
* | New pgindent run with fixes suggested by Tom. Patch manually reviewed, | Bruce Momjian | 2001-11-05 |
| | | | | initdb/regression tests pass. | ||
* | Preparation for the parameter array handling. | Hiroshi Inoue | 2001-11-05 |
| | |||
* | 1) Fix a few bugs about SQLGetData() | Hiroshi Inoue | 2001-11-05 |
| | | | | | | reported by Mika Mantyla. 2) Timestamp precision. 3) Separate ODBC3.0 files. | ||
* | Version was 3.3 but last released version was 3.1. Setting to match rest | D'Arcy J.M. Cain | 2001-11-04 |
| | | | | of the documentation in preparation for upcoming release. | ||
* | Note that PyGreSQL has been checked against Python 2.1 now. | D'Arcy J.M. Cain | 2001-11-04 |
| | |||
* | The "%d", while syntactically correct, was confusing. Added a space to | D'Arcy J.M. Cain | 2001-11-04 |
| | | | | make it clearer that d was the argument to the format operator. | ||
* | 1) Improve literal handling in parse_statement(). | Hiroshi Inoue | 2001-11-03 |
| | | | | | | 2) Remove some no longer valid comments. 3) Fix an option dialog setting bug. 4) Fix ODBCVER handling errors. | ||
* | proper select for Jason Davies patch to getImportedKeys | Dave Cramer | 2001-11-02 |
| | |||
* | proper select for Jason Davies patch to getImportedKeys | Dave Cramer | 2001-11-02 |
| | | | | fixes for compiling Jason's getImportedKeys, getExportedKeys | ||
* | Windows portability macros SOCK_ERRNO and SOCK_STRERROR should be in | Tom Lane | 2001-11-02 |
| | | | | libpq-int.h, not cluttering application namespace in libpq-fe.h. | ||
* | updates | Peter Eisentraut | 2001-11-02 |
| | |||
* | Suppress compiler warning (only seen in MULTIBYTE case). | Tom Lane | 2001-11-02 |
| |