csca.executeConstantAction( activation );
// reset the current value of the sequence generator as necessary
if ( columnInfo[ix].action == ColumnInfo.MODIFY_COLUMN_DEFAULT_INCREMENT )
{
SequenceDescriptor sequence = dd.getSequenceDescriptor
( dd.getSystemSchemaDescriptor(), sequenceName );
RowLocation[] rowLocation = new RowLocation[ 1 ];
SequenceDescriptor[] sequenceDescriptor = new SequenceDescriptor[ 1 ];
dd.computeSequenceRowLocation
( tc, sequence.getUUID().toString(), rowLocation, sequenceDescriptor );
dd.updateCurrentSequenceValue
( tc, rowLocation[ 0 ], true, null, currentValue );
}
}