Commit bf39d9fc authored by yiwenshao's avatar yiwenshao

minimum include for debug/load_and_store.cc

parent 5cff3fed
...@@ -2,28 +2,16 @@ ...@@ -2,28 +2,16 @@
* 2. plaintext insert query should be able to recover directly * 2. plaintext insert query should be able to recover directly
* 3. should be able to used exsisting data to reduce the computation overhead(to be implemented) * 3. should be able to used exsisting data to reduce the computation overhead(to be implemented)
*/ */
#include <cstdlib> #include <stdlib.h>
#include <cstdio> #include <stdio.h>
#include <string> #include <string>
#include <map> #include <map>
#include <iostream> #include <iostream>
#include <fstream> #include <fstream>
#include <sstream> #include <sstream>
#include <vector> #include <vector>
#include <main/Connect.hh>
#include <main/rewrite_main.hh> #include <main/rewrite_main.hh>
#include <main/rewrite_util.hh> #include <main/rewrite_util.hh>
//#include <main/sql_handler.hh>
//#include <main/dml_handler.hh>
//#include <main/ddl_handler.hh>
#include <main/metadata_tables.hh>
//#include <main/macro_util.hh>
#include <main/CryptoHandlers.hh>
//#include <util/errstream.hh>
//#include <util/cryptdb_log.hh>
//#include <util/enum_text.hh>
//#include <util/yield.hpp>
using std::cout; using std::cout;
using std::cin; using std::cin;
using std::endl; using std::endl;
...@@ -31,8 +19,6 @@ using std::vector; ...@@ -31,8 +19,6 @@ using std::vector;
using std::string; using std::string;
using std::to_string; using std::to_string;
class WrapperState { class WrapperState {
WrapperState(const WrapperState &other); WrapperState(const WrapperState &other);
WrapperState &operator=(const WrapperState &rhs); WrapperState &operator=(const WrapperState &rhs);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment