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

Commit 4627b6a

Browse files
author
Aaron Tian
committed
Add the codebase for recovery tests
1 parent 3f63eb5 commit 4627b6a

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

test/logging/recovery_test.cpp

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
//===----------------------------------------------------------------------===//
2+
//
3+
// Peloton
4+
//
5+
// recovery_test.cpp
6+
//
7+
// Identification: test/logging/recovery_test.cpp
8+
//
9+
// Copyright (c) 2015-18, Carnegie Mellon University Database Group
10+
//
11+
//===----------------------------------------------------------------------===//
12+
13+
#include <pqxx/pqxx> /* libpqxx is used to instantiate C++ client */
14+
#include "logging/log_buffer.h"
15+
#include "common/harness.h"
16+
#include "gtest/gtest.h"
17+
#include "network/peloton_server.h"
18+
#include "network/postgres_protocol_handler.h"
19+
#include "util/string_util.h"
20+
#include "network/connection_handle_factory.h"
21+
22+
namespace peloton {
23+
namespace test {
24+
25+
//===--------------------------------------------------------------------===//
26+
// Log Recovery Tests
27+
//===--------------------------------------------------------------------===//
28+
29+
class RecoveryTests : public PelotonTest {};
30+
31+
TEST_F(RecoveryTests, InsertRecoveryTest) {
32+
33+
}
34+
}
35+
}

0 commit comments

Comments
 (0)