Compressed file geodatabases (fGDB) are a great thing. They render data amazingly fast and search quickly but take up a miniscule amount of disk space. Good job to ESRI on getting it right.
They are not editable though, and therefore need to be removed from any candidate editable feature classes you may be looking at.
The following piece of code can be used to determine if the ftrClass is editable:
ICompressionInfo info = featureClass.FullName as ICompressionInfo;if (info != null){if (info.IsCompressed == true)return true;}