Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/codec/codec_bench_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* limitations under the License.
*/

#include <deque>
#include <iostream>

#include "base/kv_iterator.h"
Expand All @@ -35,7 +36,7 @@ class CodecBenchmarkTest : public ::testing::Test {
};

void RunHasTs(::openmldb::storage::DataBlock* db) {
boost::container::deque<std::pair<uint64_t, ::openmldb::base::Slice>> data;
std::deque<std::pair<uint64_t, ::openmldb::base::Slice>> data;
uint32_t total_block_size = 0;
for (uint32_t i = 0; i < 1000; i++) {
data.emplace_back(1000, std::move(::openmldb::base::Slice(db->data, db->size)));
Expand Down
4 changes: 2 additions & 2 deletions src/codec/codec_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
* limitations under the License.
*/

#include <deque>
#include <memory>
#include <string>
#include <vector>

#include "boost/container/deque.hpp"
#include "codec/encrypt.h"
#include "codec/row_codec.h"
#include "gtest/gtest.h"
Expand All @@ -36,7 +36,7 @@ class CodecTest : public ::testing::Test {
};

TEST_F(CodecTest, EncodeRows) {
boost::container::deque<std::pair<uint64_t, ::openmldb::base::Slice>> data;
std::deque<std::pair<uint64_t, ::openmldb::base::Slice>> data;
std::string test1 = "value1";
std::string test2 = "value2";
std::string empty;
Expand Down
1 change: 0 additions & 1 deletion src/codec/row_codec.cc
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
#include <vector>

#include "base/glog_wrapper.h"
#include "boost/container/deque.hpp"
#include "codec/schema_codec.h"
#include "codec/row_codec.h"
#include "storage/segment.h"
Expand Down
1 change: 0 additions & 1 deletion src/codec/row_codec.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
#include <vector>

#include "base/status.h"
#include "boost/container/deque.hpp"
#include "butil/iobuf.h"
#include "codec/codec.h"
#include "storage/segment.h"
Expand Down
1 change: 0 additions & 1 deletion src/tablet/tablet_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
#include "base/strings.h"
#include "base/sys_info.h"
#include "boost/bind.hpp"
#include "boost/container/deque.hpp"
#include "brpc/controller.h"
#include "butil/iobuf.h"
#include "codec/codec.h"
Expand Down
Loading