-
- Downloads
Create infrastructure for 'MinimalTuple' representation of in-memory
tuples with less header overhead than a regular HeapTuple, per my recent proposal. Teach TupleTableSlot code how to deal with these. As proof of concept, change tuplestore.c to store MinimalTuples instead of HeapTuples. Future patches will expand the concept to other places where it is useful.
Showing
- contrib/tablefunc/tablefunc.c 8 additions, 14 deletionscontrib/tablefunc/tablefunc.c
- src/backend/access/common/heaptuple.c 174 additions, 4 deletionssrc/backend/access/common/heaptuple.c
- src/backend/commands/portalcmds.c 2 additions, 11 deletionssrc/backend/commands/portalcmds.c
- src/backend/executor/execTuples.c 127 additions, 12 deletionssrc/backend/executor/execTuples.c
- src/backend/executor/nodeFunctionscan.c 5 additions, 10 deletionssrc/backend/executor/nodeFunctionscan.c
- src/backend/executor/nodeMaterial.c 20 additions, 24 deletionssrc/backend/executor/nodeMaterial.c
- src/backend/executor/tstoreReceiver.c 2 additions, 2 deletionssrc/backend/executor/tstoreReceiver.c
- src/backend/tcop/pquery.c 4 additions, 8 deletionssrc/backend/tcop/pquery.c
- src/backend/utils/sort/tuplestore.c 104 additions, 26 deletionssrc/backend/utils/sort/tuplestore.c
- src/include/access/heapam.h 8 additions, 2 deletionssrc/include/access/heapam.h
- src/include/access/htup.h 66 additions, 5 deletionssrc/include/access/htup.h
- src/include/executor/tuptable.h 23 additions, 2 deletionssrc/include/executor/tuptable.h
- src/include/utils/tuplestore.h 15 additions, 9 deletionssrc/include/utils/tuplestore.h
Loading
Please register or sign in to comment