summaryrefslogtreecommitdiff
path: root/src/interfaces
AgeCommit message (Collapse)Author
1999-04-14*** empty log message ***Michael Meskes
1999-04-13*** empty log message ***Michael Meskes
1999-04-11Implement UpdateCountPeter Mount
1999-04-04Use MAXALIGN value found by configure instead of aTom Lane
hardwired assumption.
1999-03-29change comparison char* and NULL to char* and '\0'. This should beTatsuo Ishii
more portable way.
1999-03-24*** empty log message ***Michael Meskes
1999-03-21Add .cvsignore file so cvs doesn't complain if you have lex/yaccTom Lane
output files laying about.
1999-03-20*** empty log message ***Michael Meskes
1999-03-20Remove yacc/lex output files from CVS repository.Tom Lane
1999-03-20make clean should remove lex.yy.cTom Lane
1999-03-20Reverse out pfree agg part of patch from Erik Riedel.Bruce Momjian
1999-03-19I suggest the following portability patch, which does notBruce Momjian
change functionality, but makes the code more ANSI C'ish. My AIX xlc compiler barfs on all of these. Can someone please review and apply to current. <<port.patch>> Thanks Andreas
1999-03-18*** empty log message ***Michael Meskes
1999-03-16Fix snprintf with strings, and nextval('"Aa"');Bruce Momjian
1999-03-15*** empty log message ***Michael Meskes
1999-03-14Reversed out libpq protocol patch for Tom Lane.Bruce Momjian
1999-03-14This is another example of why not allowing utility functions in SPIBruce Momjian
would be a Bad Thing. For what it's worth, I found another case in libpq where you can get a T message without a D that my utility patch needs to handle. I have attached the updated patch against the 6.4.2 version of src/interfaces/libpq/fe-exec.c Jerry Gay
1999-03-14Hi,Bruce Momjian
Just in case you'd like to see what I was talking about, I am attaching my patch to src/interfaces/libpq/fe-exec.c to prevent utility functions called from SPI from locking up the client. Jerry Gay
1999-03-14Here is a little syntax error found in a .y file... A dropped semi.Bruce Momjian
DwD -- Daryl W. Dunbar
1999-03-14 I've been having also sorts of fun trying to get kerberos 4Bruce Momjian
authentifica tion working with postgresql-6.4.2 and KTH-KRB Ebones (http://www.pdc.kth.se/kth-kr b) on a dec alpha running DU 4.0D using the native compiler. The following patch does the trick. The rationale behind this is as follows. The KTH-KRB code header files defines lots of lengths like INST_SZ,REALM_SZ and KRB_SENDAUTH_VLEN. It also has a habit of doing things like chararray[LENGTH] = '\0' to ensure null terminated strings. In my instance this just happens to blat the kerberos principal instance string leading to error like pg_krb4_recvauth: kerberos error: Can't decode authenticator (krb_rd_req ) The application code that comes with KTH-KRB uses "KRB_SENDAUTH_VLEN + 1" and sometimes uses "INST_SZ + 1" so it seems safest to put that 1 char buffer in the appropriate place. Rodney McDuff
1999-03-14The isWritable method in ResultSetMetaData returns the logicallyBruce Momjian
incorrect result. This bug goes back to at least 6.3. Alvin
1999-03-14There are errors in the PGmoney class in the conversion routines overBruce Momjian
the handling of negative numbers and commas. The attached path attempts to fix these. However the getValue method does not yet insert commas into the generated string. Also in getValue there is an incorrect assumption that the currency symbol is '$', it should of course be '£'!. I have no idea on how to go about fixing this one. Alvin
1999-03-11*** empty log message ***Michael Meskes
1999-03-07Export include/utils/mcxt.h so that external stuff can includeTom Lane
palloc.h again. Move exporting of backend header files out of libpq's Makefile (whatever was it doing there in the first place?) and into backend/Makefile.
1999-03-07*** empty log message ***Michael Meskes
1999-03-05*** empty log message ***Michael Meskes
1999-03-05*** empty log message ***Michael Meskes
1999-02-28From: Michael Meskes <Michael_Meskes@topmail.de>Marc G. Fournier
+ + Tue Feb 23 17:32:25 CET 1999 + + - Other than a struct a union itself cannot be specified as variable. + + Fri Feb 26 07:18:25 CET 1999 + + - Synced preproc.y with gram.y. + + Sat Feb 27 20:30:03 CET 1999 + + - Added automatic allocating for NULL pointers.
1999-02-23From: Michael Meskes <Michael_Meskes@topmail.de>Marc G. Fournier
+ + Son Feb 21 14:10:47 CET 1999 + + - Fixed variable detection in libecpg. + + Mon Feb 22 19:47:45 CET 1999 + + - Added 'at <db_connection>' option to all commands it is apllicable + to. Due to changing the API of some libecpg functions this + requires me to increase the major version number. + - Synced pgc.l with scan.l. + - Added support for unions. + - Set library version to 3.0.0 + - Set ecpg version to 3.0.0
1999-02-22Final optimizer cleanups.Bruce Momjian
1999-02-21From: Tatsuo Ishii <t-ishii@sra.co.jp>Marc G. Fournier
Ok. I made patches replacing all of "#if FALSE" or "#if 0" to "#ifdef NOT_USED" for current. I have tested these patches in that the postgres binaries are identical.
1999-02-21From: Michael Meskes <Michael_Meskes@topmail.de>Marc G. Fournier
+ + Fri Feb 19 21:40:14 CET 1999 + + - Fixed bug in libecpg that caused it to start transactions only for + the first connection. + - Set library version to 2.7.1
1999-02-20From: Michael Meskes <Michael_Meskes@topmail.de>Marc G. Fournier
See Changes file...
1999-02-19OOPS ... Perl5 interface to PQsetdbLogin was actuallyTom Lane
calling PQsetdb ...
1999-02-18Enable bushy and right-hand queries by default.Bruce Momjian
1999-02-13Change my-function-name-- to my_function_name, and optimizer renames.Bruce Momjian
1999-02-11Remove Perl module's unnecessary dependence on libpq-int.h.Tom Lane
1999-02-07Include -lcrypt when needed to link libpgtcl.so and plpgsql.soTom Lane
1999-02-07Add PQresStatus() function to avoid direct access to pgresStatus[] array,Tom Lane
making life easier for Windoids...
1999-02-05Reverse out const to libpq interface from D'Arcy.Bruce Momjian
1999-02-04From: Michael Meskes <Michael.Meskes@usa.net>Marc G. Fournier
+ Tue Feb 2 07:40:52 CET 1999 + + - Brought preproc.y in sync again with gram.y. + - Set ecpg version to 2.4.9 +
1999-02-04Const fixes from D'Arcy.Bruce Momjian
1999-02-03Cleanup of source files where 'return' or 'var =' is alone on a line.Bruce Momjian
1999-02-03The libpq function PQfnumber does not handle case-insensitiveBruce Momjian
comparisons correctly. The psql monitor converts all table and field names to lower case. If the PQfnumber function is called with a mixed case name, it will always return -1. Bahman Rafatjoo
1999-02-02Included patches make some enhancements to the multi-byte support.Bruce Momjian
o allow to use Big5 (a Chinese encoding used in Taiwan) as a client encoding. In this case the server side encoding should be EUC_TW o add EUC_TW and Big5 test cases to the regression and the mb test (contributed by Jonah Kuo) o fix mistake in include/mb/pg_wchar.h. An encoding id for EUC_TW was not correct (was 3 and now is 4) o update documents (doc/README.mb and README.mb.jp) o update psql helpfile (bin/psql/psqlHelp.h) -- Tatsuo Ishii t-ishii@sra.co.jp
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".