aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
...
* Translation updatePeter Eisentraut2004-08-10
|
* Change declared encodingPeter Eisentraut2004-07-25
|
* New translationPeter Eisentraut2004-07-25
|
* Fixed handling of cyclic defines.Michael Meskes2004-07-20
|
* Fix incorrect tracking of session authorization in the presence of ACLsTom Lane2004-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 mustTom Lane2004-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 onKris Jurka2004-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 Lane2004-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 Momjian2004-07-08
|
* Remove OSX thread flags. No consistent report.Bruce Momjian2004-07-08
|
* Add OSX thread support for next 7.4.XBruce Momjian2004-07-07
|
* Fix broken logic for pretty-printing parenthesis-suppression in UNIONTom Lane2004-07-06
| | | | et al.
* Added free() calls against memory leak in interval.c.Michael Meskes2004-07-05
|
* Translation updatePeter Eisentraut2004-07-02
|
* - Only use typedefs inside their scope.Michael Meskes2004-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 Jurka2004-06-24
| | | | Markus Schaber
* Close the existing socket connection when reverting to the V2Kris Jurka2004-06-22
| | | | | | protocol, or encountering other connection failures. Laurent Sylvain
* Fix some problems with result sets positioned before the start orKris Jurka2004-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 Jurka2004-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_CATKris Jurka2004-06-18
| | | | | | instead of FK_TABLE_CAT. From jeff@bonevich.com.
* Added patch by ISHIDA Akio to allow indicators in execute statements.Michael Meskes2004-06-17
|
* Don't throw an Exception in locatorsUpdateCopy() even though theKris Jurka2004-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 Jurka2004-06-16
|
* When deleteRow() is called on an updateable ResultSet the ResultSetKris Jurka2004-06-16
| | | | | | should be positioned on the previous row. Reported by Bob Messenger and Chris Pesarchick.
* Fix DatabaseMetaData results for determining foreign keyKris Jurka2004-06-16
| | | | | | | relationships. Resulting columns from getImportedExportedKeys should be FKTABLE_SCHEM and PKTABLE_SCHEM, not _SCHEMA. Per report from jeff@bonevich.com.
* Translation updatePeter Eisentraut2004-06-13
|
* Suppress compile warnings on machines where the INT64CONST() decorationTom Lane2004-06-13
| | | | is actually needed. Backport of Oliver Elphick's recent patch.
* Stamp 7.4.3. Still need release notes.Bruce Momjian2004-06-11
|
* ECPG preprocessor for PostgreSQL 7.4.1, 7.4.2 doubles const,Bruce Momjian2004-06-11
| | | | | | | volatile, static, and register keywords before variables, declared as VARCHAR. Sergey N. Yatskevich
* Translation updatesPeter Eisentraut2004-06-10
|
* Translation updatesPeter Eisentraut2004-06-10
|
* Translation updatePeter Eisentraut2004-06-10
|
* Add missing check for too-few-inputs when replacing a zero-dimensionalTom Lane2004-06-08
| | | | array.
* Adjust PageGetMaxOffsetNumber to ensure sane behavior on uninitializedTom Lane2004-06-05
| | | | pages, even when the macro's result is stored into an unsigned variable.
* I think I've finally identified the cause of the off-by-one-secondTom Lane2004-05-31
| | | | | | | | | | issue in timestamp conversion that we hacked around for so long by ignoring the seconds field from localtime(). It's simple: you have to watch out for platform-specific roundoff error when reducing a possibly-fractional timestamp to integral time_t form. In particular we should subtract off the already-determined fractional fsec field. This should be enough to get an exact answer with int64 timestamps; with float timestamps, throw in a rint() call just to be sure.
* Translation updatePeter Eisentraut2004-05-29
|
* [ Backpatch to 7.4.X.]Bruce Momjian2004-05-26
| | | | | | Fix problem with doing 7.0.X dumps on character varying[] fields. Christopher Kings-Lynne
* Fix erroneous error message printout when a configuration file containsTom Lane2004-05-25
| | | | | an overlength token. Printout was always garbage and could dump core entirely :-(. Per report from Martin Pitt.
* Reduce pg_listener lock taken by NOTIFY et al from AccessExclusiveLockTom Lane2004-05-22
| | | | | | to ExclusiveLock. This still serializes the operations of this module, but doesn't conflict with concurrent ANALYZE operations. Per trouble report from Philip Warner a few weeks ago.
* Fixed DEALLOCATE PREPARE to use correct function callMichael Meskes2004-05-21
|
* Fix setting timestamp values with very early year values, like 2, byKris Jurka2004-05-17
| | | | | | | formatting all years with four digits. Previously 0002-10-30 was being sent as 2-10-30 which got turned into 2030-02-10. Per report from oneway_111.
* Propagate enlargeStringInfo() fixes into the equivalent code inTom Lane2004-05-14
| | | | | pqexpbuffer.c. While a client-side failure doesn't seem like a security issue, it's still a bug.
* Tighten up overflow check in path_recv, pursuant to code review inspiredTom Lane2004-05-12
| | | | | | by Ken Ashcraft's report. I think there is no actual bug here since if the int32 value does wrap a little bit, palloc will still reject it. Still it's better that the code be obviously correct.
* Add tests to enlargeStringInfo() to avoid possible buffer-overrun orTom Lane2004-05-11
| | | | infinite-loop problems if a bogus data length is passed.
* Fix oversights in processing of LIMIT expressions during planning.Tom Lane2004-05-11
|
* Repair recalculation failure for nested sub-SELECTs, per bug report fromTom Lane2004-05-11
| | | | | Didier Moens. Bug is new in 7.4, and was caused by not updating everyplace I should've when replacing locParam markers by allParam.
* Just another bug in adjust_informix.Michael Meskes2004-05-10
|
* - Fixed bug that reversed string length in typedefs.Michael Meskes2004-05-07
|
* Allow public access to radius field to match other geometric typesKris Jurka2004-05-07
| | | | | | behavior. Per report from Declan Lynch.
* NATURAL CROSS JOIN is a contradiction in terms, not to mention disallowedTom Lane2004-05-07
| | | | | by the SQL spec and by our parser. Thanks to Jonathan Scott for finding this longstanding error.