summaryrefslogtreecommitdiffstats
path: root/include/util/types.h
diff options
context:
space:
mode:
authorDouglas Rumbaugh <dbr4@psu.edu>2023-06-07 12:54:16 -0400
committerDouglas Rumbaugh <dbr4@psu.edu>2023-06-07 12:54:16 -0400
commit3931c2b7faab3460f9fc3849ff3bdf9241052565 (patch)
treed21036854900356b7acdae9d2fff921bb9ca88db /include/util/types.h
parent8c08151643329be88fa8f45c72a7b4c7c30ce218 (diff)
downloaddynamic-extension-3931c2b7faab3460f9fc3849ff3bdf9241052565.tar.gz
General header/file cleanup
Diffstat (limited to 'include/util/types.h')
-rw-r--r--include/util/types.h4
1 files changed, 2 insertions, 2 deletions
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;
};