Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-12-18 | Be a little smarter in group_clauses_by_indexkey_for_join: detect cases | Tom Lane | |
where a joinclause is redundant with a restriction clause. Original coding believed this was impossible and didn't need to be checked for, but that was a thinko ... | |||
2003-12-17 | information_schema.constraint_column_usage and key_column_usage should | Tom Lane | |
not discriminate against system columns, since we support constraints on system columns, and in fact constraints on OID are moderately useful. | |||
2003-12-17 | Fix DecodeInterval to handle '-0.1' sanely, per gripe from Tilo Schwarz. | Tom Lane | |
2003-12-17 | Reorder tests in parse_coerce so that ANY/ANYELEMENT/ANYARRAY coercion | Tom Lane | |
does not affect UNKNOWN-type literals or Params. This fixes the recent complaint about count('x') being broken, and improves consistency in a few other respects too. | |||
2003-12-17 | Remove pg_id. | Peter Eisentraut | |
2003-12-17 | Repair planner failure when there are multiple IN clauses, each with | Tom Lane | |
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. | |||
2003-12-17 | revoked patch from Kris Jurka to fix multiarguments, and changed test to create | Dave Cramer | |
a temp table | |||
2003-12-17 | patch from Kris Jurka to fix large object 7.1 compatible protocol issues | Dave Cramer | |
modified test case from Alexey Yudichev to be part of the testsuite | |||
2003-12-17 | - Added just another patch by Dave that fixes a reversed order in | Michael Meskes | |
variable listing for output variables in cursor definitions - Fixed incorrect if call in long=>numeric conversion. | |||
2003-12-17 | added polish translation submitted by Piotr Maj | Dave Cramer | |
2003-12-16 | Fix constraint_column_usage for foreign keys. | Peter Eisentraut | |
2003-12-15 | Add mention with might need to use cp -R someday for portability. | Bruce Momjian | |
2003-12-14 | I posted some bufmgr cleanup a few weeks ago, but it conflicted with | Neil Conway | |
some concurrent changes Jan was making to the bufmgr. Here's an updated version of the patch -- it should apply cleanly to CVS HEAD and passes the regression tests. This patch makes the following changes: - remove the UnlockAndReleaseBuffer() and UnlockAndWriteBuffer() macros, and replace uses of them with calls to the appropriate functions. - remove a bunch of #ifdef BMTRACE code: it is ugly & broken (i.e. it doesn't compile) - make BufferReplace() return a bool, not an int - cleanup some logic in bufmgr.c; should be functionality equivalent to the previous code, just cleaner now - remove the BM_PRIVATE flag as it is unused - improve a few comments, etc. | |||
2003-12-12 | This patch properly sets the prototype for the on_shmem_exit and | Peter Eisentraut | |
on_proc_exit functions, and adjust all other related code to use the proper types too. by Kurt Roeckx | |||
2003-12-12 | add missing SQLState by Patrick Higgins | Dave Cramer | |
2003-12-12 | cancel row updates sets values to null by Kris Jurka | Dave Cramer | |
2003-12-12 | patch to indicate why test cases failed from Oliver Jowett | Dave Cramer | |
2003-12-12 | patch to fix returning he information schema as a system object by Kris Jurka | Dave Cramer | |
2003-12-12 | fix casting pooled connections to PGStatement problem patch by JariP | Dave Cramer | |
2003-12-12 | patch to build under jdk1.1 from Richard Scranton | Dave Cramer | |
2003-12-12 | binary stream patch by Kris Jurka fixes empty stream failure | Dave Cramer | |
2003-12-12 | metadata encoding patch from Kris Jurka | Dave Cramer | |
2003-12-11 | New translation | Peter Eisentraut | |
2003-12-11 | Fix thinko in comment. | Tom Lane | |
2003-12-11 | build number set to 300 to avoid conflict with 7.4 builds | Dave Cramer | |
threadsafe patch from Karl von Randow applied | |||
2003-12-11 | patch to deal with unique foreign keys in 7.4 from Kris Jurka | Dave Cramer | |
2003-12-11 | tch to make sure PSQLState is Serializable and a test case to prove it | Dave Cramer | |
2003-12-11 | patch to make sure PSQLState is Serializable and a test case to prove it | Dave Cramer | |
2003-12-10 | incremented build to 211 | Dave Cramer | |
2003-12-09 | query_tree_mutator should copy RangeTblEntry nodes even when it's not | Tom Lane | |
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. | |||
2003-12-08 | Whole-row references were broken for subqueries and functions, because | Tom Lane | |
attr_needed/attr_widths optimization failed to allow for Vars with attno zero in this case. Per report from Tatsuo Ishii. | |||
2003-12-08 | Work around naming conflict between zlib and OpenSSL by tweaking inclusion | Tom Lane | |
order. Remove some unnecessary #includes (that duplicate c.h). | |||
2003-12-07 | Remove test on c.relkind from check_constraints view; unnecessary and | Tom Lane | |
prevents view from showing constraints on domains. This addresses the other half of Claus Colloseus' bug report. | |||
2003-12-07 | Fix typmod interpretation for bit types. (It was erroneously assumed that | Peter Eisentraut | |
for bit(x), the typmod stores x+4, like for the character types.) | |||
2003-12-07 | One more pass at reducing the cost of pg_dump's new implementation: | Tom Lane | |
reduce the number of times TopoSort() has to be executed by trying to extract multiple dependency loops from each pass, instead of only one. This saves about another factor of ten on the regression database. This could be considered as another exercise in grokking Fred Brooks' maxim: Representation *is* the essence of programming. | |||
2003-12-07 | Repair indexed bytea like operations, and related selectivity | Joe Conway | |
functionality. Per bug report by Alvar Freude: http://archives.postgresql.org/pgsql-bugs/2003-12/msg00022.php | |||
2003-12-07 | Speed up findObjectByCatalogId() to get rid of the other salient | Tom Lane | |
bottleneck in the new pg_dump code. | |||
2003-12-06 | Replace not-very-bright implementation of topological sort with a better | Tom Lane | |
one (use a priority heap to keep track of items ready to output, instead of searching the input array each time). This brings the runtime of pg_dump back to about what it was in 7.4. | |||
2003-12-06 | Massive overhaul of pg_dump: make use of dependency information from | Tom Lane | |
pg_depend to determine a safe dump order. Defaults and check constraints can be emitted either as part of a table or domain definition, or separately if that's needed to break a dependency loop. Lots of old half-baked code for controlling dump order removed. | |||
2003-12-05 | Guard against bug in Solaris' bsearch(), per Michael Wildpaner. | Tom Lane | |
2003-12-03 | catversion change needed by previous read-onlu GUC variables commit. | Joe Conway | |
2003-12-03 | Added new group of read-only GUC variables to allow simple access | Joe Conway | |
to certain compile-time options (FUNC_MAX_ARGS, INDEX_MAX_KEYS, NAMEDATALEN, BLCKSZ, HAVE_INT64_TIMESTAMP). Also added "category", "short_desc", and "extra_desc" to the pg_settings view. Per recent discussion here: http://archives.postgresql.org/pgsql-patches/2003-11/msg00363.php | |||
2003-12-03 | Planner failed to be smart about binary-compatible expressions in pathkeys | Tom Lane | |
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. | |||
2003-12-03 | Added patch by Dave Cramer for array handling in ecpglib. | Michael Meskes | |
2003-12-02 | Add a warning to AtEOXact_SPI() to catch cases where the current | Joe Conway | |
transaction has been committed without SPI_finish() being called first. Per recent discussion here: http://archives.postgresql.org/pgsql-patches/2003-11/msg00286.php | |||
2003-12-02 | Fix some small errors. | Peter Eisentraut | |
2003-12-02 | Code and docs review for numeric-factorial patch. | Tom Lane | |
2003-12-01 | Fix initdb use of mkdir_p(). | Bruce Momjian | |
Andrew Dunstan | |||
2003-12-01 | The attached patch enables contrib/cube to build cleanly under Cygwin | Bruce Momjian | |
(again). Please consider this patch for the 7.4.1 branch (if there will be one) too. Jason Tishler | |||
2003-12-01 | This patch refactors execTuples.c in two ways. | Bruce Momjian | |
Neil Conway |