- 29 Jul, 2000 1 commit
-
-
Tom Lane authored
I did not force. I marked numeric as compressable-but-not-move-off-able, partly to test that storage mode and partly because I've got doubts that numerics are large enough to need external storage.
-
- 28 Jul, 2000 5 commits
-
-
Thomas G. Lockhart authored
Note that this has changed some of the edge cases for what is accepted as a type name and/or column id. Regression test passes, but more tweaks may be coming...
-
Tom Lane authored
the planner may try to generate them as a result of transitivity of the existing int2-vs-int4 and int4-vs-int8 operators. In fact, it is now necessary that mergejoinable cross-datatype operators form closed sets. Add an opr_sanity regress test to detect missing operators.
-
Bruce Momjian authored
-
Tom Lane authored
-
Tom Lane authored
-
- 27 Jul, 2000 16 commits
-
-
Tom Lane authored
eval_const_expressions tries to simplify an SQL function.
-
Bruce Momjian authored
-
Bruce Momjian authored
for today's snapshot Andreas
-
Bruce Momjian authored
FreeBSD/Intel and DecUX/Alpha machines. The bug appears in postgresql 6.5.3 and 7.0.2. Can someone please review it and apply it to the source tree? Sometimes when the postgres connection dies it is necessary to attempt to reconnect. Calling the pgconnection::Connect method in a derived class leaks memory because it does not clear the current connection (if there is one). These patches ensures that any open connections are closed before attempting to open a new one. -Michael Richards
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Tom Lane authored
of planning. This should reduce memory requirements for large joins.
-
Tom Lane authored
discussion on pghackers a few days ago.
-
Bruce Momjian authored
-
- 26 Jul, 2000 4 commits
-
-
Tom Lane authored
to use with a multiple-key index. Formerly we would only extract clauses that had to do with the first key of the index, which was correct but didn't exploit the index fully.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 25 Jul, 2000 6 commits
-
-
Tom Lane authored
if given a node type it doesn't support. As is, wrong results from a mergejoin would go undetected.
-
Tom Lane authored
nor any OID in the reserved range (1-16383).
-
Tom Lane authored
failure to MAXALIGN the start of shmem allocable space. No reports of trouble here, just compulsive tidiness.
-
Tom Lane authored
-
Tom Lane authored
actually, but who could understand it with no comments? Fix bug while at it: _bt_orderkeys would try to invoke comparisons on NULL inputs, given the right sort of redundant quals.
-
Tom Lane authored
-
- 24 Jul, 2000 5 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Philip Warner authored
-
Philip Warner authored
- connect as appropriate user in pg_restore with db connection - dump owner of rule in pg_dump
-
Tom Lane authored
mergejoinable qual clauses, and add them to the query quals. For example, WHERE a = b AND b = c will cause us to add AND a = c. This is necessary to ensure that it's safe to use these variables as interchangeable sort keys, which is something 7.0 knows how to do. Should provide a useful improvement in planning ability, too.
-
- 23 Jul, 2000 3 commits
-
-
Peter Eisentraut authored
Don't do config.status substitutions into the regression test makefile.
-
Tom Lane authored
-
Tom Lane authored
varlena elements work now. Allow assignment to previously-nonexistent subscript position to extend array, but only for 1-D arrays and only if adjacent to existing positions (could do more if we had a way to represent nulls in arrays, but I don't want to tackle that now). Arrange for assignment of NULL to an array element in UPDATE to be a no-op, rather than setting the entire array to NULL as it used to. (Throwing an error would be a reasonable alternative, but it's never done that...) Update regress test accordingly.
-