Returns true if there are no materialized slots, such as a count(*) over the table.
| 596 | |
| 597 | /// Returns true if there are no materialized slots, such as a count(*) over the table. |
| 598 | inline bool IsZeroSlotTableScan() const { |
| 599 | return materialized_slots().empty() && tuple_desc()->tuple_path().empty() && |
| 600 | virtual_column_slots().empty(); |
| 601 | } |
| 602 | |
| 603 | /// Transfers all memory from 'pool' to shared state of all scanners. |
| 604 | void TransferToSharedStatePool(MemPool* pool); |
no test coverage detected