Changeset: b8d925a992e7 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=b8d925a992e7
Modified Files:
        gdk/gdk.h
Branch: headless
Log Message:

Use naming convention for COLset_str
The implementation should be provided. The putvalue_str may cause
a jump towards bunins_failed, which should be reconsidered.
The other built-in types do not have such jumps.


diffs (16 lines):

diff --git a/gdk/gdk.h b/gdk/gdk.h
--- a/gdk/gdk.h
+++ b/gdk/gdk.h
@@ -2953,9 +2953,9 @@
 #define COLloop(r, p, q) \
        for(q = COLlast(r), p = COLfirst(r);p < q; p++)
 
-#define COLforloop(b,o) for( o = 0; o < b->count; o++)
-#define COLget_str(b,o)        (str)((char *) (b)->vheap->base + ((size_t) 
VarHeapValRaw(b,o,b->width)  << GDK_VARSHIFT))
-gdk_export str COLputString(COL *b, oid o, str v);
+#define COLforloop(b, o) for( o = 0; o < b->count; o++)
+#define COLget_str(b, o)       (str)((char *) (b)->vheap->base + ((size_t) 
VarHeapValRaw(b,o,b->width)  << GDK_VARSHIFT))
+#define COLset_str(b, o, v) /* TODO */
 
 /*
  * batloop where the current element can be deleted/updated
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to