}
protected void testType(String typeString, String expected) throws Exception {
TInstance type = typesTranslator.typeForSQLType(parseType(typeString));
assertNotNull(typeString, type);
assertEquals(typeString, expected, type.toStringIgnoringNullability(false));
}
}