- 19 Jun, 1999 1 commit
-
-
Tom Lane authored
will gradually replace all of the boilerplate tree-walk-recursion code that currently exists in O(N) slightly different forms in N subroutines. I've had it with adding missing cases to these subroutines...
-
- 25 May, 1999 2 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 10 May, 1999 1 commit
-
-
Bruce Momjian authored
real affect now.
-
- 01 Mar, 1999 1 commit
-
-
Tom Lane authored
so remove them from MergeJoin node. Hack together a partial solution for commuted mergejoin operators --- yesterday a mergejoin int4 = int8 would crash if the planner decided to commute it, today it works. The planner's representation of mergejoins really needs a rewrite though. Also, further testing of mergejoin ops in opr_sanity regress test.
-
- 18 Feb, 1999 1 commit
-
-
Bruce Momjian authored
-
- 14 Feb, 1999 1 commit
-
-
Tom Lane authored
A test case is: create table linetab (x line); select * from linetab where ?| x; which coredumps in 6.4.2 and current sources.
-
- 13 Feb, 1999 1 commit
-
-
Bruce Momjian authored
-
- 03 Feb, 1999 1 commit
-
-
Bruce Momjian authored
-
- 24 Jan, 1999 1 commit
-
-
Bruce Momjian authored
-
- 04 Dec, 1998 1 commit
-
-
Thomas G. Lockhart authored
-
- 27 Nov, 1998 1 commit
-
-
Vadim B. Mikheev authored
-
- 01 Sep, 1998 2 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 31 Aug, 1998 2 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 10 Aug, 1998 1 commit
-
-
Bruce Momjian authored
-
- 09 Aug, 1998 1 commit
-
-
Bruce Momjian authored
-
- 07 Aug, 1998 1 commit
-
-
Bruce Momjian authored
-
- 15 Jun, 1998 1 commit
-
-
Bruce Momjian authored
-
- 26 Feb, 1998 1 commit
-
-
Bruce Momjian authored
-
- 13 Feb, 1998 1 commit
-
-
Vadim B. Mikheev authored
-
- 20 Jan, 1998 1 commit
-
-
Bruce Momjian authored
-
- 22 Dec, 1997 1 commit
-
-
Bruce Momjian authored
-
- 25 Sep, 1997 1 commit
-
-
Vadim B. Mikheev authored
clauses.
-
- 08 Sep, 1997 3 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
Another PGINDENT run that changes variable indenting and case label indenting. Also static variable indenting.
-
- 07 Sep, 1997 1 commit
-
-
Bruce Momjian authored
-
- 19 Aug, 1997 1 commit
-
-
Bruce Momjian authored
-
- 22 Jan, 1997 1 commit
-
-
Vadim B. Mikheev authored
(but I didn't test FUNC OP PARAM and PARAM OP FUNC - no time)
-
- 30 Nov, 1996 1 commit
-
-
Bruce Momjian authored
Now You can do queries like select sum(some_func(x)) from ... select min(table1.x + table2.y) from table1, table2 where ... and so on. Vadim
-
- 06 Nov, 1996 1 commit
-
-
Marc G. Fournier authored
-
- 10 Sep, 1996 1 commit
-
-
Marc G. Fournier authored
The problem is that the function arguments are not considered as possible key candidates for index scan and so only a sequential scan is possible inside the body of a function. I have therefore made some patches to the optimizer so that indices are now used also by functions. I have also moved the plan debug message from pg_eval to pg_plan so that it is printed also for plans genereated for function execution. I had also to add an index rescan to the executor because it ignored the parameters set in the execution state, they were flagged as runtime variables in ExecInitIndexScan but then never used by the executor so that the scan were always done with any key=1. Very odd. This means that an index rescan is now done twice for each function execution which uses an index, the first time when the index scan is initialized and the second when the actual function arguments are finally available for the execution. I don't know what is the cost of an double index scan but I suppose it is anyway less than the cost of a full sequential scan, at leat for large tables. This is my patch, you must also add -DINDEXSCAN_PATCH in Makefile.global to enable the changes. Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
-
- 25 Jul, 1996 1 commit
-
-
Marc G. Fournier authored
submitted by: vadim@sable.krasnoyarsk.su (Vadim B. Mikheev)
-
- 09 Jul, 1996 1 commit
-
-
Marc G. Fournier authored
-