aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces
Commit message (Collapse)AuthorAge
* *** empty log message ***Michael Meskes1999-04-14
|
* *** empty log message ***Michael Meskes1999-04-13
|
* Implement UpdateCountPeter Mount1999-04-11
|
* Use MAXALIGN value found by configure instead of aTom Lane1999-04-04
| | | | hardwired assumption.
* change comparison char* and NULL to char* and '\0'. This should beTatsuo Ishii1999-03-29
| | | | more portable way.
* *** empty log message ***Michael Meskes1999-03-24
|
* Add .cvsignore file so cvs doesn't complain if you have lex/yaccTom Lane1999-03-21
| | | | output files laying about.
* *** empty log message ***Michael Meskes1999-03-20
|
* Remove yacc/lex output files from CVS repository.Tom Lane1999-03-20
|
* make clean should remove lex.yy.cTom Lane1999-03-20
|
* Reverse out pfree agg part of patch from Erik Riedel.Bruce Momjian1999-03-20
|
* I suggest the following portability patch, which does notBruce Momjian1999-03-19
| | | | | | | | | | 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
* *** empty log message ***Michael Meskes1999-03-18
|
* Fix snprintf with strings, and nextval('"Aa"');Bruce Momjian1999-03-16
|
* *** empty log message ***Michael Meskes1999-03-15
|
* Reversed out libpq protocol patch for Tom Lane.Bruce Momjian1999-03-14
|
* This is another example of why not allowing utility functions in SPIBruce Momjian1999-03-14
| | | | | | | | | | | | 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
* Hi,Bruce Momjian1999-03-14
| | | | | | | | | 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
* Here is a little syntax error found in a .y file... A dropped semi.Bruce Momjian1999-03-14
| | | | | | DwD -- Daryl W. Dunbar
* I've been having also sorts of fun trying to get kerberos 4Bruce Momjian1999-03-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* The isWritable method in ResultSetMetaData returns the logicallyBruce Momjian1999-03-14
| | | | | | incorrect result. This bug goes back to at least 6.3. Alvin
* There are errors in the PGmoney class in the conversion routines overBruce Momjian1999-03-14
| | | | | | | | | | | | 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
* *** empty log message ***Michael Meskes1999-03-11
|
* Export include/utils/mcxt.h so that external stuff can includeTom Lane1999-03-07
| | | | | | 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.
* *** empty log message ***Michael Meskes1999-03-07
|
* *** empty log message ***Michael Meskes1999-03-05
|
* *** empty log message ***Michael Meskes1999-03-05
|
* From: Michael Meskes <Michael_Meskes@topmail.de>Marc G. Fournier1999-02-28
| | | | | | | | | | | | | | | + + 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.
* From: Michael Meskes <Michael_Meskes@topmail.de>Marc G. Fournier1999-02-23
| | | | | | | | | | | | | | | | | + + 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
* Final optimizer cleanups.Bruce Momjian1999-02-22
|
* From: Tatsuo Ishii <t-ishii@sra.co.jp>Marc G. Fournier1999-02-21
| | | | | | 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.
* From: Michael Meskes <Michael_Meskes@topmail.de>Marc G. Fournier1999-02-21
| | | | | | | | | + + 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
* From: Michael Meskes <Michael_Meskes@topmail.de>Marc G. Fournier1999-02-20
| | | | See Changes file...
* OOPS ... Perl5 interface to PQsetdbLogin was actuallyTom Lane1999-02-19
| | | | calling PQsetdb ...
* Enable bushy and right-hand queries by default.Bruce Momjian1999-02-18
|
* Change my-function-name-- to my_function_name, and optimizer renames.Bruce Momjian1999-02-13
|
* Remove Perl module's unnecessary dependence on libpq-int.h.Tom Lane1999-02-11
|
* Include -lcrypt when needed to link libpgtcl.so and plpgsql.soTom Lane1999-02-07
|
* Add PQresStatus() function to avoid direct access to pgresStatus[] array,Tom Lane1999-02-07
| | | | making life easier for Windoids...
* Reverse out const to libpq interface from D'Arcy.Bruce Momjian1999-02-05
|
* From: Michael Meskes <Michael.Meskes@usa.net>Marc G. Fournier1999-02-04
| | | | | | | | + Tue Feb 2 07:40:52 CET 1999 + + - Brought preproc.y in sync again with gram.y. + - Set ecpg version to 2.4.9 +
* Const fixes from D'Arcy.Bruce Momjian1999-02-04
|
* Cleanup of source files where 'return' or 'var =' is alone on a line.Bruce Momjian1999-02-03
|
* The libpq function PQfnumber does not handle case-insensitiveBruce Momjian1999-02-03
| | | | | | | | 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
* Included patches make some enhancements to the multi-byte support.Bruce Momjian1999-02-02
| | | | | | | | | | | | | | | | | | | 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
* From: Michael Meskes <Michael.Meskes@usa.net>Marc G. Fournier1999-01-31
| | | | | | | | | | | | | | | + + 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 +
* From: Tatsuo Ishii <t-ishii@sra.co.jp>Marc G. Fournier1999-01-27
| | | | | | 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().
* From: Peter T Mount <peter@retep.org.uk>Marc G. Fournier1999-01-25
| | | | | | | | | 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 ;-)
* |From: "D'Arcy" "J.M." Cain <darcy@druid.net>Marc G. Fournier1999-01-22
| | | | | | | |The following patch just prevents a warning from being generated because |the data type isn't specified.
* From: Michael Meskes <Michael.Meskes@usa.net>Marc G. Fournier1999-01-21
| | | | See attached file. Now accepts "exec sql whenever sqlwarning".