- 30 Oct, 1996 7 commits
-
-
Marc G. Fournier authored
Adds: -lAttributes Returns another format of the results attribute list. Per attribute a sublist of {{attname} atttype attlen} is returned and an empty string if no attributes where received. -numAttrs Returns the number of attributes in the result.
-
Marc G. Fournier authored
-
Marc G. Fournier authored
-
Marc G. Fournier authored
I found another bug in btree index. Looking at the code it seems that NULL keys are never used to build or scan a btree index (see the explain commands in the example). However this is not the case when a null key is retrieved in an outer loop of a join select and used in an index scan of an inner loop. This bug causes at least three kinds of problems: 1) the backend crashes when it tries to compare a text string with a null. 2) it is not possible to find tuples with null keys in a join. 3) null is considered equal to 0 when the datum is passed by value, see the last query. Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
-
Marc G. Fournier authored
From Andrew
-
Bruce Momjian authored
-
Bryan Henderson authored
-
- 29 Oct, 1996 2 commits
-
-
Bryan Henderson authored
-
Bryan Henderson authored
-
- 28 Oct, 1996 5 commits
-
-
Marc G. Fournier authored
FAQs
-
Marc G. Fournier authored
-
Bryan Henderson authored
has snprintf().
-
Bryan Henderson authored
For sparc_solaris, add inet_aton prototype, since it isn't in the header files included for the standard C library functions.
-
Bryan Henderson authored
the standard C library.
-
- 27 Oct, 1996 1 commit
-
-
Bryan Henderson authored
-
- 26 Oct, 1996 2 commits
-
-
Bryan Henderson authored
-
Marc G. Fournier authored
-
- 25 Oct, 1996 4 commits
-
-
Marc G. Fournier authored
Still submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
-
Bryan Henderson authored
-
Bryan Henderson authored
-
Bryan Henderson authored
-
- 24 Oct, 1996 5 commits
-
-
Marc G. Fournier authored
Submitted by: wieck@sapserv.debis.de (Jan Wieck)
-
Marc G. Fournier authored
relations and transaction is aborted Submitted by: wieck@sapserv.debis.de (Jan Wieck)
-
Marc G. Fournier authored
It's bug in nodeAgg.c on lines 241, 242: null_array = malloc(nagg); for (i=0;i<nagg;i++) null_array[i] = 'n'; oneTuple = heap_formtuple(tupType, tupValue, null_array); - your query has not only aggregates but also 'group by-ed' fields and so null_array should contain tupType->natts elements (tupType->natts > nagg in your case). Patch follows and it's very simple. VAdim
-
Marc G. Fournier authored
My guess is that the thing had bugs, and the pfree was commented out. The thing is probabally free'ed anyway at the end, so it was not a bad thing. If it does cause a bug, it will generate an error when hit, so I say unless someone else knows, let's remove it and run the regression test. -Bruce
-
Marc G. Fournier authored
-
- 23 Oct, 1996 3 commits
-
-
Marc G. Fournier authored
-
Marc G. Fournier authored
| | 1. Set default variables | 2. Include Makefile.custom to override defaults | 3. Set CFLAGS, etc. with variables | |This fixes the problem of Makefile.custom changes not taking effect. Submitted by: D'Arcy Cain
-
Bryan Henderson authored
-
- 21 Oct, 1996 11 commits
-
-
Marc G. Fournier authored
-
Marc G. Fournier authored
-
Marc G. Fournier authored
-
Marc G. Fournier authored
-
Marc G. Fournier authored
Suggested by: Randy Terbush <randy@zyzzyva.com>
-
Marc G. Fournier authored
That finishes access/*
-
Bryan Henderson authored
there because it's in config.h, which is cleaner).
-
Marc G. Fournier authored
-
Marc G. Fournier authored
-
Marc G. Fournier authored
-
Marc G. Fournier authored
- cleaned out unused variables - added missing prototype headers One outstanding -Werror failure: /home/staff/scrappy/postgres/2.0/cvs/postgres95/src/backend/access/gist/giststra t.c:117: warning: missing braces around initializer for `GISTEvaluationData.expr ession'
-