源码分析-TupleTableSlot
PostgreSQL12对比PostgreSQL11,无论在功能上和代码上都有很大的变化,下面分析一下TupleTableSlot这个数据结构在两个版本的不同首先看看数据结构PostgreSQL11.5typedef struct TupleTableSlot{ NodeTag type; bool tts_isempty; /* true = slot is empty */ ...