aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Fix timestamp_date for HAVE_INT64_TIMESTAMP case.REL7_3_4Tom Lane2003-07-24
|
* Add Hungarian/Turkish FAQ's to 7.3.4.Bruce Momjian2003-07-24
|
* Add to 7.3.4 release notes:Bruce Momjian2003-07-24
| | | | * Repair breakage in timestamp-to-date conversion for dates before 2000
* Repair 7.3 breakage in timestamp-to-date conversion for dates before 2000.Tom Lane2003-07-24
|
* Patch to fix additional SQL injection vulnerabilities reported by Oliver JowettBarry Lind2003-07-23
| | | | | | | | and Dmitry Tkach Modified Files: Tag: REL7_3_STABLE jdbc/org/postgresql/Driver.java.in jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
* New WAL fix release text is:Bruce Momjian2003-07-23
| | | | Prevent rare possibility of server startup failure (Tom)
* Update all FAQ's for 7.3.4.Bruce Momjian2003-07-23
|
* Stamp 7.3.4 release.Bruce Momjian2003-07-23
|
* wups, took out one memset too many ...Tom Lane2003-07-22
|
* Back-patch fix for bugs in pgstat_initstats.Tom Lane2003-07-22
|
* Allow sub[path|ltre] return void resultTeodor Sigaev2003-07-22
|
* Mark as deprecatedTeodor Sigaev2003-07-22
|
* Fix to prevent SQL injection attacks when calling setObject(int,Object,int)Barry Lind2003-07-22
| | | | | | | | | | where the Object is a String and the type is numeric (i.e. INTEGER,LONG,etc). The fix applies the standard escaping for these values. Modified Files: Tag: REL7_3_STABLE jdbc/org/postgresql/Driver.java.in jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
* Oh, for crying in a bucket ... relax Assert so that glibc's strxfrmTom Lane2003-07-17
| | | | does not dump core.
* Work around buggy strxfrm() present in some Solaris releases.Tom Lane2003-07-17
|
* For COMMENT ON DATABASE where database name is unknown or not the currentTom Lane2003-07-17
| | | | | | database, emit a WARNING and do nothing, rather than raising ERROR. Per recent discussion in which we concluded this is the best way to deal with database dumps that are reloaded into a database of a new name.
* Repair boundary-case bug introduced by patch of two months ago thatTom Lane2003-07-17
| | | | | | | | fixed incorrect initial setting of StartUpID. The logic in XLogWrite() expects that Write->curridx is advanced to the next page as soon as LogwrtResult points to the end of the current page, but StartupXLOG() failed to make that happen when the old WAL ended exactly on a page boundary. Per trouble report from Hannu Krosing.
* Fix a *second* buffer overrun bug in to_ascii(). Grumble.Tom Lane2003-07-14
|
* Don't generate 'zero' typeids in the output from gen_cross_product.Tom Lane2003-06-25
| | | | | | This is no longer necessary or appropriate since we don't use zero typeid as a wildcard anymore, and it fixes a nasty performance problem with functions with many parameters. Per recent example from Reuven Lerner.
* [ Backpatch to 7.3.X.]Bruce Momjian2003-06-25
| | | | | | | | | | | | | | | | | If they're not, the below causes problems, as the foreign key is added after the CHECK. Cluster depends on the index name, so I thought it wise to ensure all names are available, rather than leaving off the CONSTRAINT "$n" portion for internally named constraints. CREATE TABLE jkey (col integer primary key); CREATE TABLE j (col integer REFERENCES jkey); ALTER TABLE j ADD CHECK(col > 5); This is a problem in 7.3 series as well as -Tip. -- Rod Taylor <rbt@rbt.ca>
* Fix bugs in interval-to-time conversion: HAVE_INT64_TIMESTAMP case did notTom Lane2003-06-16
| | | | work at all, and neither case behaved sanely for negative intervals.
* Fix SQL function executor for case where last command of a function isTom Lane2003-06-12
| | | | not a SELECT. We didn't use to allow that, but we do now.
* Fix brain damage in deciding which python input converter to use.Tom Lane2003-06-11
|
* Add defense in assign_session_authorization() against trying to doTom Lane2003-06-06
| | | | | | catalog lookups when not in a transaction. This prevents bizarre failures if someone tries to set a value for session_authorization in postgresql.conf. Per report from Fernando Nasser.
* Fix misstatement in release-notes item.Tom Lane2003-05-26
|
* Update for 7.3.3.REL7_3_3Tom Lane2003-05-22
|
* Brand 7.3.3.Tom Lane2003-05-22
|
* Update release history for impending 7.3.3 release.Tom Lane2003-05-22
|
* Repair sometimes-incorrect computation of StartUpID after a crash, perTom Lane2003-05-22
| | | | | | | example from Rao Kumar. This is a very corner corner-case, requiring a minimum of three closely-spaced database crashes and an unlucky positioning of the second recovery's checkpoint record before you'd notice any problem. But the consequences are dire enough that it's a must-fix.
* Back-patch Jan's fix to avoid primary key lookup (and lock) if foreign keyTom Lane2003-05-21
| | | | does not change on UPDATE.
* Use -fPIC on Sparc, per Tom Callaway.Tom Lane2003-05-19
|
* Back-patch change to avoid O(N^2) behavior with lots of deferred triggers,Tom Lane2003-05-19
| | | | by making deferredTriggerInvokeEvents only scan events added since it last ran.
* Upped JDBC build number to 110 for the 7.3.3 releaseBarry Lind2003-05-19
| | | | | | Modified Files: Tag: REL7_3_STABLE Driver.java.in
* Repair quoting sloppiness, lack of schema awareness in reindexdb.Tom Lane2003-05-19
|
* Small translation updates for 7.3.3 release.Peter Eisentraut2003-05-18
|
* Fix failure when uniq-ifying an array of zero elements.Tom Lane2003-05-16
| | | | Teodor Sigaev
* Back-patch fix to allow createuser to exit on control-C (Oliver Elphick)Tom Lane2003-05-16
|
* Back-patch fix from Oliver Elphick to force ISO datestyle in dumps.Tom Lane2003-05-16
|
* Small changes to use the absolute path to system catalogs.Tom Lane2003-05-16
| | | | Greg Sabino Mullane
* Check calling context for connectby_text(), per Joe Conway.Tom Lane2003-05-16
|
* Apply fixes for problems with dropped columns whose types have also beenTom Lane2003-05-12
| | | | dropped. Add regression test, too.
* Adjust CreateCheckpoint so that buffer dumping activities and cleanup ofTom Lane2003-05-10
| | | | | | dead xlog segments are not considered part of a critical section. It is not necessary to force a database-wide panic if we get a failure in these operations. Per recent trouble reports.
* Be more precise about check for flex 2.5.3, backpatched to 7.3.X.Bruce Momjian2003-05-07
|
* Allow 60 in seconds fields of timestamp, time, interval input values.Tom Lane2003-05-04
| | | | | | Per recent discussion on pgsql-general, this is appropriate for spec compliance, and has the nice side-effect of easing porting from old pg_dump files that exhibit the 59.999=>60.000 roundoff problem.
* When a TIMESTAMP, TIME, or INTERVAL precision is specified larger than ourTom Lane2003-05-04
| | | | | | | | | | | | implementation limits, do not issue an ERROR; instead issue a NOTICE and use the max supported value. Per pgsql-general discussion of 28-Apr, this is needed to allow easy porting from pre-7.3 releases where the limits were higher. Unrelated change in same area: accept GLOBAL TEMP/TEMPORARY as a synonym for TEMPORARY, as per pgsql-hackers discussion of 15-Apr. We previously rejected it, but that was based on a misreading of the spec --- SQL92's GLOBAL temp tables are really closer to what we have than their LOCAL ones.
* Fix erroneous space calculation leading to core dump in dumpProcLangs,Tom Lane2003-05-03
| | | | | | per report from Olivier Prenant. Also fix off-by-one space calculation in ReadToc; this woould not have hurt us until we had more than 100 dependencies for a single object, but wrong is wrong.
* Repair permissions problem in RI triggers: query parsing has to be doneTom Lane2003-04-26
| | | | | as the correct user, not only query execution. Per report from Sean Chittenden.
* Correct oversight in createlang: test for pre-existing handler functionTom Lane2003-04-26
| | | | | was broken by opaque->language_handler change. I see this is already fixed in CVS tip, but must back-patch for 7.3.3.
* Back-patch fixes for zero-column tables in COPY, pg_dump.Tom Lane2003-04-25
|
* Make [VACUUM] ANALYZE safe on zero-column tables.Tom Lane2003-04-25
|