| 137 | |
| 138 | public: |
| 139 | InternalKey() {} // Leave rep_ as empty to indicate it is invalid |
| 140 | InternalKey(const Slice& user_key, SequenceNumber s, ValueType t) { |
| 141 | AppendInternalKey(&rep_, ParsedInternalKey(user_key, s, t)); |
| 142 | } |
nothing calls this directly
no test coverage detected