- Dec 13, 2001
-
-
Peter Eisentraut authored
-
Bruce Momjian authored
-
- Dec 11, 2001
-
-
Barry Lind authored
wasn't updated to handle more than two decimal digits for fractional seconds that now are possible in 7.2. This patch fixes the timestamp parsing logic. I have built and tested on both jdbc1 and jdbc2.
-
Barry Lind authored
to be used, causing extra sql statements to be executed. This was a significant performance problem with the database meta data classes. The fix is a simple one liner.
-
- Dec 10, 2001
-
-
Michael Meskes authored
-
Peter Eisentraut authored
-
Thomas G. Lockhart authored
DSL line at home broke things right in the middle of an update. :(
-
Thomas G. Lockhart authored
parens. This is not SQL spec syntax, so later we will remove this extension from gram.y.
-
- Dec 09, 2001
-
-
Michael Meskes authored
-
- Dec 08, 2001
-
-
Michael Meskes authored
-
- Dec 06, 2001
-
-
Michael Meskes authored
- Fixed some bugs in exec sql var and exec sql type command.
-
- Dec 05, 2001
-
-
Michael Meskes authored
- Fixed bug that caused segfault when given incorrect DB name. - Fixed bug in ecpglib causing indicator to list the size of the variable instead of the size of the data.
-
- Dec 04, 2001
-
-
Michael Meskes authored
-
- Dec 03, 2001
-
-
Tom Lane authored
from Andreas Kretzer.
-
D'Arcy J.M. Cain authored
the latest version and I wanted to make sure that there was a clean release. I also change the build files as I discussed in my letter of Nov 6, 2001. At the time I was asked to hold off until after the release.
-
Tom Lane authored
Magnus Hagander that DLL only contains error strings for the Net*** functions, *not* WinSock. We need to look for a workable solution for older Windows flavors ... but it won't happen for PG 7.2.
-
- Dec 02, 2001
-
-
Peter Eisentraut authored
which include files to consider. Should fix BeOS problems with int8 types.
-
Peter Eisentraut authored
-
- Nov 29, 2001
-
-
Peter Eisentraut authored
-
- Nov 28, 2001
-
-
Tom Lane authored
potential problems discussed in pgsql-interfaces.
-
Bruce Momjian authored
-
- Nov 27, 2001
-
-
Tom Lane authored
-
Bruce Momjian authored
Laser.
-
- Nov 26, 2001
-
-
Barry Lind authored
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
-
- Nov 22, 2001
-
-
Hiroshi Inoue authored
Multibyte mode.
-
- Nov 21, 2001
-
-
Tom Lane authored
-
Bruce Momjian authored
-
- Nov 20, 2001
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- Nov 19, 2001
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Hiroshi Inoue authored
-
Tom Lane authored
the interactive docs.
-
Bruce Momjian authored
-
- Nov 16, 2001
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Tom Lane authored
-
Peter Eisentraut authored
and comment in src/backend/parser/Makefile for the technical details.
-
Michael Meskes authored
-
Hiroshi Inoue authored
-