Changeset: 1b165c0c8550 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=1b165c0c8550
Modified Files:
        sql/backends/monet5/UDF/udf.c
Branch: Apr2012
Log Message:

UDF/fuse: layout of comments


diffs (30 lines):

diff --git a/sql/backends/monet5/UDF/udf.c b/sql/backends/monet5/UDF/udf.c
--- a/sql/backends/monet5/UDF/udf.c
+++ b/sql/backends/monet5/UDF/udf.c
@@ -269,9 +269,9 @@ do {        /* type-specific core algorithm */      
        two = (in *) Tloc(btwo, BUNfirst(btwo));                        \
        res = (out*) Tloc(bres, BUNfirst(bres));                        \
                                                                        \
-       /* is tail of right/second BAT sorted, also when cast to        \
-        * unsigned type, */                                            \
-       /* i.e., are the values either all >= 0 or all < 0? */          \
+       /* is tail of right/second BAT sorted,                          \
+        * also when cast to unsigned type,                             \
+        * i.e., are the values either all >= 0 or all < 0? */          \
        two_tail_sorted_unsigned = BATtordered(btwo) & 1 &&             \
                (two[0] >= 0 || two[n - 1] < 0);                        \
                                                                        \
@@ -311,10 +311,10 @@ do {      /* type-specific core algorithm */      
        BATaccessEnd(btwo, USE_TAIL, MMAP_SEQUENTIAL);
 
        /* set result properties */
-       bres->hdense = TRUE;            /* result head is dense */
+       bres->hdense = TRUE;              /* result head is dense */
        BATseqbase(bres, bone->hseqbase); /* result head has same seqbase as 
input */
-       bres->hsorted = GDK_SORTED;     /* result head is sorted */
-       BATkey(bres, TRUE);             /* result head is key (unique) */
+       bres->hsorted = GDK_SORTED;       /* result head is sorted */
+       BATkey(bres, TRUE);               /* result head is key (unique) */
 
        /* Result tail is sorted, if the left/first input tail is
         * sorted and key (unique), or if the left/first input tail is
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to