From: Jamison, Kirk/ジャミソン カーク <k.jami...@fujitsu.com> > Because one of the rel's cached value was false, it forced the > full-scan path for TRUNCATE. > Is there a possible workaround for this?
Hmm, the other two relfilenodes are for the TOAST table and index of the target table. I think the INSERT didn't access those TOAST relfilenodes because the inserted data was stored in the main storage. But TRUNCATE always truncates all the three relfilenodes. So, the standby had not opened the relfilenode for the TOAST stuff or cached its size when replaying the TRUNCATE. I'm afraid this is more common than we can ignore and accept the slow traditional path, but I don't think of a good idea to use the cached flag. Regards Takayuki Tsunakawa