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:
@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user