Code for tests storing data in multiple AVLs.

(note: unretrievable data as implemented)
This commit is contained in:
Celine Mercier
2016-03-11 15:34:55 +01:00
parent 21d1b2ed3e
commit 545ed8111a
6 changed files with 205 additions and 17 deletions

View File

@ -98,7 +98,7 @@ typedef struct OBIDMS_column {
*/
OBIDMS_column_header_p header; /**< A pointer to the header of the column.
*/
OBIDMS_avl_p avl; /**< A pointer to the AVL tree associated with the column if there is one.
OBIDMS_avl_p avl[64]; /**< A pointer to the group of AVL trees associated with the column if there is one.
*/
void* data; /**< A `void` pointer to the beginning of the data.
*