@@ -332,7 +332,8 @@ class Relation {
332
332
/* *
333
333
* Get the attribute type of a relation at the column specified by the parameter.
334
334
* The attribute type is in the form "<primitive type>:<type name>".
335
- * <primitive type> can be s, f, u, or i standing for symbol, float, unsigned, and integer respectively,
335
+ * <primitive type> can be s, f, u, i, r, or + standing for symbol, float,
336
+ * unsigned, integer, record, and ADT respectively,
336
337
* which are the primitive types in Souffle.
337
338
* <type name> is the name given by the user in the Souffle program
338
339
*
@@ -576,7 +577,8 @@ class tuple {
576
577
*/
577
578
tuple& operator <<(RamSigned integer) {
578
579
assert (pos < size () && " exceeded tuple's size" );
579
- assert ((*relation .getAttrType (pos) == ' i' || *relation .getAttrType (pos) == ' r' ) &&
580
+ assert ((*relation .getAttrType (pos) == ' i' || *relation .getAttrType (pos) == ' r' ||
581
+ *relation .getAttrType (pos) == ' +' ) &&
580
582
" wrong element type" );
581
583
array[pos++] = integer;
582
584
return *this ;
@@ -633,7 +635,8 @@ class tuple {
633
635
*/
634
636
tuple& operator >>(RamSigned& integer) {
635
637
assert (pos < size () && " exceeded tuple's size" );
636
- assert ((*relation .getAttrType (pos) == ' i' || *relation .getAttrType (pos) == ' r' ) &&
638
+ assert ((*relation .getAttrType (pos) == ' i' || *relation .getAttrType (pos) == ' r' ||
639
+ *relation .getAttrType (pos) == ' +' ) &&
637
640
" wrong element type" );
638
641
integer = ramBitCast<RamSigned>(array[pos++]);
639
642
return *this ;
0 commit comments