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

A few more headless signatures


diffs (42 lines):

diff --git a/monetdb5/modules/kernel/bat5.mal b/monetdb5/modules/kernel/bat5.mal
--- a/monetdb5/modules/kernel/bat5.mal
+++ b/monetdb5/modules/kernel/bat5.mal
@@ -90,31 +90,31 @@ command append(i:bat[:oid,:any_2], u:any
 address BKCappend_val_force_wrap
 comment "append the value u to i";
 
-command inplace( o:bat[:any_1,:any_2], id:oid, t:any_2) :bat[:oid,:any_2]
+command inplace( o:bat[:oid,:any_2], id:oid, t:any_2) :bat[:oid,:any_2]
 address BKCbun_inplace
 comment "Inplace replace values on the given positions";
 
-command inplace( o:bat[:any_1,:any_2], d:bat[:any_1,:any_2]) 
:bat[:any_1,:any_2]
+command inplace( o:bat[:oid,:any_2], d:bat[:oid,:any_2]) :bat[:oid,:any_2]
 address BKCbat_inplace
 comment "Inplace replace values on the given positions";
 
-command inplace( o:bat[:any_1,:any_2], id:oid, t:any_2, force:bit) 
:bat[:oid,:any_2]
+command inplace( o:bat[:oid,:any_2], id:oid, t:any_2, force:bit) 
:bat[:oid,:any_2]
 address BKCbun_inplace_force
 comment "Inplace replace values on the given positions";
 
-command inplace( o:bat[:any_1,:any_2], d:bat[:any_1,:any_2], force:bit) 
:bat[:any_1,:any_2]
+command inplace( o:bat[:oid,:any_2], d:bat[:oid,:any_2], force:bit) 
:bat[:oid,:any_2]
 address BKCbat_inplace_force
 comment "inplace replace values on the given locations";
 
-command delete(b:bat[:any_1, :any_2], h:any_1, t:any_2) :bat[:any_1,:any_2]
+command delete(b:bat[:oid, :any_2], h:oid, t:any_2) :bat[:oid,:any_2]
 address BKCdelete_bun
 comment "Delete one specific BUN.";
 
-command delete(b:bat[:any_1, :any_2], h:any_1) :bat[:any_1,:any_2]
+command delete(b:bat[:oid, :any_2], h:oid) :bat[:oid,:any_2]
 address BKCdelete
 comment "Delete all BUNs with a certain head value.";
 
-command delete(b:bat[:any_1, :any_2]) :bat[:any_1,:any_2]
+command delete(b:bat[:oid, :any_2]) :bat[:oid,:any_2]
 address BKCdelete_all
 comment "Delete all BUNs in a BAT.";
 
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to