#ifndef __SQLPARSER__IMPORT_STATEMENT_H__ #define __SQLPARSER__IMPORT_STATEMENT_H__ #include "SQLStatement.h" namespace hsql { /** * Represents SQL Import statements. */ struct ImportStatement : SQLStatement { enum ImportType { kImportCSV, kImportTbl, // Hyrise file format }; ImportStatement(ImportType type); virtual ~ImportStatement(); ImportType type; const char* filePath; const char* tableName; }; } // namespace hsql #endif