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
21
pglablib/sqlast/CreateTable.h
Normal file
21
pglablib/sqlast/CreateTable.h
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#pragma once
|
||||
|
||||
#include "Statement.h"
|
||||
#include <memory>
|
||||
|
||||
namespace sqlast {
|
||||
|
||||
class ColumnDefinition;
|
||||
class TableConstraint;
|
||||
|
||||
class CreateTable: public Statement
|
||||
{
|
||||
public:
|
||||
CreateTable();
|
||||
|
||||
private:
|
||||
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue