Changeset: 37c1d2bb51c4 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=37c1d2bb51c4
Modified Files:
        monetdb5/modules/atoms/uuid.c
Branch: Oct2020
Log Message:

Set revsorted property properly.


diffs (15 lines):

diff --git a/monetdb5/modules/atoms/uuid.c b/monetdb5/modules/atoms/uuid.c
--- a/monetdb5/modules/atoms/uuid.c
+++ b/monetdb5/modules/atoms/uuid.c
@@ -269,8 +269,9 @@ UUIDgenerateUuidInt_bulk(bat *ret, const
        bn->tnonil = true;
        bn->tnil = false;
        BATsetcount(bn, n);
-       bn->tsorted = n < 2;
-       bn->tkey = n < 2;
+       bn->tsorted = n <= 1;
+       bn->trevsorted = n <= 1;
+       bn->tkey = n <= 1;
 
 bailout:
        if (b)
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to