aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces
Commit message (Collapse)AuthorAge
...
* *** empty log message ***Michael Meskes1999-05-25
|
* Here it is. Remove or rename the current interfaces/libpq++ and untarBruce Momjian1999-05-23
| | | | | | | | | | | | | | | | this file in interfaces/ It will all need to be checked in. I used the char *rcsid[] method for cvs ids so it can be strings | grep'd to find version numbers. The new version for the library is 3.0. Run configure from src/ to create the Makefile and it should be good to go. I did minimal documentation references in the README, I'll see if I can get something to Tom Lockhart rather quickly. Vince.
* Change perl Makefile test.Bruce Momjian1999-05-21
|
* *** empty log message ***Michael Meskes1999-05-21
|
* Remove 4096 string limited key on block sizeBruce Momjian1999-05-19
|
* Bring python up to date ...Marc G. Fournier1999-05-19
| | | | From: D'Arcy J.M. Cain <darcy@druid.net>
* Forgot the CHANGELOGPeter Mount1999-05-18
|
* Internationalisation of error messagesPeter Mount1999-05-18
|
* Transactions in ImageViewerPeter Mount1999-05-18
|
* *** empty log message ***Michael Meskes1999-05-18
|
* Fixed Internationalization of error messages.Peter Mount1999-05-17
|
* Minor bug fixes. Replaced DateStyle support with ISO.Peter Mount1999-05-17
|
* Add pythonBruce Momjian1999-05-17
|
* Re-add python.Bruce Momjian1999-05-17
|
* Updates for 6.5.Bruce Momjian1999-05-17
|
* Change iostream to iostream.h, strstream to strstream.hTom Lane1999-05-16
| | | | for compatibility with older C++ libraries.
* *** empty log message ***Michael Meskes1999-05-14
|
* Update driver to 6-40-0006Byron Nikolaidis1999-05-13
|
* Fix bogus assumption that MAXALIGN is at least sizeof(pointer).Tom Lane1999-05-12
|
* Allow perl install as non-root, from Geoff KeatingBruce Momjian1999-05-10
|
* Update to PyGreSQL 2.3.Bruce Momjian1999-05-10
|
* libpq++ uses fe_setauthsvc which is deprecated and results in an errorBruce Momjian1999-05-10
| | | | | | | | | | | | | on connection. This patch changes it to use PQconnectdb rather than {fe_setauthsvc,PQsetdb}. This still isn't the complete solution, as there is no provision for user,password in class PgEnv, but it does get rid of the error message. Tested with gcc version egcs-2.91.60 19981201 (egcs-1.1.1 release) under NetBSD-1.3K/i386. Cheers, Patrick Welche
* Change error messages to oids come out as %u and not %d. Change has noBruce Momjian1999-05-10
| | | | real affect now.
* *** empty log message ***Michael Meskes1999-05-07
|
* here are some patches for 6.5.0 which I already submitted but have neverBruce Momjian1999-05-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | been applied. The patches are in the .tar.gz attachment at the end: varchar-array.patch this patch adds support for arrays of bpchar() and varchar(), which where always missing from postgres. These datatypes can be used to replace the _char4, _char8, etc., which were dropped some time ago. block-size.patch this patch fixes many errors in the parser and other program which happen with very large query statements (> 8K) when using a page size larger than 8192. This patch is needed if you want to submit queries larger than 8K. Postgres supports tuples up to 32K but you can't insert them because you can't submit queries larger than 8K. My patch fixes this problem. The patch also replaces all the occurrences of `8192' and `1<<13' in the sources with the proper constants defined in include files. You should now never find 8192 hardwired in C code, just to make code clearer. -- Massimo Dal Zotto
* *** empty log message ***Michael Meskes1999-04-26
|
* Clean up gcc warning in MULTIBYTE code.Tom Lane1999-04-25
|
* *** empty log message ***Michael Meskes1999-04-16
|
* *** 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