| 125 | inline bool operator!=(const PhysicalIndex& rhs) const { return index != rhs.index; }; |
| 126 | inline bool operator<(const PhysicalIndex& rhs) const { return index < rhs.index; }; |
| 127 | bool IsValid() { return index != DConstants::INVALID_INDEX; } |
| 128 | }; |
| 129 | |
| 130 | DUCKDB_API uint64_t NextPowerOfTwo(uint64_t v); |
nothing calls this directly
no outgoing calls
no test coverage detected