From 3931c2b7faab3460f9fc3849ff3bdf9241052565 Mon Sep 17 00:00:00 2001 From: Douglas Rumbaugh Date: Wed, 7 Jun 2023 12:54:16 -0400 Subject: General header/file cleanup --- include/util/types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/util/types.h') diff --git a/include/util/types.h b/include/util/types.h index 63da3fa..de5e379 100644 --- a/include/util/types.h +++ b/include/util/types.h @@ -44,7 +44,7 @@ const Timestamp TIMESTAMP_MAX = UINT32_MAX; // Invalid values for various IDs. Used throughout the code base to indicate // uninitialized values and error conditions. const PageNum INVALID_PNUM = 0; -const FrameId INVALID_Fshid = -1; +const FrameId INVALID_FRID = -1; // An ID for a given shard within the index. The level_idx is the index // in the memory_levels and disk_levels vectors corresponding to the @@ -63,7 +63,7 @@ struct ShardID { const ShardID INVALID_SHID = {-1, -1}; struct SampleRange { - ShardID run_id; + ShardID shid; size_t low; size_t high; }; -- cgit v1.2.3