aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
...
* Repair planner failure when there are multiple IN clauses, each withTom Lane2003-12-17
| | | | | | | a join in its subselect. In this situation we *must* build a bushy plan because there are no valid left-sided or right-sided join trees. Accordingly, hoary sanity check needs an update. Per report from Alessandro Depase.
* back patching fix for compat 7.1 binary stream issues with the new protocolDave Cramer2003-12-17
| | | | added test for same
* Applied all bug fixes from head also to 7.4. Just bugfixes, no new features.Michael Meskes2003-12-17
|
* Fix constraint_column_usage for foreign keys.Peter Eisentraut2003-12-16
|
* Stamp 7.4.1.Bruce Momjian2003-12-13
| | | | Update 7.4.1 FAQ's to current.
* patch for returning database metadata as system objects from Kris JurkaDave Cramer2003-12-13
|
* add missing SQLState by Patrick HigginsDave Cramer2003-12-12
|
* cancel row updates sets values to null by Kris JurkaDave Cramer2003-12-12
|
* patch to indicate why test cases failed from Oliver JowettDave Cramer2003-12-12
|
* fix casting pooled connections to PGStatement problem patch by JariPDave Cramer2003-12-12
|
* patch to build under jdk1.1 from Richard ScrantonDave Cramer2003-12-12
|
* binary stream patch by Kris Jurka fixes empty stream failureDave Cramer2003-12-12
|
* metadata encoding patch from Kris JurkaDave Cramer2003-12-12
|
* patch for unique foreign keys and test case from Kris JurkaDave Cramer2003-12-11
|
* patch to make PSQLState serializable, and a test case for itDave Cramer2003-12-11
| | | | added a test case for getLastOID
* incremented the build number to 210Dave Cramer2003-12-10
|
* query_tree_mutator should copy RangeTblEntry nodes even when it's notTom Lane2003-12-09
| | | | | | | planning to modify them itself. Otherwise we end up with shared RTE substructure, which breaks inheritance_planner because the rte->inh flag needs to be independent in each copied subquery. Per bug report from Chris Piker.
* Whole-row references were broken for subqueries and functions, becauseTom Lane2003-12-08
| | | | | attr_needed/attr_widths optimization failed to allow for Vars with attno zero in this case. Per report from Tatsuo Ishii.
* Remove test on c.relkind from check_constraints view; unnecessary andTom Lane2003-12-07
| | | | | prevents view from showing constraints on domains. This addresses the other half of Claus Colloseus' bug report.
* Fix typmod interpretation for bit types. (It was erroneously assumed thatPeter Eisentraut2003-12-07
| | | | for bit(x), the typmod stores x+4, like for the character types.)
* Repair indexed bytea like operations, and related selectivityJoe Conway2003-12-07
| | | | | functionality. Per bug report by Alvar Freude: http://archives.postgresql.org/pgsql-bugs/2003-12/msg00022.php
* backpatch for driver threadsafe problemsDave Cramer2003-12-05
|
* patch from Kris Jurka to allow the server end port to be specified when runningDave Cramer2003-12-05
| | | | regression tests, this is a backpatch to 7.4
* Guard against bug in Solaris' bsearch(), per Michael Wildpaner.Tom Lane2003-12-05
|
* Planner failed to be smart about binary-compatible expressions in pathkeysTom Lane2003-12-03
| | | | | | and hash bucket-size estimation. Issue has been there awhile but is more critical in 7.4 because it affects varchar columns. Per report from Greg Stark.
* The attached patch enables contrib/cube to build cleanly under CygwinBruce Momjian2003-12-02
| | | | | | | (again). Please consider this patch for the 7.4.1 branch (if there will be one) too. Jason Tishler
* netmask() and hostmask() functions should return maximum-length masklen,Tom Lane2003-12-01
| | | | per gripe from Joe Sunday.
* Force zero_damaged_pages to be effectively ON during recovery from WAL,Tom Lane2003-12-01
| | | | | since there is no need to worry about damaged pages when we are going to overwrite them anyway from the WAL. Per recent discussion.
* Make PQescapeBytea and byteaout consistent with each other, andJoe Conway2003-11-30
| | | | | | octal escape all octets outside the range 0x20 to 0x7e. This fixes the problem pointed out by Sergey Yatskevich here: http://archives.postgresql.org/pgsql-bugs/2003-11/msg00140.php
* Backpatch Borland thread.c fix to 7.4.X.Bruce Momjian2003-11-30
|
* Second try at fixing no-room-to-move-down PANIC in compact_fsm_storage.Tom Lane2003-11-26
| | | | | | Ward's report that it can still happen in RC2 forces me to realize that this is not a can't-happen condition after all, and that the compaction code had better cope rather than panicking.
* Cast field-length variables used in printf to int, because sometimesPeter Eisentraut2003-11-26
| | | | they might be of a wider type.
* Repair subselect.c's occasional assignment of the wrong vartypmod toTom Lane2003-11-25
| | | | | | | Vars created to fill subplan args lists. This is an ancient error, going back at least to 7.0, but is more easily triggered in 7.4 than before because we no longer compare varlevelsup when deciding whether a Param slot can be re-used. Fixes bug reported by Klint Gore.
* Band-aid solution for problems with SubPlans used in hash join clauses,Tom Lane2003-11-25
| | | | | | | | | | per report from Andrew Holm-Hansen. The difficulty arises from the fact that the planner allowed a Hash node's hashkeys to share substructure with the parent HashJoin node's hashclauses, plus some rather bizarre choices about who initializes what during executor startup. A cleaner but more invasive solution is to not store hashkeys separately in the plan tree at all, but let the HashJoin node deconstruct hashclauses during executor startup. I plan to fix it that way in HEAD.
* Install all the headers files that the ones that are already installedPeter Eisentraut2003-11-25
| | | | depend on.
* Overdue code review for ALTER SEQUENCE patch. Don't generate illegal NodeTom Lane2003-11-24
| | | | | | tree for CYCLE option; don't assume zeros are invalid values for sequence fields other than increment_by; don't reset cache_value when not told to; simplify code for testing whether to apply defaults.
* Repair missed renamings of show_statement_stats and show_executor_stats.Tom Lane2003-11-24
|
* Rename USE_THREADS to ENABLE_THREAD_SAFETY to avoid name clash with Perl.Peter Eisentraut2003-11-24
| | | | | Fixes compliation failure with --enable-thread-safety --with-perl and Perl 5.6.1.
* Fixed typo in create schema parsing.Michael Meskes2003-11-19
|
* Fix datetime input parsing to accept YYYY-MONTHNAME-DD and related syntaxes,Tom Lane2003-11-16
| | | | | | which had been unintentionally broken by recent changes to tighten up the DateStyle rules for all-numeric date input. Add documentation and regression tests for this, too.
* Translation update for last-minute changePeter Eisentraut2003-11-16
|
* Second try at adjusting translations for last-minute changes.Peter Eisentraut2003-11-15
|
* Make creation of statistics collection socket more robust, by allowing itTom Lane2003-11-15
| | | | | to try additional addresses returned from getaddrinfo() if the first one fails at the bind() or connect() steps. Per yesterday's discussion.
* Translation updatePeter Eisentraut2003-11-15
|
* Adjust translations for CREATE TABLE reference page change.Peter Eisentraut2003-11-15
|
* Translation updatesPeter Eisentraut2003-11-15
|
* Translation updatesPeter Eisentraut2003-11-14
|
* Regenerate text files.Peter Eisentraut2003-11-13
|
* Update win32 include file on 7.4 branch.Bruce Momjian2003-11-13
|
* AcceptResult() was missing a case for PGRES_EMPTY_QUERY --- probablyTom Lane2003-11-12
| | | | | my fault. Adding it fixes bogus message display when reading a block comment at the end of a script file.