This commit is contained in:
eelke 2022-04-07 19:35:29 +02:00
parent 0da32b916c
commit 698ccab6ab
20 changed files with 265 additions and 37 deletions

View file

@ -0,0 +1,8 @@
#include "NodeVisitor.h"
#include "sqlast/SelectList.h"
void sqlast::NodeVisitor::VisitSelectListItems(SelectList &selectList)
{
for (int idx = 0; idx < selectList.Count(); ++idx)
Visit(selectList.Get(idx));
}