Changeset: 2fc45f1708c6 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/2fc45f1708c6
Removed Files:
        clients/Tests/exports.stable.out-noapprove
        monetdb5/mal/Tests/msk000.malC
        monetdb5/mal/Tests/msk001.malC
        monetdb5/mal/Tests/msk002.malC
        monetdb5/mal/Tests/msk002.stable.err
        monetdb5/mal/Tests/msk002.stable.out
        monetdb5/mal/Tests/msk003.malC
        monetdb5/mal/Tests/msk003.stable.err
        monetdb5/mal/Tests/msk003.stable.out
        monetdb5/mal/Tests/parseErrors.malC
        monetdb5/mal/Tests/performanceTests/join.malC
        monetdb5/mal/Tests/performanceTests/performanceLog
        monetdb5/mal/Tests/performanceTests/run
        monetdb5/mal/Tests/performanceTests/tst400a.malC
        monetdb5/mal/Tests/performanceTests/tst400a2.malC
        monetdb5/mal/Tests/performanceTests/tst400b.malC
        monetdb5/mal/Tests/performanceTests/tst400bHuge.malC
        monetdb5/mal/Tests/performanceTests/tst400bHuge2.malC
        monetdb5/mal/Tests/performanceTests/tst400c.malC
        monetdb5/mal/Tests/performanceTests/tst400cHuge.malC
        monetdb5/mal/Tests/performanceTests/tst400cHuge2.malC
        monetdb5/mal/Tests/performanceTests/tst400d.malC
        monetdb5/mal/Tests/performanceTests/tst400e.malC
        monetdb5/mal/Tests/performanceTests/tst400f.malC
        monetdb5/mal/Tests/performanceTests/tst400h.malC
        monetdb5/mal/Tests/performanceTests/tst901a.malC
        monetdb5/mal/Tests/performanceTests/tst901b.malC
        monetdb5/mal/Tests/performanceTests/tst901c.malC
        monetdb5/mal/Tests/run
        monetdb5/mal/Tests/selecttest.malC
        monetdb5/mal/Tests/tracer00.malC
        monetdb5/mal/Tests/tst078.malC
        monetdb5/mal/Tests/tst080.malC
        monetdb5/mal/Tests/tst1002.malC
        monetdb5/mal/Tests/tst101.malC
        monetdb5/mal/Tests/tst1020.malC
        monetdb5/mal/Tests/tst1022.malC
        monetdb5/mal/Tests/tst120.malC
        monetdb5/mal/Tests/tst1200.malC
        monetdb5/mal/Tests/tst1204.malC
        monetdb5/mal/Tests/tst1206.malC
        monetdb5/mal/Tests/tst1502.malC
        monetdb5/mal/Tests/tst1602.malC
        monetdb5/mal/Tests/tst2506.malC
        monetdb5/mal/Tests/tst4003.malC
        monetdb5/mal/Tests/tst400a.malC
        monetdb5/mal/Tests/tst400d.malC
        monetdb5/mal/Tests/tst400e.malC
        monetdb5/mal/Tests/tst4701.malC
        monetdb5/mal/Tests/tst820.malC
        monetdb5/mal/Tests/tst901b.malC
        monetdb5/mal/Tests/tst911.malC
        monetdb5/modules/atoms/Tests/batxml100.malC
        monetdb5/modules/kernel/Tests/status.malC
        monetdb5/modules/mal/Tests/bincopyfrom_int.malC
        monetdb5/modules/mal/Tests/bincopyfrom_str.malC
        monetdb5/modules/mal/Tests/cpustat.malC
        monetdb5/modules/mal/Tests/flags.malC
        monetdb5/modules/mal/Tests/inspect40.malC
        monetdb5/modules/mal/Tests/mapi02.malC
        monetdb5/modules/mal/Tests/profile.sh
        monetdb5/modules/mal/Tests/remote89.malC
        monetdb5/modules/mal/Tests/replication/replication00.sh
        monetdb5/modules/mal/Tests/replication/replication01.sh
        monetdb5/modules/mal/Tests/replication/replication02.sh
        monetdb5/modules/mal/Tests/replication/replication03.sh
        monetdb5/modules/mal/Tests/replication/replication04.sh
        monetdb5/modules/mal/Tests/replication/replication05.sh
        monetdb5/modules/mal/Tests/run
        monetdb5/modules/mal/Tests/testIndex.sh
        monetdb5/modules/mal/Tests/testrun.sh
        monetdb5/modules/mal/Tests/validate.sh
        monetdb5/optimizer/Tests/CMexample.malC
        monetdb5/optimizer/Tests/CRexample.malC
        monetdb5/optimizer/Tests/CXerror1.malC
        monetdb5/optimizer/Tests/FTexample.malC
        monetdb5/optimizer/Tests/inline11.malC
        monetdb5/optimizer/Tests/joinpath.malC
        monetdb5/optimizer/Tests/leftjoinpath.malC
        monetdb5/optimizer/Tests/mat00.malC
        monetdb5/optimizer/Tests/mat01.malC
        monetdb5/optimizer/Tests/mitosis00.malC
        monetdb5/optimizer/Tests/qep00.malC
        monetdb5/optimizer/Tests/qep01.malC
        monetdb5/optimizer/Tests/qep02.malC
        monetdb5/optimizer/Tests/replicator00.malC
        monetdb5/optimizer/Tests/replicator01.malC
        monetdb5/optimizer/Tests/replicator02.malC
        monetdb5/optimizer/Tests/run
        monetdb5/optimizer/Tests/stat.malC
        monetdb5/optimizer/Tests/tst4700.malC
        monetdb5/optimizer/Tests/tst4701.malC
        monetdb5/scheduler/Tests/mutation00.malC
        monetdb5/scheduler/Tests/oct00.malC
        monetdb5/scheduler/Tests/oct01.malC
        monetdb5/scheduler/Tests/oct02.malC
        sql/backends/monet5/Tests/prepare.malC
