aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces
Commit message (Collapse)AuthorAge
* Add provisions for using strdup replacement in the places that stillPeter Eisentraut2001-05-12
| | | | | | needed it. from our fearless Ultrix porter, Alexander Klimov <ask@wisdom.weizmann.ac.il>
* PL/Python should build portably now, if you can get over the fact thatPeter Eisentraut2001-05-12
| | | | | there's no shared libpython. Test suite works as well. Also, add some documentation.
* Stamp CVS as 7.2. Update all interface version numbers. This is theBruce Momjian2001-05-11
| | | | | time to do it, not during beta because people are using this stuff in production sometimes.
* that's just me again, here's normal patch for KOI8_U toBruce Momjian2001-05-09
| | | | | | | | | | | | | jdbc/Connection.java Andy P.S. in Connection.java if encoding=="WIN" then dbEncoding is set to "Cp1252". What if it's Cyrillic "WIN"? Than it should be "Cp1251". Is there any way to fix that without making different "WIN" encodings in PostgreSQL? Andy Rysin
* Fix libpq++'s FieldSize to return int, not short.Bruce Momjian2001-05-09
|
* Add mention of getLength returning short.Bruce Momjian2001-05-09
|
* Here's a version of my suggested diffs transplanted to 7.1 beta 5. I'mBruce Momjian2001-05-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | still looking at the best way to integrate Tom Vijlbrief's fixes (insofar as they're still needed); would 7.2 be a suitable time for incompatible API changes? Jeroen Changes: (*) Introduced bool, true, false (replacing some int, 1, 0) (*) Made some member functions const (*) Documented GetIsNull() (*) Marked DisplayTuples() and PrintTuples() as obsolescent; fixed possible portability problem (assumed that NULL pointer equals all-zero bit pattern) (*) PrintTuples(): renamed width parameter to fillAlign to conform with other usage; fixed memory leak and compile issue w.r.t. field separator (should also slightly improve performance) (*) Fixed some minor compilation issues (*) Moved "using namespace std;" out of headers, where they didn't belong; used new (temporary) preprocessor macro PGSTD to do this (*) Made ToString() static, removed unneeded memset(), made buffer size adapt to sizeof(int) (*) Made some constructors explicit (*) Changed some const std::string & parameters to plain std::string (*) Marked PgCursor::Cursor(std::string) as obsolescent (setter with same name as getter--bad style) (*) Renamed some paramaters previously named "string" (*) Introduced size_type typedef for number of tuples in result set (*) PgTransaction now supports re-opening after closing, and aborts if not explicitly committed prior to destruction J. T. Vermeulen
* Mention new jdbc mailing list instead of interfaces list.Bruce Momjian2001-05-09
|
* Run pgindent on ODBC code only, to reformat new comments.Bruce Momjian2001-05-08
|
* ODBC source code cleanup patch. Should match rest of PostgreSQL code better.Bruce Momjian2001-05-08
|
* Fix paren typo in java.Bruce Momjian2001-05-08
|
* Rewrite of planner statistics-gathering code. ANALYZE is now available asTom Lane2001-05-07
| | | | | | | | | | | | | | | | | a separate statement (though it can still be invoked as part of VACUUM, too). pg_statistic redesigned to be more flexible about what statistics are stored. ANALYZE now collects a list of several of the most common values, not just one, plus a histogram (not just the min and max values). Random sampling is used to make the process reasonably fast even on very large tables. The number of values and histogram bins collected is now user-settable via an ALTER TABLE command. There is more still to do; the new stats are not being used everywhere they could be in the planner. But the remaining changes for this project should be localized, and the behavior is already better than before. A not-very-related change is that sorting now makes use of btree comparison routines if it can find one, rather than invoking '<' twice.
* BTW it does not add encodign it just patches existing one (KOI8) toBruce Momjian2001-05-03
| | | | | | | support two - KOI8-R and KOI8-U (latter is superset of the former if not to take to the account pseudographics) Andy Rysin
* Updates for 7.1.1. Not done yet.Bruce Momjian2001-05-03
|
* Fixes to make ecpg work on Cygwin, from Jason Tishler ↵Tom Lane2001-05-03
| | | | <Jason.Tishler@dothill.com>.
* Previous commit mistakenly converted all newlines to DOS style (CR/LF).Tom Lane2001-05-02
| | | | | Convert back to Unix style --- it seems some versions of nmake insist on this.
* Add note explaining why inserts take longer as tables grow. Also suggestD'Arcy J.M. Cain2001-05-02
| | | | the way to handle this.
* Change "|zzlzzzz" argument specification to "|zzizzzz" so that the code worksD'Arcy J.M. Cain2001-05-02
| | | | | | properly on 64 bit systems. Change submitted by Marc Poinot (Marc.Poinot@onera.fr)
* Synced gram.y and preproc.y.Tom Lane2001-05-01
|
* 1) fix bugs reported by Andrea Aime.Hiroshi Inoue2001-05-01
| | | | | 2) fix a bug reported by Jan Wieck. psqlodbc is 7.01.0005 now.
* 1) Decrease the size of needlessly large buffers. For example, itHiroshi Inoue2001-04-23
| | | | | resolved the stack over flow errors reported by Johann Zuschlag. 2) Support {oj syntax for 71. servers.
* A patch to fix the following bugs.Hiroshi Inoue2001-04-23
| | | | | | | | | | | 1) [ODBC] Psqlodbc and Centura: here it is a patch posted by Matteo Cavalleli 2) [ODBC] pgsqODBC binding parameters II posted by Ludek Finstrle 3) Invalid Page Fault in PSQLODBC.DLL personal mail from Johann Zuschlag Hiroki Kataoka kataoka@interwiz.koganei.tokyo.jp
* The renewal of README thanks to Dave Page.Hiroshi Inoue2001-04-17
|
* I just noticed the beta comment. That's not actually true any moreD'Arcy J.M. Cain2001-04-12
| | | | so I removed it.
* Sorry my previous change was a mistake.Hiroshi Inoue2001-04-06
|
* 1) Fit the precision of floating point to that of server sideHiroshi Inoue2001-04-06
| | | | | | (fix by Hiroki kataoka). 2) Ensure the definition of atof()(#include stdlib.h). (suggestion by Masaaki Sakaida).
* Hopefully fixed the long long problem.Michael Meskes2001-04-05
|
* Synced pgc.l with scan.l.Michael Meskes2001-04-02
|
* On Cygwin, do initial connect() call in blocking mode, per report fromTom Lane2001-03-31
| | | | Jason Tishler.
* pqWait() should check for exception status as well as read or writeTom Lane2001-03-31
| | | | | | ready. It appears that most (all?) Unixen will consider a socket to be read or write ready if it has an error condition, but of course Microsoft does things differently.
* Marc-Andre is changing where DateTime goes. This change allows the moduleD'Arcy J.M. Cain2001-03-30
| | | | | to work either way. Change submitted by Andrew Kuchling <akuchlin@mems-exchange.org>
* Correct indenting in _quote() function.D'Arcy J.M. Cain2001-03-30
| | | | Fix submitted by Andrew Kuchling <akuchlin@mems-exchange.org>
* Applied bug fix by Adriaan Joubert <a.joubert@albourne.com>Michael Meskes2001-03-29
|
* Add changes from Mikhail Terekhov <terekhov@emc.com>.D'Arcy J.M. Cain2001-03-27
| | | | | | Use Extension method from distutils. Cleaned up mismatched indentation styles while I was at it.
* ODBC source code cleanup. Mostly alignment of #define constants.Bruce Momjian2001-03-27
|
* Add multibyte supportHiroshi Inoue2001-03-26
|
* Update the changes for version 3.2.D'Arcy J.M. Cain2001-03-25
|
* Document the --with-python flag as a simpler way of installing theD'Arcy J.M. Cain2001-03-25
| | | | | | PyGreSQL module when installing PostgreSQL. Document the location of the WIN32 binaries.
* Pick up any extra -I options for Python build.Peter Eisentraut2001-03-25
|
* Fix unportable assumptions about alignment of local char[n] variables.Tom Lane2001-03-25
|
* Fix comments that were mis-wrapped, for Tom Lane.Bruce Momjian2001-03-23
|
* Remove dashes in comments that don't need them, rewrap with pgindent.Bruce Momjian2001-03-22
|
* pgindent run. Make it all clean.Bruce Momjian2001-03-22
|
* The attached patch fixes win32.mak which got broken by the Multibyte modHiroshi Inoue2001-03-21
| | | | | | :-(, and tidies it up a little as well. Regards, Dave.
* a fix from Eiji Tokuya.Hiroshi Inoue2001-03-21
|
* Update Peter Mount's email address in README.Bruce Momjian2001-03-19
|
* Fixed bug in handling of pointers to structs.Michael Meskes2001-03-16
|
* Oops I forgot to add new files for multibyte support.Hiroshi Inoue2001-03-16
| | | | Sorry Eiji.
* Add multibyte support.Hiroshi Inoue2001-03-16
| | | | | | | | | Provide an extenisible scheme of encoding conversion. As the first step, SJIS and BIG5 are supported. From now on multibyte people would be happy to use this psqlodbc driver. Eiji Tokuya e-tokuya@mail.sankyo-unyu.co.jp
* Fix parameter handling.D'Arcy J.M. Cain2001-03-15
| | | | | Fix a bug where cs.execute('select %d + %d', (1, 2)) would get interpreted as cs.executemany('select %d + %d', (1, 2))