-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathColumnValidateVisitor.cpp
62 lines (54 loc) · 1.71 KB
/
ColumnValidateVisitor.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#include "ColumnValidateVisitor.h"
#include <Parsers/ASTColumnDeclaration.h>
#include <Parsers/ASTFunction.h>
#include <Common/ProtonCommon.h>
namespace DB
{
namespace ErrorCodes
{
extern const int ILLEGAL_COLUMN;
}
namespace Streaming
{
void ColumnValidateMatcher::visit(ASTPtr & ast, ColumnValidateMatcher::Data & data)
{
if (auto * column = ast->as<ASTColumnDeclaration>())
visit(*column, data);
else if (auto * node = ast->as<ASTCreateQuery>())
visit(*node, data);
}
bool ColumnValidateMatcher::needChildVisit(
const ASTPtr & node, [[maybe_unused]] const ASTPtr & child, const ColumnValidateMatcher::Data & data)
{
return !data.found_time && !node->as<ASTColumnDeclaration>();
}
void ColumnValidateMatcher::visit(ASTCreateQuery & node, ColumnValidateMatcher::Data & data)
{
if (node.storage && node.storage->engine && !node.storage->engine->name.compare("Stream"))
{
data.is_stream = true;
}
}
void ColumnValidateMatcher::visit(ASTColumnDeclaration & column, ColumnValidateMatcher::Data & data)
{
if (!column.name.compare(ProtonConsts::RESERVED_EVENT_TIME))
{
/// FIXME, ALIAS column check. column.default_specifier = "ALIAS", type of default_expression
if (!column.type)
{
data.found_time = true;
return;
}
auto * func = column.type->as<ASTFunction>();
if (data.is_stream && (!func || func->name.compare("datetime64")))
throw Exception(
ErrorCodes::ILLEGAL_COLUMN,
"The type of {} column must be datetime64, but got {}",
ProtonConsts::RESERVED_EVENT_TIME,
func->name);
else
data.found_time = true;
}
}
}
}