1. As of 1.2 INSERT, UPDATE, DELETE are not supported2. There are only two methods to insert data into cstore_fdw tables: COPY from .csv file or INSERT INTO ... SELECT FROM ...3. There are no workarounds to make UPDATE possible4. Both DELETE and TRUNCATE are not supported. If I need to empty a cstore_fdw table and reclaim storage space I can only drop the table and create a new one.
5. In my tests in order to empty cstore tables I tried to delete the related files from $PGDATA/cstore_fdw/ directory. It sims to be working just fine. I was able to reuse the same foreign table again. Is there any danger in using this method?