First version of quality handling (not working yet) and now it is

checked that a column is writable before enlarging it
This commit is contained in:
Celine Mercier
2016-05-11 16:38:14 +02:00
parent b3c47809da
commit 8ae7644945
8 changed files with 540 additions and 8 deletions

View File

@ -40,6 +40,9 @@ size_t obi_sizeof(OBIType_t type)
case OBI_CHAR: size = sizeof(obichar_t);
break;
case OBI_QUAL: size = sizeof(index_t);
break;
case OBI_STR: size = sizeof(index_t);
break;
@ -96,6 +99,9 @@ char* name_data_type(int data_type)
case OBI_CHAR: name = strdup("OBI_CHAR");
break;
case OBI_QUAL: name = strdup("OBI_QUAL");
break;
case OBI_STR: name = strdup("OBI_STR");
break;