Changeset: aec93122a3a1 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=aec93122a3a1
Modified Files:
        sql/backends/monet5/sql.mal
Branch: default
Log Message:

only use any if no matching is needed


diffs (22 lines):

diff --git a/sql/backends/monet5/sql.mal b/sql/backends/monet5/sql.mal
--- a/sql/backends/monet5/sql.mal
+++ b/sql/backends/monet5/sql.mal
@@ -524,15 +524,15 @@ unsafe pattern droporderindex(sch:str,tb
 address sql_droporderindex
 comment "Drop the order index on a column";
 
-command calc.identity(:any_2) :oid 
+command calc.identity(:any) :oid 
 address SQLidentity
 comment "Returns a unique row identitfier.";
 
-command batcalc.identity(b:bat[:any_2]) :bat[:oid] 
+command batcalc.identity(b:bat[:any]) :bat[:oid] 
 address BATSQLidentity
 comment "Returns the unique row identitfiers.";
 
-pattern batcalc.identity(b:bat[:any_2], s:oid ) (resb:bat[:oid],ns:oid)
+pattern batcalc.identity(b:bat[:any], s:oid ) (resb:bat[:oid],ns:oid)
 address PBATSQLidentity
 comment "Returns the unique row identitfiers.";
 
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to