Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Infrastructure for upgraded error reporting mechanism. elog.c is | Tom Lane | 2003-04-24 |
| | | | | | | | rewritten and the protocol is changed, but most elog calls are still elog calls. Also, we need to contemplate mechanisms for controlling all this functionality --- eg, how much stuff should appear in the postmaster log? And what API should libpq expose for it? | ||
* | Add PQunescapeBytea() and PQfeeMem() to the Win32 DLL list. | Bruce Momjian | 2003-04-24 |
| | | | | Karl Waclawek | ||
* | Remove Win32 special rename/unlink from libpq. | Bruce Momjian | 2003-04-22 |
| | |||
* | Add dirmod to libpq Makefile. | Bruce Momjian | 2003-04-22 |
| | |||
* | Another round of protocol changes. Backend-to-frontend messages now all | Tom Lane | 2003-04-22 |
| | | | | | | | | | | have length words. COPY OUT reimplemented per new protocol: it doesn't need \. anymore, thank goodness. COPY BINARY to/from frontend works, at least as far as the backend is concerned --- libpq's PQgetline API is not up to snuff, and will have to be replaced with something that is null-safe. libpq uses message length words for performance improvement (no cycles wasted rescanning long messages), but not yet for error recovery. | ||
* | Second round of FE/BE protocol changes. Frontend->backend messages now | Tom Lane | 2003-04-19 |
| | | | | have length counts, and COPY IN data is packetized into messages. | ||
* | Make Win32 tests to match existing Cygwin tests, where appropriate. | Bruce Momjian | 2003-04-18 |
| | |||
* | First phase of FE/BE protocol modifications: new StartupPacket layout | Tom Lane | 2003-04-17 |
| | | | | | | with variable-width fields. No more truncation of long user names. Also, libpq can now send its environment-variable-driven SET commands as part of the startup packet, saving round trips to server. | ||
* | Applied patches from Kris Jurka fixing a string tokenizing problem and | Barry Lind | 2003-04-17 |
| | | | | | | | | | | fixing an order by problem for index metadata results. Also includes removing some unused code as well as a fix to the toString method on statement. Modified Files: jdbc/org/postgresql/jdbc1/AbstractJdbc1DatabaseMetaData.java jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java | ||
* | Fix some problems exposed by building outside the source tree. | Tom Lane | 2003-04-16 |
| | |||
* | path.c needs to be included in libpq; per Joe Conway. | Tom Lane | 2003-04-14 |
| | |||
* | exposed the addDataType method to the PGConnection, allows users to add ↵ | Dave Cramer | 2003-04-14 |
| | | | | datatypes | ||
* | Applied patch submitted by Nic Ferrier with some cleanups of his previous | Barry Lind | 2003-04-13 |
| | | | | | | | | patch to add cursor based queries. Modified Files: jdbc/org/postgresql/core/BaseConnection.java jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java | ||
* | Fix error recovery for SSL_read/SSL_write calls. | Tom Lane | 2003-04-10 |
| | |||
* | Informix fixes. | Michael Meskes | 2003-04-10 |
| | |||
* | Get rid of inappropriate flags in CPPFLAGS override --- these break | Tom Lane | 2003-04-08 |
| | | | | non-gcc compilers, and they would never belong in CPPFLAGS anyway. | ||
* | Added some more informix compatibility functions. | Michael Meskes | 2003-04-08 |
| | |||
* | Add Win32 path handling for / vs. \ and drive letters. | Bruce Momjian | 2003-04-04 |
| | |||
* | Add prototype for toupper/tolower(). | Bruce Momjian | 2003-04-03 |
| | |||
* | Whack getaddrinfo() patch around until it works, more or less, on | Tom Lane | 2003-04-02 |
| | | | | machines without IPv6. Or at least it works on HPUX 10.20 ... | ||
* | More patches for informix compatibility. | Michael Meskes | 2003-04-01 |
| | |||
* | Forgot two new files and one that was moved. | Michael Meskes | 2003-03-30 |
| | |||
* | Moved Informix stuff to its own compat library. Interval datetype is now ↵ | Michael Meskes | 2003-03-30 |
| | | | | fully functional. | ||
* | Simplify the socket handling code by supplying a replacement getaddrinfo() | Peter Eisentraut | 2003-03-29 |
| | | | | function if the OS doesn't provide one. | ||
* | Add <stdlib> to add calloc() prototype. | Bruce Momjian | 2003-03-27 |
| | |||
* | More changes to pgtypeslib and set optimization to -O1. | Michael Meskes | 2003-03-27 |
| | |||
* | patch to notify listeners on error from Csaba Nagy | Dave Cramer | 2003-03-25 |
| | |||
* | Use PQfreemem() consistently, and document its use for Notify. | Bruce Momjian | 2003-03-25 |
| | | | | Keep PQfreeNotify() around for binary compatibility. | ||
* | added DISTINCT to the query to get cross reference. This is required when ↵ | Dave Cramer | 2003-03-25 |
| | | | | two columns in a table are both foreign keys to another table. From Peter Royal proyal@pace2020.com | ||
* | fixed problem where information from previous updates was leaking into ↵ | Dave Cramer | 2003-03-25 |
| | | | | subsequent updates patch from Shawn Green, slightly modified | ||
* | New build number | Barry Lind | 2003-03-24 |
| | |||
* | Fix bug in reading acls (didn't treat null acl as meaning the table owner had | Barry Lind | 2003-03-24 |
| | | | | | | | | full privs), also updated the regression test for this case. Modified Files: jdbc/org/postgresql/jdbc1/AbstractJdbc1DatabaseMetaData.java jdbc/org/postgresql/test/jdbc2/DatabaseMetaDataTest.java | ||
* | Remove ecpg #warning with approval from Michael. | Bruce Momjian | 2003-03-22 |
| | |||
* | Add missing #include for calloc in ecpg. | Bruce Momjian | 2003-03-22 |
| | |||
* | Add PQfreemem() call for Win32. | Bruce Momjian | 2003-03-22 |
| | |||
* | Make "win" a separate port from "cygwin". This means you can now | Peter Eisentraut | 2003-03-21 |
| | | | | | configure under native Windows (MinGW that is), but you won't get very far compiling yet. The dynaloader files are from Jan Wieck's patch set. | ||
* | Do not free prepares statements at the end of a transaction. | Michael Meskes | 2003-03-21 |
| | |||
* | Changes to the parser to accept new datatypes. | Michael Meskes | 2003-03-21 |
| | |||
* | Started adding date and timestamp. | Michael Meskes | 2003-03-20 |
| | |||
* | PGRES_POLLING_ACTIVE is unused, keep for backward compatibility. | Bruce Momjian | 2003-03-20 |
| | | | | Lennert Buytenhek | ||
* | Avoid mysterious warning about possibly uninitialized variable. | Peter Eisentraut | 2003-03-19 |
| | |||
* | Applied patch to work around server bug. | Barry Lind | 2003-03-19 |
| | | | | | Modified Files: jdbc/org/postgresql/jdbc1/AbstractJdbc1Connection.java | ||
* | Improve error message. | Peter Eisentraut | 2003-03-18 |
| | |||
* | Some bugfixes for numerical library. | Michael Meskes | 2003-03-18 |
| | |||
* | Applied updated translation patch | Barry Lind | 2003-03-18 |
| | | | | | Modified Files: errors_zh_TW.properties | ||
* | Reorder crypt.h include for SunOS compile problem. | Bruce Momjian | 2003-03-17 |
| | | | | Fred Houweling | ||
* | Forgot some files... | Michael Meskes | 2003-03-16 |
| | |||
* | Started working on a seperate pgtypes library. First test work. PLEASE test ↵ | Michael Meskes | 2003-03-16 |
| | | | | compilation on iother systems. | ||
* | Fixed parsing to handle \n for updateable result sets. Bug reported by Rich ↵ | Barry Lind | 2003-03-14 |
| | | | | | | | Cullingford. Modified Files: jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java | ||
* | Improved error message and added some log messages in batch update functionality | Barry Lind | 2003-03-14 |
| | | | | | | | Modified Files: jdbc/org/postgresql/errors.properties jdbc/org/postgresql/jdbc2/AbstractJdbc2Statement.java jdbc/org/postgresql/util/PSQLException.java |