// _knownTables is just a cache to prevent creating a new String each time
String table = _knownTables.get(_caseInsensitiveStringBuffer);
if(null == table)
{
table = new String(buffer, offset, len);
_knownTables.put(new CaseInsensitiveString(table), table);
}
if(SchemaInfo.TABLE_EXT_COLS_LOADED_IN_THIS_CALL == tableExtRes)
{
_squirrelRSyntaxTextArea.repaint();