mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
small refactoring + comments adding
This commit is contained in:
parent
5726d4c073
commit
1c41d73d9b
8
dbms/programs/copier/Internals.h
Normal file
8
dbms/programs/copier/Internals.h
Normal file
@ -0,0 +1,8 @@
|
||||
//
|
||||
// Created by jakalletti on 2/7/20.
|
||||
//
|
||||
|
||||
#ifndef CLICKHOUSE_INTERNALS_H
|
||||
#define CLICKHOUSE_INTERNALS_H
|
||||
|
||||
#endif //CLICKHOUSE_INTERNALS_H
|
@ -21,8 +21,8 @@ public:
|
||||
std::optional<TokenIterator> begin;
|
||||
std::optional<TokenIterator> end;
|
||||
|
||||
ASTLiteral(Field && value_) : value(value_) {}
|
||||
ASTLiteral(const Field & value_) : value(value_) {}
|
||||
explicit ASTLiteral(Field && value_) : value(value_) {}
|
||||
explicit ASTLiteral(const Field & value_) : value(value_) {}
|
||||
|
||||
/** Get the text that identifies this element. */
|
||||
String getID(char delim) const override { return "Literal" + (delim + applyVisitor(FieldVisitorDump(), value)); }
|
||||
|
Loading…
Reference in New Issue
Block a user