Skip to content

Commit

Permalink
lru-k access type
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Chi <iskyzh@gmail.com>
  • Loading branch information
skyzh committed Sep 5, 2023
1 parent 8eb3d33 commit 31d18ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/include/buffer/lru_k_replacer.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

namespace bustub {

enum class AccessType { Unknown = 0, Get, Scan };
enum class AccessType { Unknown = 0, Lookup, Scan, Index };

class LRUKNode {
private:
Expand Down

0 comments on commit 31d18ac

Please sign in to comment.