Skip to content
This repository was archived by the owner on Sep 27, 2019. It is now read-only.

Commit aeb7040

Browse files
committed
Cleanup: remove superfluous logging; ns closure
1 parent d7abe49 commit aeb7040

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

test/planner/plan_util_test.cpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ TEST_F(PlanUtilTests, GetAffectedIndexesTest) {
6161
txn = txn_manager.BeginTransaction();
6262
auto source_table = db->GetTableWithName("test_table");
6363
oid_t col_id = source_table->GetSchema()->GetColumnID(id_column.column_name);
64-
LOG_INFO("id: %d", static_cast<int>(col_id));
6564
std::vector<oid_t> source_col_ids;
6665
source_col_ids.push_back(col_id);
6766

@@ -71,7 +70,6 @@ TEST_F(PlanUtilTests, GetAffectedIndexesTest) {
7170

7271
// create index on 'id' and 'first_name'
7372
col_id = source_table->GetSchema()->GetColumnID(fname_column.column_name);
74-
LOG_INFO("fname: %d", static_cast<int>(col_id));
7573
source_col_ids.push_back(col_id);
7674

7775
catalog->CreateIndex(TEST_DB_NAME, "test_table", source_col_ids,
@@ -166,5 +164,6 @@ TEST_F(PlanUtilTests, GetAffectedIndexesTest) {
166164
// no indexes are affected
167165
EXPECT_EQ(0, static_cast<int>(affected_indexes.size()));
168166
}
169-
}
170-
}
167+
168+
} // namespace test
169+
} // namespace peloton

test/util/set_util_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// set_util_test.cpp
66
//
7-
// Identification: test/set_util_test.cpp
7+
// Identification: test/util/set_util_test.cpp
88
//
99
// Copyright (c) 2015-2018, Carnegie Mellon University Database Group
1010
//

0 commit comments

Comments
 (0)