wip
This commit is contained in:
parent
0da32b916c
commit
698ccab6ab
20 changed files with 265 additions and 37 deletions
|
|
@ -1,5 +1,6 @@
|
|||
#include "SelectStatement.h"
|
||||
#include "SelectList.h"
|
||||
#include "NodeVisitor.h"
|
||||
|
||||
using namespace sqlast;
|
||||
|
||||
|
|
@ -17,3 +18,8 @@ void SelectStatement::SetSelectList(std::unique_ptr<SelectList> value)
|
|||
{
|
||||
selectList = std::move(value);
|
||||
}
|
||||
|
||||
void SelectStatement::Accept(NodeVisitor &visitor)
|
||||
{
|
||||
visitor.Visit(*this);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue