Changeset: cdec3e3005c1 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=cdec3e3005c1
Modified Files:
        gdk/gdk_group.c
Branch: Oct2014
Log Message:

Removed superfluous parameter.


diffs (28 lines):

diff --git a/gdk/gdk_group.c b/gdk/gdk_group.c
--- a/gdk/gdk_group.c
+++ b/gdk/gdk_group.c
@@ -214,7 +214,7 @@
  * Note this algorithm depends critically on the fact that our hash
  * chains go from higher to lower BUNs.
  */
-#define GRP_use_existing_hash_table(INIT_0,INIT_1,HASH,COMP)           \
+#define GRP_use_existing_hash_table(INIT_0,INIT_1,COMP)                        
\
        do {                                                            \
                INIT_0;                                                 \
                for (r = lo, p = r, q = hi;                             \
@@ -270,7 +270,6 @@
        GRP_use_existing_hash_table(                            \
        /* INIT_0 */    const TYPE *w = (TYPE *) Tloc(b, 0),    \
        /* INIT_1 */                                    ,       \
-       /* HASH   */    hash_##TYPE(hs, &w[p])          ,       \
        /* COMP   */    w[p] == w[hb]                           \
        )
 
@@ -278,7 +277,6 @@
        GRP_use_existing_hash_table(                            \
        /* INIT_0 */                                    ,       \
        /* INIT_1 */    v = BUNtail(bi, p)              ,       \
-       /* HASH   */    HASHprobe(hs, v)                ,       \
        /* COMP   */    cmp(v, BUNtail(bi, hb)) == 0            \
        )
 
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to