61 lines
850 B
C++
61 lines
850 B
C++
/*
|
|
* Statement.h
|
|
* Definition of the structure used to build the syntax tree.
|
|
*/
|
|
#ifndef __STATEMENT_H__
|
|
#define __STATEMENT_H__
|
|
|
|
#include "Expr.h"
|
|
#include "List.h"
|
|
|
|
class TableRef;
|
|
|
|
typedef enum {
|
|
eSelect,
|
|
eDelete,
|
|
eInsert,
|
|
eCreate
|
|
} EStatementType;
|
|
|
|
|
|
|
|
class Statement {
|
|
public:
|
|
Statement(EStatementType type);
|
|
|
|
EStatementType _type;
|
|
};
|
|
|
|
|
|
class SelectStatement : public Statement {
|
|
public:
|
|
SelectStatement();
|
|
|
|
TableRef* _from_table;
|
|
List<Expr*>* _select_list;
|
|
List<Expr*>* _group_by;
|
|
Expr* _where_clause;
|
|
};
|
|
|
|
|
|
/**
|
|
* TableRef
|
|
* Holds reference to tables. Can be either table names or a select statement.
|
|
*/
|
|
typedef enum {
|
|
eTableName,
|
|
eTableSelect
|
|
} ETableRefType;
|
|
|
|
class TableRef {
|
|
public:
|
|
TableRef(ETableRefType type);
|
|
|
|
ETableRefType _type;
|
|
|
|
SelectStatement* _stmt;
|
|
List<char*>* _table_names;
|
|
|
|
};
|
|
|
|
#endif // __STATEMENT_H__
|