Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | ResultSet.moveToCurrentRow was checking the cached updateability flag | Kris Jurka | 2004-09-13 | |
| | | | | | | | | | | assuming it had been set instead of correctly calling the isUpdateable() method which sets the flag if needed. This usually worked because moveToCurrentRow is only useful after a moveToInsertRow call which would set the flag, but this is not required. David Bucciarelli | |||
* | Due to popular domand, backport fix for a typo in the SELECT reference | Neil Conway | 2004-09-13 | |
| | | | | page, per Thomas F. O'Connell. | |||
* | Fix bogus example for bit-string XOR (already fixed in HEAD). | Tom Lane | 2004-09-11 | |
| | | | | Per Grzegorz Wojdyla. | |||
* | Back-patch fix to disallow BEGIN/COMMIT/ROLLBACK inside SQL functions. | Tom Lane | 2004-09-06 | |
| | | | | | Not sure why this isn't causing serious problems in some simple tests, but it definitely isn't going to do anything desirable... | |||
* | Repair 'expected both swapped tables to have TOAST tables' bug in 7.4 | Tom Lane | 2004-08-31 | |
| | | | | | branch. I wasn't excited about doing this when the first report came in, but now that we have two of 'em, I suppose it had better get fixed. | |||
* | Prevent pg_ctl restart from adding -D datadir multiple times. | Bruce Momjian | 2004-08-28 | |
| | ||||
* | Make gistindex_keytest safe against NULL values. Same fix was already | Tom Lane | 2004-08-27 | |
| | | | | | made in passing for 8.0, but now that we have a bug report showing it's needed, we should put it into 7.4 branch. | |||
* | Translation update | Peter Eisentraut | 2004-08-24 | |
| | ||||
* | Brand 7.4.5 ... now that was our shortest-lived release ever ...REL7_4_5 | Tom Lane | 2004-08-18 | |
| | ||||
* | Update release history for 7.4.5. | Tom Lane | 2004-08-18 | |
| | ||||
* | Fix bug introduced into _bt_getstackbuf() on 2003-Feb-21: the initial | Tom Lane | 2004-08-17 | |
| | | | | | | | | | | value of 'start' could be past the end of the page, if the page was split by some concurrent inserting process since we visited it. In this situation the code could look at bogus entries and possibly find a match (since after all those entries still contain what they had before the split). This would lead to 'specified item offset is too large' followed by 'PANIC: failed to add item to the page', as reported by Joe Conway for scenarios involving heavy concurrent insertion activity. | |||
* | Stamp 7.4.4.REL7_4_4 | Tom Lane | 2004-08-15 | |
| | ||||
* | Back-patch fix for \r\n line endings in psql's COPY support. | Tom Lane | 2004-08-14 | |
| | | | | Andrew Dunstan. | |||
* | Translation update | Peter Eisentraut | 2004-08-14 | |
| | ||||
* | Translation update | Peter Eisentraut | 2004-08-13 | |
| | ||||
* | New build for the 7.4.4 release. | Kris Jurka | 2004-08-13 | |
| | ||||
* | Avoid crashing when restoring a saved GUC session_authorization value | Tom Lane | 2004-08-11 | |
| | | | | that refers to a now-deleted userid. Per gripe from Chris Ochs. | |||
* | Decode V3 notice messages instead of leaving them in raw form. | Kris Jurka | 2004-08-11 | |
| | | | | From Donald Fraser. | |||
* | DatabaseMetaData.getSearchString escape was a \ short of working | Kris Jurka | 2004-08-11 | |
| | | | | | because both Java's String constructor and pg's input parser strip off backslashes. | |||
* | Fix failure to guarantee that a checkpoint will write out pg_clog updates | Tom Lane | 2004-08-11 | |
| | | | | | | for transaction commits that occurred just before the checkpoint. This is an EXTREMELY serious bug --- kudos to Satoshi Okada for creating a reproducible test case to prove its existence. | |||
* | Hashed crosstab was dying with an SPI_finish error when the source SQL | Joe Conway | 2004-08-11 | |
| | | | | | produced no rows. Now it returns 0 rows instead. Adjusted regression test for this case. | |||
* | Translation update | Peter Eisentraut | 2004-08-10 | |
| | ||||
* | Change declared encoding | Peter Eisentraut | 2004-07-25 | |
| | ||||
* | New translation | Peter Eisentraut | 2004-07-25 | |
| | ||||
* | Fixed handling of cyclic defines. | Michael Meskes | 2004-07-20 | |
| | ||||
* | Fix incorrect tracking of session authorization in the presence of ACLs | Tom Lane | 2004-07-19 | |
| | | | | | that contain rights granted by non-owners. Per bug report from Nishad Prakash. | |||
* | When renaming a column that participates in a foreign key, we must | Tom Lane | 2004-07-17 | |
| | | | | | | force relcache rebuild for the other table as well as the column's own table. Otherwise, already-cached foreign key triggers will stop working. Per example from Alexander Pravking. | |||
* | When retrieving an array of numerics it attempted to set the scale on | Kris Jurka | 2004-07-15 | |
| | | | | | | the retrieved data to zero, which doesn't work for non-integer values. Oliver Dauben | |||
* | Test HAVING condition before computing targetlist of an Aggregate node. | Tom Lane | 2004-07-10 | |
| | | | | | | | This is required by SQL spec to avoid failures in cases like SELECT sum(win)/sum(lose) FROM ... GROUP BY ... HAVING sum(lose) > 0; AFAICT we have gotten this wrong since day one. Kudos to Holger Jakobs for being the first to notice. | |||
* | OK, another try at Darwin threads. | Bruce Momjian | 2004-07-08 | |
| | ||||
* | Remove OSX thread flags. No consistent report. | Bruce Momjian | 2004-07-08 | |
| | ||||
* | Add OSX thread support for next 7.4.X | Bruce Momjian | 2004-07-07 | |
| | ||||
* | Fix broken logic for pretty-printing parenthesis-suppression in UNION | Tom Lane | 2004-07-06 | |
| | | | | et al. | |||
* | Added free() calls against memory leak in interval.c. | Michael Meskes | 2004-07-05 | |
| | ||||
* | Translation update | Peter Eisentraut | 2004-07-02 | |
| | ||||
* | Override upstream DSSSL style sheet formatting changes | Peter Eisentraut | 2004-06-29 | |
| | ||||
* | - Only use typedefs inside their scope. | Michael Meskes | 2004-06-27 | |
| | | | | | - Variables that are out of scope, were not removed all the time. - Make a varchar NULL set everything to 0 when not using indicators. | |||
* | Fix apparently harmless typo. {$srcdir} -> ${srcdir} | Kris Jurka | 2004-06-24 | |
| | | | | Markus Schaber | |||
* | Fix stupid bug in installcheck | Teodor Sigaev | 2004-06-23 | |
| | ||||
* | Close the existing socket connection when reverting to the V2 | Kris Jurka | 2004-06-22 | |
| | | | | | | protocol, or encountering other connection failures. Laurent Sylvain | |||
* | Fix some problems with result sets positioned before the start or | Kris Jurka | 2004-06-21 | |
| | | | | | after the end of results. You could still call a number of methods on them like getXXX, updateXXX, and updateRow(). | |||
* | Fix updatable ResultSets stream methods (ascii, character, binary). | Kris Jurka | 2004-06-21 | |
| | | | | | | | | The existing code didn't correctly allocate data arrays, and it failed to loop when a stream didn't provide the full amount of data requested of it. Reported by Jan de Visser. | |||
* | Foreign key information results should have column name FKTABLE_CAT | Kris Jurka | 2004-06-18 | |
| | | | | | | instead of FK_TABLE_CAT. From jeff@bonevich.com. | |||
* | Added patch by ISHIDA Akio to allow indicators in execute statements. | Michael Meskes | 2004-06-17 | |
| | ||||
* | Don't throw an Exception in locatorsUpdateCopy() even though the | Kris Jurka | 2004-06-16 | |
| | | | | | | ability to update LOBs is unimplemented. The 1.5 JDK's CachedRowSet implementation calls this method regardless of whether large objects are used or not. | |||
* | Bump the build number to relase a new version. | Kris Jurka | 2004-06-16 | |
| | ||||
* | When deleteRow() is called on an updateable ResultSet the ResultSet | Kris Jurka | 2004-06-16 | |
| | | | | | | should be positioned on the previous row. Reported by Bob Messenger and Chris Pesarchick. | |||
* | Do PGAC_FUNC_GETPWUID_R_5ARG check with the proper thread flags. This | Bruce Momjian | 2004-06-16 | |
| | | | | fixes Solaris thread compiles. | |||
* | Fix DatabaseMetaData results for determining foreign key | Kris Jurka | 2004-06-16 | |
| | | | | | | | relationships. Resulting columns from getImportedExportedKeys should be FKTABLE_SCHEM and PKTABLE_SCHEM, not _SCHEMA. Per report from jeff@bonevich.com. | |||
* | Remove README.CVS when making a distribution.REL7_4_3 | Peter Eisentraut | 2004-06-13 | |
| |