Changeset: 19e04d03341f for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=19e04d03341f Modified Files: monetdb5/modules/atoms/uuid.mal Branch: Jul2015 Log Message:
SQL generates calls to calc.uuid with a uuid argument, so we need that. This fixes a bug reported on the users mailing list. diffs (11 lines): diff --git a/monetdb5/modules/atoms/uuid.mal b/monetdb5/modules/atoms/uuid.mal --- a/monetdb5/modules/atoms/uuid.mal +++ b/monetdb5/modules/atoms/uuid.mal @@ -40,3 +40,7 @@ comment "Test a string for a UUID format command calc.==(l:uuid,r:uuid):bit address UUIDequal comment "Compare two UUID values for equality"; + +function calc.uuid(u:uuid):uuid; + return u; +end calc.uuid; _______________________________________________ checkin-list mailing list [email protected] https://www.monetdb.org/mailman/listinfo/checkin-list
