Update contrib.
1 Things that could be done to DBMS -- 12 October 1998
5 Optimize for clustering indexes (use S/T and G/H plans)
6 e.g. assume Auto-increment column => clustering
7 or measure the clustering in the stats
9 Optimize for multi-column lookup
10 e.g. For "a=v1 and b=v2" with index on (a,b)
12 Optimize for like-predicates
13 e.g. "x LIKE 'abc*'" => "x>='abc' AND x<'abd'" etc.
15 Query complexity-reduction by removing redundant predicates, e.g.
16 "x>4 AND x>3" => "x>4"
18 "x>-1" for unsigned x => trivially true
20 Better statistical data dn guesswork
24 Support "DISTINCT" in the projection stage via a Hash-system or sorting