Skip to content

Commit

Permalink
Update other files
Browse files Browse the repository at this point in the history
  • Loading branch information
rmboyce committed Jan 24, 2025
1 parent 38cdedc commit 5297ddd
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/common/util/string_util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

#include "common/util/string_util.h"
#include "fmt/format.h"
#include "fmt/ranges.h"

namespace bustub {

Expand Down
1 change: 1 addition & 0 deletions src/include/binder/expressions/bound_column_ref.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

#include "binder/bound_expression.h"
#include "common/macros.h"
#include "fmt/ranges.h"

namespace bustub {

Expand Down
1 change: 1 addition & 0 deletions src/include/execution/expressions/array_expression.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

#include "common/exception.h"
#include "execution/expressions/abstract_expression.h"
#include "fmt/ranges.h"
#include "type/value_factory.h"

namespace bustub {
Expand Down
2 changes: 1 addition & 1 deletion src/type/timestamp_type.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ auto TimestampType::ToString(const Value &val) const -> std::string {
tm /= 100000;
auto year = static_cast<uint16_t>(tm % 10000);
tm /= 10000;
auto tz = static_cast<int>(tm % 27);
auto tz = static_cast<int8_t>(tm % 27);
tz -= 12;
tm /= 27;
auto day = static_cast<uint16_t>(tm % 32);
Expand Down
1 change: 1 addition & 0 deletions src/type/vector_type.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

#include "common/exception.h"
#include "common/macros.h"
#include "fmt/ranges.h"
#include "type/type_id.h"
#include "type/type_util.h"
#include "type/vector_type.h"
Expand Down
1 change: 1 addition & 0 deletions test/txn/txn_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
#include "execution/execution_common.h"
#include "fmt/core.h"
#include "fmt/format.h"
#include "fmt/ranges.h"
#include "gtest/gtest.h"
#include "storage/disk/disk_manager_memory.h"
#include "storage/index/b_plus_tree.h"
Expand Down

0 comments on commit 5297ddd

Please sign in to comment.