void setIndex(Transaction xa,
byte []block, int rowOffset,
long rowAddr, QueryContext context)
throws SQLException
{
BTree index = getIndex();
if (index == null)
return;
/*
IndexCache manager = IndexCache.create();
manager.insert(index,
block, rowOffset + getColumnOffset(), getLength(),
rowAddr,
xa);
*/
index.insert(block, rowOffset + getColumnOffset(), getLength(),
rowAddr, false);
}