Start of new ANTLR4 based parser.
Very simple tests pass.
This commit is contained in:
parent
03b4194193
commit
fbbe832a05
44 changed files with 860 additions and 8 deletions
19
pglablib/sqlast/SelectStatement.cpp
Normal file
19
pglablib/sqlast/SelectStatement.cpp
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
#include "SelectStatement.h"
|
||||
#include "SelectList.h"
|
||||
|
||||
using namespace sqlast;
|
||||
|
||||
SelectStatement::SelectStatement()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
SelectList* SelectStatement::GetSelectList()
|
||||
{
|
||||
return selectList.get();
|
||||
}
|
||||
|
||||
void SelectStatement::SetSelectList(std::unique_ptr<SelectList> value)
|
||||
{
|
||||
selectList = std::move(value);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue