Implemented the retrieval of values with groups of AVLs

This commit is contained in:
Celine Mercier
2016-03-25 15:35:16 +01:00
parent 69856f18dd
commit ff6c27acf2
5 changed files with 53 additions and 22 deletions

View File

@ -129,7 +129,8 @@ const char* obi_column_get_obistr_with_elt_idx(OBIDMS_column_p column, index_t l
if (idx == OBIIdx_NA)
return OBIStr_NA;
//value_b = obi_avl_get(column->avl, idx);
value_b = obi_avl_group_get(column->avl, idx);
return obi_obibytes_to_str(value_b);
}