- Added other tests to expose potential optimization problems
git-svn-id: http://galileo.dmi.unict.it/svn/relational/trunk@261 014f5005-505e-4b48-8d0a-63407b615a7c
This commit is contained in:
parent
6fdd572faa
commit
3d6e0590c0
1
test/intersection1.query
Normal file
1
test/intersection1.query
Normal file
@ -0,0 +1 @@
|
||||
σ name=='eve' (people) ᑎ people
|
2
test/intersection1.result
Normal file
2
test/intersection1.result
Normal file
@ -0,0 +1,2 @@
|
||||
id,name,chief,age
|
||||
4,eve,0,25
|
1
test/intersection2.query
Normal file
1
test/intersection2.query
Normal file
@ -0,0 +1 @@
|
||||
people ᑎ σ name=='eve' (people)
|
2
test/intersection2.result
Normal file
2
test/intersection2.result
Normal file
@ -0,0 +1,2 @@
|
||||
id,name,chief,age
|
||||
4,eve,0,25
|
1
test/subtraction1.query
Normal file
1
test/subtraction1.query
Normal file
@ -0,0 +1 @@
|
||||
people - σ name=='eve'(people)
|
8
test/subtraction1.result
Normal file
8
test/subtraction1.result
Normal file
@ -0,0 +1,8 @@
|
||||
id,name,chief,age
|
||||
3,dean,1,33
|
||||
6,paul,4,30
|
||||
2,john,1,30
|
||||
0,jack,0,22
|
||||
7,alia,1,28
|
||||
1,carl,0,20
|
||||
5,duncan,4,30
|
1
test/union1.query
Normal file
1
test/union1.query
Normal file
@ -0,0 +1 @@
|
||||
σ age<30 (σ (id%2==0) (people) ᑌ σ age>22(people))
|
4
test/union1.result
Normal file
4
test/union1.result
Normal file
@ -0,0 +1,4 @@
|
||||
id,name,chief,age
|
||||
7,alia,1,28
|
||||
4,eve,0,25
|
||||
0,jack,0,22
|
1
test/union2.query
Normal file
1
test/union2.query
Normal file
@ -0,0 +1 @@
|
||||
people ᑌ σ name=='eve' (people)
|
9
test/union2.result
Normal file
9
test/union2.result
Normal file
@ -0,0 +1,9 @@
|
||||
id,name,chief,age
|
||||
3,dean,1,33
|
||||
6,paul,4,30
|
||||
2,john,1,30
|
||||
0,jack,0,22
|
||||
7,alia,1,28
|
||||
1,carl,0,20
|
||||
4,eve,0,25
|
||||
5,duncan,4,30
|
1
test/union3.query
Normal file
1
test/union3.query
Normal file
@ -0,0 +1 @@
|
||||
σ name=='eve' (people) ᑌ people
|
9
test/union3.result
Normal file
9
test/union3.result
Normal file
@ -0,0 +1,9 @@
|
||||
id,name,chief,age
|
||||
3,dean,1,33
|
||||
6,paul,4,30
|
||||
2,john,1,30
|
||||
0,jack,0,22
|
||||
7,alia,1,28
|
||||
1,carl,0,20
|
||||
4,eve,0,25
|
||||
5,duncan,4,30
|
Loading…
x
Reference in New Issue
Block a user