- Implemented select_union_intersect_subtract general optimization

- Added tests for the new optimization



git-svn-id: http://galileo.dmi.unict.it/svn/relational/trunk@268 014f5005-505e-4b48-8d0a-63407b615a7c
This commit is contained in:
LtWorf
2011-02-18 18:11:39 +00:00
parent 7ab6ed8ed7
commit 71697bb2e8
9 changed files with 37 additions and 2 deletions

View File

@@ -0,0 +1 @@
σ skill=='C'(skills) ᑎ σ id%2==0 (skills)

View File

@@ -0,0 +1,4 @@
id,skill
0,C
2,C
4,C

View File

@@ -0,0 +1 @@
σ skill=='C' (skills) - σ id%2==0(skills)

View File

@@ -0,0 +1,3 @@
id,skill
5,C
7,C

View File

@@ -0,0 +1 @@
σ age<21 (people) σage >30(people)

View File

@@ -0,0 +1,3 @@
id,name,chief,age
3,dean,1,33
1,carl,0,20