hsbench: sqlite output support

This commit is contained in:
Matthew Barr
2017-09-27 15:52:41 +10:00
committed by Xiang Wang
parent 193bdb628e
commit 2f17ef032c
8 changed files with 561 additions and 44 deletions

View File

@@ -42,4 +42,9 @@ extern bool forceEditDistance;
extern unsigned editDistance;
extern bool printCompressSize;
struct SqlFailure {
explicit SqlFailure(const std::string &s) : message(s) {}
std::string message;
};
#endif // COMMON_H