The default name of an AVL is now the column name + '_indexer', and when

an AVL is opened (as opposed to created), it is read-only
This commit is contained in:
Celine Mercier
2016-04-15 12:55:26 +02:00
parent e04ea85d1e
commit 02d67c257f
4 changed files with 34 additions and 14 deletions

View File

@ -167,6 +167,8 @@ typedef struct OBIDMS_avl_group {
*/
OBIDMS_p dms; /**< Pointer to the OBIDMS structure to which the AVL group belongs.
*/
bool writable; /**< Indicates whether the AVL group is read-only or not.
*/
size_t counter; /**< Indicates by how many threads/programs (TODO) the AVL group is used.
*/
} OBIDMS_avl_group_t, *OBIDMS_avl_group_p;