- 19 Dec, 2003 2 commits
-
-
Tom Lane authored
unsigned integers). Per report from Jim Crate.
-
Joe Conway authored
partially-evaluated SRFs. Per report found here: http://archives.postgresql.org/pgsql-general/2003-12/msg00851.php
-
- 18 Dec, 2003 13 commits
-
-
Tom Lane authored
Per Neil Conway.
-
Tom Lane authored
evaluating a set-valued function. This fixes some additional problems with rescanning partially-evaluated SRFs.
-
Peter Eisentraut authored
-
Tom Lane authored
shut down cleanly if the plan node is ReScanned before the SRFs are run to completion. This fixes the problem for SQL-language functions, but still need work on functions using the SRF_XXX() macros.
-
Teodor Sigaev authored
-
Peter Eisentraut authored
was integrated into ecpg_informix.h, the other ones go into their own subdirectory that is automatically considered by the embedded preprocessor when in Informix mode.
-
Dave Cramer authored
-
Dave Cramer authored
-
Bruce Momjian authored
Class-Shorthand Escapes<C2><AE>. I believe it will help intrepid regex users. :) David Fetter
-
Bruce Momjian authored
```------------------------------------------------------------------- /* * relation_byte_size * Estimate the storage space in bytes for a given number of tuples * of a given width (size in bytes). */ static double relation_byte_size(double tuples, int width) { return tuples * (MAXALIGN(width) + MAXALIGN(sizeof(HeapTupleData))); } ``` ------------------------------------------------------------------- Shouldn't this be HeapTupleHeaderData and not HeapTupleData ? (Of course, from a costing perspective these shouldn't be very different but ...) Sailesh Krishnamurthy
-
Dave Cramer authored
-
Tom Lane authored
of pg_stats view definition).
-
Tom Lane authored
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 ...
-
- 17 Dec, 2003 11 commits
-
-
Tom Lane authored
not discriminate against system columns, since we support constraints on system columns, and in fact constraints on OID are moderately useful.
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
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.
-
Peter Eisentraut authored
-
Tom Lane authored
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.
-
Dave Cramer authored
a temp table
-
Dave Cramer authored
modified test case from Alexey Yudichev to be part of the testsuite
-
Michael Meskes authored
variable listing for output variables in cursor definitions - Fixed incorrect if call in long=>numeric conversion.
-
Dave Cramer authored
-
Bruce Momjian authored
-
- 16 Dec, 2003 6 commits
-
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-
Bruce Momjian authored
< o Make SET CONNECTION thread-aware > o Make SET CONNECTION thread-aware, non-standard?
-
Bruce Momjian authored
> o Make SET CONNECTION thread-aware
-
Bruce Momjian authored
-
- 15 Dec, 2003 3 commits
-
-
Peter Eisentraut authored
previous behavior of <literal>, <envar>, <acronym>, and others.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 14 Dec, 2003 5 commits
-
-
Neil Conway authored
-
Neil Conway authored
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.
-
Neil Conway authored
example from the RESET reference page because it seemed completely redundant.
-
Neil Conway authored
to the documentation on routine database maintainence activities. I also corrected a bunch of SGML markup.
-
Neil Conway authored
improvement to the SSL auth docs.
-