- 30 Jan, 2005 11 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
right in the failure. We can always re-add it if required.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Tom Lane authored
-
- 29 Jan, 2005 2 commits
- 28 Jan, 2005 6 commits
-
-
Tom Lane authored
-
Tom Lane authored
with Postgres.
-
Tom Lane authored
clamp the estimated number of groups to table row count over 10, instead of table row count; this reflects a heuristic that people probably won't group over a near-unique set of columns, and the knowledge that we don't currently have any way to estimate the correlation of the columns better than guessing. This change creates a trivial plan change in one of the regression tests.
-
Tom Lane authored
look at the actual aggregate transition datatypes and the actual overhead needed by nodeAgg.c, instead of using pessimistic round numbers. Per a discussion with Michael Tiemann.
-
Tom Lane authored
defining List.
-
Tom Lane authored
Solaris and should be a little faster anyway, since in most scenarios all but perhaps the last path component will already exist.
-
- 27 Jan, 2005 9 commits
-
-
Tom Lane authored
functions of the aggregate, at both aggregate creation and execution times.
-
Neil Conway authored
utils/cache/lsyscache.c where it can be used by other things. Also cleans up both get_usesysid() and get_grosysid() a bit. From Stephen Frost.
-
Neil Conway authored
Relation. Patch from Alvaro Herrera, minor editorializing by Neil Conway.
-
Tom Lane authored
-
Tom Lane authored
stand to be rewritten altogether, but for now just stick a finger in the dike.
-
Teodor Sigaev authored
-
Neil Conway authored
does not match what the query expected. From Brendan Jurd, minor editorializing by Neil Conway.
-
Tom Lane authored
command. This is useful because we can allow truncation of tables referenced by foreign keys, so long as the referencing table is truncated in the same command. Alvaro Herrera
-
Neil Conway authored
Tom.
-
- 26 Jan, 2005 9 commits
-
-
Tom Lane authored
to avoid problems when a cursor depends on objects created or changed in the same subtransaction. We'd like to do better someday, but this seems the only workable answer for 8.0.1.
-
Tom Lane authored
for the postmaster to start. Dave Page
-
Tom Lane authored
it agrees with the default value of max_stack_depth.
-
Tom Lane authored
column values in -d mode. Per report from Marty Scholes. This doesn't completely solve the issue, because we still need multiple copies of the field value, but at least one copy can be got rid of painlessly ...
-
Tom Lane authored
-
Tom Lane authored
when using stdout/stdin on Windows.
-
Tom Lane authored
APPDATA directory on Windows. Magnus Hagander
-
Tom Lane authored
(It doesn't compile on HPUX either...)
-
Neil Conway authored
compares two strings' soundex values for similarity, from Kris Jurka. Also mark the text_soundex() function as STRICT, to avoid crashing on NULL input.
-
- 25 Jan, 2005 3 commits
-
-
Tom Lane authored
Also clean up incredibly poor style in TocIDRequired() usage.
-
Peter Eisentraut authored
-
Teodor Sigaev authored
regression=# select to_tsquery( '\'fotballklubber\''); to_tsquery ------------------------------------------------ 'fotball' & 'klubb' | 'fot' & 'ball' & 'klubb' (1 row) So, changed interface to dictionaries, lexize method of dictionary shoud return pointer to aray of TSLexeme structs instead of char**. Last element should have TSLexeme->lexeme == NULL. typedef struct { /* number of variant of split word , for example Word 'fotballklubber' (norwegian) has two varian to split: ( fotball, klubb ) and ( fot, ball, klubb ). So, dictionary should return: nvariant lexeme 1 fotball 1 klubb 2 fot 2 ball 2 klubb */ uint16 nvariant; /* currently unused */ uint16 flags; /* C-string */ char *lexeme; } TSLexeme;
-