diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2023-06-07 12:54:16 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2023-06-07 12:54:16 -0400 |
| commit | 3931c2b7faab3460f9fc3849ff3bdf9241052565 (patch) | |
| tree | d21036854900356b7acdae9d2fff921bb9ca88db /include/util/types.h | |
| parent | 8c08151643329be88fa8f45c72a7b4c7c30ce218 (diff) | |
| download | dynamic-extension-3931c2b7faab3460f9fc3849ff3bdf9241052565.tar.gz | |
General header/file cleanup
Diffstat (limited to 'include/util/types.h')
| -rw-r--r-- | include/util/types.h | 4 |
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; }; |