| 13 | using namespace hsql; |
| 14 | |
| 15 | std::string readFileContents(std::string file_path) { |
| 16 | std::ifstream t(file_path.c_str()); |
| 17 | std::string text((std::istreambuf_iterator<char>(t)), std::istreambuf_iterator<char>()); |
| 18 | return text; |
| 19 | } |
| 20 | |
| 21 | TEST(TPCHQueryGrammarTests) { |
| 22 | std::vector<std::string> files = { |