aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* 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.
* Minor autovacuum fixes from Matthew O'Connor.Tom Lane2003-12-08
|
* Add fflush() before sleeping, per Matthew O'Connor.Tom Lane2003-12-08
|
* 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.
* Replace unportable and overflow-prone use of 'long long' with saferTom Lane2003-12-07
| | | | 'double' arithmetic, per recent discussion.
* 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
|
* One more fix confusionTeodor Sigaev2003-12-05
|
* Avoid confusion start_parse_str function with tsearch V1Teodor Sigaev2003-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.
* Fix for word with several infinitivesTeodor Sigaev2003-12-03
|
* Update release notes for 7.3.5.Tom Lane2003-12-02
|
* 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
* I've run across a pretty serious problem with pg_autovacuum.Bruce Momjian2003-12-01
| | | | | | | | | | | | | | pg_autovacuum looses track of any table that's ever been truncated (possibly other situations too). When i truncate a table it gets a new relfilenode in pg_class. This is a problem because pg_autovacuum assumes pg_class.relfilenode will join to pg_stats_all_tables.relid. pg_stats_all_tables.relid is actallly the oid from pg_class, not the relfilenode. These two values start out equal so pg_autovacuum works initially, but it fails later on because of this incorrect assumption. This patch fixes that problem. Applied to HEAD and 7.4.X. Brian Hirt
* I noticed in the 7.4 release that in contrib/pg_autovacuum, args->logfile isBruce Momjian2003-12-01
| | | | | | | | | | | | | | not initialized if a log file is not specified on the command line. This causes an immediate segfault on systems that fill allocated memory with some value other than zero (my FreeBSD machine uses 0xD0). Several crashes later I discovered that args->user, password, host, and port are also used without being initialized. This doesn't appear to be fixed in CVS and I came up empty on a mailing list search -- hope it hasn't been reported already. Craig Boston
* Minor wordsmithing in datetime docs to try to address gripes raised byTom Lane2003-12-01
| | | | cnliou.
* netmask() and hostmask() functions should return maximum-length masklen,Tom Lane2003-12-01
| | | | per gripe from Joe Sunday.
* Fix typos noted by Halley Pacheco de Oliveira.Tom Lane2003-12-01
|
* 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
|
* Update TODO 7.4 mention.Bruce Momjian2003-11-30
|
* Update Russian FAQ, both branches.Bruce Momjian2003-11-28
| | | | Viktor Vislobokov
* Fix regression in dblink_disconnect() reported by Eduardo Stern:Joe Conway2003-11-28
| | | | | | persistent_conn was left dangling after a disconnect in the unnamed connection case, causing a subsequent disconnect to crash the backend.
* Fixes about word with several infiniteveTeodor Sigaev2003-11-27
|
* 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.
* Added missing SPI_finish() calls to get_tuple_of_interest(). Fixes bugJoe Conway2003-11-26
| | | | reported by Andrea Grassi.
* Add NetBSD Sparc as supported.Peter Eisentraut2003-11-26
|
* Cast field-length variables used in printf to int, because sometimesPeter Eisentraut2003-11-26
| | | | they might be of a wider type.
* Patches from Yutaka Tanida. Create primary key indexes after dataTatsuo Ishii2003-11-26
| | | | insertion to reduce initialization time.
* 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.
* Fix language.Peter Eisentraut2003-11-25
|
* 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.
* Ignore too long lexemeTeodor Sigaev2003-11-25
|
* 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
|
* Change "IN/NOT IN" to "IN / NOT IN" for clarity, both branches.Bruce Momjian2003-11-17
|
* k, tag the releaseREL7_4PostgreSQL Daemon2003-11-16
|
* 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.
* Another try at fixing the Linux overcommit docs, per Andrew Dunstan.Tom Lane2003-11-16
|
* Translation update for last-minute changePeter Eisentraut2003-11-16
|
* Update FAQ for 7.4 branch.Bruce Momjian2003-11-16
|
* Update HISTORYBruce Momjian2003-11-16
|