summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-08-11Hashed crosstab was dying with an SPI_finish error when the source SQLJoe Conway
produced no rows. Now it returns 0 rows instead. Adjusted regression test for this case.
2004-08-10Translation updatePeter Eisentraut
2004-07-25Change declared encodingPeter Eisentraut
2004-07-25New translationPeter Eisentraut
2004-07-20Fixed handling of cyclic defines.Michael Meskes
2004-07-19Fix incorrect tracking of session authorization in the presence of ACLsTom Lane
that contain rights granted by non-owners. Per bug report from Nishad Prakash.
2004-07-17When renaming a column that participates in a foreign key, we mustTom Lane
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.
2004-07-15When retrieving an array of numerics it attempted to set the scale onKris Jurka
the retrieved data to zero, which doesn't work for non-integer values. Oliver Dauben
2004-07-10Test HAVING condition before computing targetlist of an Aggregate node.Tom Lane
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.
2004-07-08OK, another try at Darwin threads.Bruce Momjian
2004-07-08Remove OSX thread flags. No consistent report.Bruce Momjian
2004-07-07Add OSX thread support for next 7.4.XBruce Momjian
2004-07-06Fix broken logic for pretty-printing parenthesis-suppression in UNIONTom Lane
et al.
2004-07-05Added free() calls against memory leak in interval.c.Michael Meskes
2004-07-02Translation updatePeter Eisentraut
2004-06-29Override upstream DSSSL style sheet formatting changesPeter Eisentraut
2004-06-27- Only use typedefs inside their scope.Michael Meskes
- Variables that are out of scope, were not removed all the time. - Make a varchar NULL set everything to 0 when not using indicators.
2004-06-24Fix apparently harmless typo. {$srcdir} -> ${srcdir}Kris Jurka
Markus Schaber
2004-06-23Fix stupid bug in installcheckTeodor Sigaev
2004-06-22Close the existing socket connection when reverting to the V2Kris Jurka
protocol, or encountering other connection failures. Laurent Sylvain
2004-06-21Fix some problems with result sets positioned before the start orKris Jurka
after the end of results. You could still call a number of methods on them like getXXX, updateXXX, and updateRow().
2004-06-21Fix updatable ResultSets stream methods (ascii, character, binary).Kris Jurka
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.
2004-06-18Foreign key information results should have column name FKTABLE_CATKris Jurka
instead of FK_TABLE_CAT. From jeff@bonevich.com.
2004-06-17Added patch by ISHIDA Akio to allow indicators in execute statements.Michael Meskes
2004-06-16Don't throw an Exception in locatorsUpdateCopy() even though theKris Jurka
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.
2004-06-16Bump the build number to relase a new version.Kris Jurka
2004-06-16When deleteRow() is called on an updateable ResultSet the ResultSetKris Jurka
should be positioned on the previous row. Reported by Bob Messenger and Chris Pesarchick.
2004-06-16Do PGAC_FUNC_GETPWUID_R_5ARG check with the proper thread flags. ThisBruce Momjian
fixes Solaris thread compiles.
2004-06-16Fix DatabaseMetaData results for determining foreign keyKris Jurka
relationships. Resulting columns from getImportedExportedKeys should be FKTABLE_SCHEM and PKTABLE_SCHEM, not _SCHEMA. Per report from jeff@bonevich.com.
2004-06-13Remove README.CVS when making a distribution.REL7_4_3Peter Eisentraut
2004-06-13Translation updatePeter Eisentraut
2004-06-13Correct erroneous table title, per Halley Pacheco de Oliveira.Tom Lane
2004-06-13Suppress compile warnings on machines where the INT64CONST() decorationTom Lane
is actually needed. Backport of Oliver Elphick's recent patch.
2004-06-12Now needs to include <ctype.h>.Tom Lane
2004-06-12Some editorializing on 7.4.3 release notes.Tom Lane
2004-06-12Markup fix.Bruce Momjian
2004-06-12Fix markupBruce Momjian
2004-06-12Update release notes for 7.4.3.Bruce Momjian
2004-06-11Stamp 7.4.3. Still need release notes.Bruce Momjian
2004-06-11ECPG preprocessor for PostgreSQL 7.4.1, 7.4.2 doubles const,Bruce Momjian
volatile, static, and register keywords before variables, declared as VARCHAR. Sergey N. Yatskevich
2004-06-10Translation updatesPeter Eisentraut
2004-06-10Translation updatesPeter Eisentraut
2004-06-10Translation updatePeter Eisentraut
2004-06-10Add Brazilian version of FAQ.Bruce Momjian
Euler Taveira de Oliveira
2004-06-08Add missing check for too-few-inputs when replacing a zero-dimensionalTom Lane
array.
2004-06-08tag this as 7.4.3 and copyright date 2004PostgreSQL Daemon
2004-06-07Remove asymetrical word processing in query and textTeodor Sigaev
2004-06-05Adjust PageGetMaxOffsetNumber to ensure sane behavior on uninitializedTom Lane
pages, even when the macro's result is stored into an unsigned variable.
2004-05-31I think I've finally identified the cause of the off-by-one-secondTom Lane
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.
2004-05-29Translation updatePeter Eisentraut