blob: 3f40ec1f31d63b93eab5e1fb8b199d79d0acc43b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include "parse_tree.h"
#include <yql/essentials/sql/v1/complete/core/input.h>
namespace NSQLComplete {
struct TParsedInput {
TCompletionInput Original;
antlr4::CommonTokenStream* Tokens;
SQLv1* Parser;
SQLv1::Sql_queryContext* SqlQuery;
};
} // namespace NSQLComplete
|