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

@ -135,7 +135,8 @@ const char* obi_column_get_obiseq_with_elt_idx(OBIDMS_column_p column, index_t l
if (idx == OBIIdx_NA)
return OBISeq_NA;
//value_b = obi_avl_get((column->avl)[crc(value)], idx);
value_b = obi_avl_group_get(column->avl, idx);
return obi_obibytes_to_seq(value_b);
}