blob: 52aa7090b7b2c2388324e4f1514d941e98f4b618 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include "global.h"
#include "input.h"
#include <util/generic/maybe.h>
#include <util/generic/string.h>
namespace NSQLComplete {
TMaybe<TFunctionContext> EnclosingFunction(TParsedInput input);
} // namespace NSQLComplete
|