Changeset: 15b01c2241b5 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=15b01c2241b5
Modified Files:
        monetdb5/modules/kernel/algebra.mal
Branch: default
Log Message:

Drop another obsolete signature


diffs (43 lines):

diff --git a/monetdb5/modules/kernel/algebra.mal 
b/monetdb5/modules/kernel/algebra.mal
--- a/monetdb5/modules/kernel/algebra.mal
+++ b/monetdb5/modules/kernel/algebra.mal
@@ -19,14 +19,6 @@ module algebra;
 
 # TO BE REMOVED OR CHANGED FOR HEADLESS
 
-command find(b:bat[:oid,:any_1], t:any_1):oid
-address ALGfind
-comment "Returns the index position of a value.  If no such BUN exists return 
OID-nil." ;
-
-command fetch(b:bat[:oid,:any_1], x:oid) :any_1
-address ALGfetchoid
-comment "Returns the value of the BUN at x-th position with 0 <= x < b.count";
-
 command tintersect( left:bat[:any_1,:any_2], right:bat[:any_1,:any] ) 
:bat[:any_1,:any_2]
 address ALGtintersect;
 
@@ -37,9 +29,6 @@ command groupby(gids:bat[:oid,:oid], cnt
 address ALGgroupby
 comment "Produces a new BAT with groups identified by the head column. The 
result contains tail times the head value, ie the tail contains the result 
group sizes.";
 
-command join(l:bat[:any_1,:any_2], rl:bat[:any_3,:any_2], 
rh:bat[:any_3,:any_2], li:bit, hi:bit) :bat[:any_1,:any_3]
-address ALGrangejoin;
-
 command leftjoin( left:bat[:any_1,:any_2], right:bat[:any_2,:any_3]) 
:bat[:any_1,:any_3]
 address ALGleftjoin;
 command leftjoin( left:bat[:any_1,:any_2], right:bat[:any_2,:any_3], 
estimate:lng) :bat[:any_1,:any_3]
@@ -47,6 +36,14 @@ address ALGleftjoinestimate;
 
 #END OF HEADLESS PLANS
 
+command find(b:bat[:oid,:any_1], t:any_1):oid
+address ALGfind
+comment "Returns the index position of a value.  If no such BUN exists return 
OID-nil." ;
+
+command fetch(b:bat[:oid,:any_1], x:oid) :any_1
+address ALGfetchoid
+comment "Returns the value of the BUN at x-th position with 0 <= x < b.count";
+
 command leftfetchjoin ( left:bat[:oid,:oid], right:bat[:oid,:any_3] ) 
:bat[:oid,:any_3]
 address ALGleftfetchjoin
 comment "Hook directly into the left fetch join implementation.";
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to