Branch: Sep2022
Log Message:

Cleanup old stuff.


diffs (truncated from 425114 to 300 lines):

diff --git a/clients/Tests/exports.stable.out-noapprove 
b/clients/Tests/exports.stable.out-noapprove
deleted file mode 100644
diff --git a/monetdb5/mal/Tests/msk000.malC b/monetdb5/mal/Tests/msk000.malC
deleted file mode 100644
--- a/monetdb5/mal/Tests/msk000.malC
+++ /dev/null
@@ -1,75 +0,0 @@
-# scalar tests for msk-type
-# the msk type only know true/false, nil is mapped to false
-
-function foo();
-t := true:msk;
-io.print(t);
-f := false:msk;
-io.print(f);
-n := nil:msk;
-io.print(n);
-
-# Coercions should be chosen carefully
-# One way is to align it with 0/1
-ti:msk := 1:msk;
-io.print(ti);
-fi:msk := 0:msk;
-io.print(fi);
-
-tl:= 1:lng;
-fl:= 0:lng;
-t:msk := tl:msk;
-io.print(t);
-f:msk := fl:msk;
-io.print(f);
-
-tsv:= 1:sht;
-fsv:= 0:bit;
-t:msk := tsv:msk;
-io.print(t);
-f:msk := fsv:msk;
-io.print(f);
-
-tbv:= 1:bit;
-fbv:= 0:bit;
-t:msk := tbv:msk;
-io.print(t);
-f:msk := fbv:msk;
-io.print(f);
-
-tfv:= 1:flt;
-ffv:= 0:flt;
-t:msk := calc.msk(tfv);
-io.print(t);
-f:msk := calc.msk(ffv);
-io.print(f);
-
-# perhaps case incensitive
-t:msk := "t":msk;
-io.print(t);
-f:msk := "f":msk;
-io.print(f);
-
-t:msk := "T":msk;
-io.print(t);
-f:msk := "F":msk;
-io.print(f);
-
-t:msk := "true":msk;
-io.print(t);
-f:msk := "false":msk;
-io.print(f);
-end foo;
-
-# the following examples all should cause errors
-function error1();
-n:msk := nil:msk;
-end error1;
-
-function error2();
-n:msk := calc.msk(nil);
-end error2;
-
-foo();
-error1();
-error2();
diff --git a/monetdb5/mal/Tests/msk001.malC b/monetdb5/mal/Tests/msk001.malC
deleted file mode 100644
--- a/monetdb5/mal/Tests/msk001.malC
+++ /dev/null
@@ -1,20 +0,0 @@
-# create a simple MSK BAT by appending values
-# The MSK should behave like any other BAT although it only holds values from 
{0,1}
-
-bv1:= bat.new(:msk);
-bat.append(bv1,1:msk);
-bat.append(bv1,1:msk);
-bat.append(bv1,0:msk);
-bat.append(bv1,1:msk);
-
-io.print(bv1); # this should produce (1,1,0,1)
-
-# select all elements that are not set
-cnd:bat[:oid]:= algebra.select(bv1, nil:bat[:oid], 0, 0, true, true, false);
-
-io.print(f); # returns 2@0:oid
-
-# select operations can also return a MASK
-m:bat[:msk]:= algebra.select(bv1, nil:bat[:oid], 0, 0, true, true, false);
-
-io.print(m); # produce 0,0,1
diff --git a/monetdb5/mal/Tests/msk002.malC b/monetdb5/mal/Tests/msk002.malC
deleted file mode 100644
--- a/monetdb5/mal/Tests/msk002.malC
+++ /dev/null
@@ -1,40 +0,0 @@
-# MSK bats are dynamically sized bitvectors. 
-# The length depends on the bits being set and starts with index 0.
-# All bits beyond the last one set are considered 0
-# This allows for bitvectors produced in select() to be cut off and still  to 
be used where appropriate  in set operations
-
-bv2:= bat.new(:msk);
-bat.setbit(bv2,1:msk);
-bat.setbit(bv2,3:msk);
-bat.setbit(bv2,5:msk);
-bat.setbit(bv2,7:msk);
-bat.setbit(bv2,6:msk);
-
-io.print(bv2); # should produce 0,1,0,1,0,1,1,1
-
-cnt = bat.length(bv1);
-io.print(cnt);  #  MSK bat has 8 elements, the position of the last bit set
-
-scnt = aggr.count(bv1, 1);
-io.print(scnt);  #  MSK bat has 5 elements set to 1
-
-bat.clrbit(bv2,3)
-io.print(bv2); # should produce 0,1,0,0,0,1,1,1
-
-# MSK bats come with set operations, their underlying size should be the same
-bv3:= bat.new(:msk);
-bat.setbit(bv2,1);
-bat.setbit(bv2,2);
-bat.setbit(bv2,5);
-
-x:= batcalc.and(bv2, bv3);     # bv3 is implictly extended with 0 to reach 8 
elements
-io.print(x) # should produce 0,1,0,0,1
-
-y:= batcalc.or(bv2, bv3);
-io.print(y) # should produce 0,1,1,1,0,1,1,1
-
-z:= batcalc.not(bv2);
-io.print(z) # should produce 1,0,0,0,1 
-# The negation stops as the last false reported.
-
-u:bat[:msk] := bat.newmask(8:int, 1:int); #create mask of length 8 and set it 
to 1.
diff --git a/monetdb5/mal/Tests/msk002.stable.err 
b/monetdb5/mal/Tests/msk002.stable.err
deleted file mode 100644
--- a/monetdb5/mal/Tests/msk002.stable.err
+++ /dev/null
@@ -1,65 +0,0 @@
-stderr of test 'msk002` in directory 'monetdb5/mal` itself:
-
-
-# 12:40:01 >  
-# 12:40:01 >  "mclient" "-lmal" "-ftest" "-tnone" "-Eutf-8" 
"--host=/var/tmp/mtest-4031653" "--port=31360"
-# 12:40:01 >  
-
-MAPI  = (monetdb) /var/tmp/mtest-4031653/.s.monetdb.31360
-QUERY = # MSK bats are dynamically sized bitvectors. 
-        # The length depends on the bits being set and starts with index 0.
-        # All bits beyond the last one set are considered 0
-        # This allows for bitvectors produced in select() to be cut off and 
still  to be used where appropriate  in set operations
-        
-        bv2:= bat.new(:msk);
-        bat.setbit(bv2,1:msk);
-        bat.setbit(bv2,3:msk);
-        bat.setbit(bv2,5:msk);
-        bat.setbit(bv2,7:msk);
-        bat.setbit(bv2,6:msk);
-        
-        io.print(bv2); # should produce 0,1,0,1,0,1,1,1
-        
-        cnt = bat.length(bv1);
-        io.print(cnt);  #  MSK bat has 8 elements, the position of the last 
bit set
-        
-        scnt = aggr.count(bv1, 1);
-        io.print(scnt);  #  MSK bat has 5 elements set to 1
-        
-        bat.clrbit(bv2,3)
-        io.print(bv2); # should produce 0,1,0,0,0,1,1,1
-        
-        # MSK bats come with set operations, their underlying size should be 
the same
-        bv3:= bat.new(:msk);
-        bat.setbit(bv2,1);
-        bat.setbit(bv2,2);
-        bat.setbit(bv2,5);
-        
-        x:= batcalc.and(bv2, bv3);     # bv3 is implictly extended with 0 to 
reach 8 elements
-        io.print(x) # should produce 0,1,0,0,1
-        
-        y:= batcalc.or(bv2, bv3);
-        io.print(y) # should produce 0,1,1,1,0,1,1,1
-        
-        z:= batcalc.not(bv2);
-        io.print(z) # should produce 1,0,0,0,1 
-        # The negation stops as the last false reported.
-        
-        u:bat[:msk] := bat.newmask(8:int, 1:int); #create mask of length 8 and 
set it to 1.
-
-        !SyntaxException:parseError:    ^';' expected
-        !SyntaxException:parseError:scnt = aggr.count(bv1, 1);
-        !SyntaxException:parseError:     ^';' expected
-        !SyntaxException:parseError:io.print(bv2); # should produce 
0,1,0,0,0,1,1,1
-        !SyntaxException:parseError:^';' expected
-        !SyntaxException:parseError:io.print(x) # should produce 0,1,0,0,1
-        !SyntaxException:parseError:            ^';' expected
-        !SyntaxException:parseError:io.print(y) # should produce 
0,1,1,1,0,1,1,1
-        !SyntaxException:parseError:            ^';' expected
-        !SyntaxException:parseError:io.print(z) # should produce 1,0,0,0,1 
-        !SyntaxException:parseError:            ^';' expected
-
-# 12:40:01 >  
-# 12:40:01 >  "Done."
-# 12:40:01 >  
-
diff --git a/monetdb5/mal/Tests/msk002.stable.out 
b/monetdb5/mal/Tests/msk002.stable.out
deleted file mode 100644
--- a/monetdb5/mal/Tests/msk002.stable.out
+++ /dev/null
@@ -1,12 +0,0 @@
-stdout of test 'msk002` in directory 'monetdb5/mal` itself:
-
-
-# 12:40:01 >  
-# 12:40:01 >  "mclient" "-lmal" "-ftest" "-tnone" "-Eutf-8" 
"--host=/var/tmp/mtest-4031653" "--port=31360"
-# 12:40:01 >  
-Need to be provided
-
-# 12:40:01 >  
-# 12:40:01 >  "Done."
-# 12:40:01 >  
-
diff --git a/monetdb5/mal/Tests/msk003.malC b/monetdb5/mal/Tests/msk003.malC
deleted file mode 100644
--- a/monetdb5/mal/Tests/msk003.malC
+++ /dev/null
@@ -1,22 +0,0 @@
-# Let's explore what happens when we want to support :bat[:msk] vectors
-
-b := bat.new(:oid);
-bat.append(b,1@0);
-bat.append(b,3@0);
-bat.append(b,5@0);
-bat.append(b,6@0);
-bat.append(b,8@0);
-
-bv2:bat[:msk]:= mask.mask(b);
-io.print(bv2);
-# should produce (1,0,1,0,1,1,0,1)
-bv3:bat[:oid]:= mask.umask(bv2);
-io.print(bv3);
-#should produce 1@0, 3@0, 5@0,6@0,8@0
-
-b2 := bat.new(:oid);
-bat.append(b,1@0);
-bat.append(b,5@0);
-bat.append(b,3@0);
-# bat should be ordered
-mv2:bat[:msk]:= mask.mask(b2);
diff --git a/monetdb5/mal/Tests/msk003.stable.err 
b/monetdb5/mal/Tests/msk003.stable.err
deleted file mode 100644
--- a/monetdb5/mal/Tests/msk003.stable.err
+++ /dev/null
@@ -1,12 +0,0 @@
-stderr of test 'msk003` in directory 'monetdb5/mal` itself:
-
-
-# 07:26:10 >  
-# 07:26:10 >  "mclient" "-lmal" "-ftest" "-tnone" "-Eutf-8" 
"--host=/var/tmp/mtest-29025" "--port=34351"
-# 07:26:10 >  
-
-
-# 07:26:10 >  
-# 07:26:10 >  "Done."
-# 07:26:10 >  
-
diff --git a/monetdb5/mal/Tests/msk003.stable.out 
b/monetdb5/mal/Tests/msk003.stable.out
deleted file mode 100644
--- a/monetdb5/mal/Tests/msk003.stable.out
+++ /dev/null
@@ -1,33 +0,0 @@
-stdout of test 'msk003` in directory 'monetdb5/mal` itself:
-
-
-# 07:26:10 >  
-# 07:26:10 >  "mclient" "-lmal" "-ftest" "-tnone" "-Eutf-8" 
"--host=/var/tmp/mtest-29025" "--port=34351"
-# 07:26:10 >  
-
-#--------------------------#
-# h    t  # name
-# void msk  # type
-#--------------------------#
-[ 1@0, 1       ]
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to