mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
Add more comments.
This commit is contained in:
parent
ff7f5fe808
commit
cdadef7847
@ -9,15 +9,20 @@ namespace DB
|
|||||||
class ASTStorage;
|
class ASTStorage;
|
||||||
enum class Keyword : size_t;
|
enum class Keyword : size_t;
|
||||||
|
|
||||||
/// Information about the target table for a materialized view or a window view.
|
/// Information about target tables (external or inner) of a materialized view or a window view.
|
||||||
|
/// See ASTViewTargets for more details.
|
||||||
struct ViewTarget
|
struct ViewTarget
|
||||||
{
|
{
|
||||||
enum Kind
|
enum Kind
|
||||||
{
|
{
|
||||||
/// Target table for a materialized view or a window view.
|
/// If `kind == ViewTarget::To` then `ViewTarget` contains information about the "TO" table of a materialized view or a window view:
|
||||||
|
/// CREATE MATERIALIZED VIEW db.mv_name {TO [db.]to_target | ENGINE to_engine} AS SELECT ...
|
||||||
|
/// or
|
||||||
|
/// CREATE WINDOW VIEW db.wv_name {TO [db.]to_target | ENGINE to_engine} AS SELECT ...
|
||||||
To,
|
To,
|
||||||
|
|
||||||
/// Table with intermediate results for a window view.
|
/// If `kind == ViewTarget::Inner` then `ViewTarget` contains information about the "INNER" table of a window view:
|
||||||
|
/// CREATE WINDOW VIEW db.wv_name {INNER ENGINE inner_engine} AS SELECT ...
|
||||||
Inner,
|
Inner,
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -42,7 +47,15 @@ std::string_view toString(ViewTarget::Kind kind);
|
|||||||
void parseFromString(ViewTarget::Kind & out, std::string_view str);
|
void parseFromString(ViewTarget::Kind & out, std::string_view str);
|
||||||
|
|
||||||
|
|
||||||
/// Information about all the target tables for a view.
|
/// Information about all target tables (external or inner) of a view.
|
||||||
|
///
|
||||||
|
/// For example, for a materialized view:
|
||||||
|
/// CREATE MATERIALIZED VIEW db.mv_name [TO [db.]to_target | ENGINE to_engine] AS SELECT ...
|
||||||
|
/// this class contains information about the "TO" table: its name and database (if it's external), its UUID and engine (if it's inner).
|
||||||
|
///
|
||||||
|
/// For a window view:
|
||||||
|
/// CREATE WINDOW VIEW db.wv_name [TO [db.]to_target | ENGINE to_engine] [INNER ENGINE inner_engine] AS SELECT ...
|
||||||
|
/// this class contains information about both the "TO" table and the "INNER" table.
|
||||||
class ASTViewTargets : public IAST
|
class ASTViewTargets : public IAST
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
@ -7,7 +7,12 @@
|
|||||||
namespace DB
|
namespace DB
|
||||||
{
|
{
|
||||||
|
|
||||||
/// Parses information about target views of a table.
|
/// Parses information about target tables (external or inner) of a materialized view or a window view.
|
||||||
|
/// The function parses one or multiple parts of a CREATE query looking like this:
|
||||||
|
/// TO db.table_name
|
||||||
|
/// TO INNER UUID 'XXX'
|
||||||
|
/// {ENGINE / INNER ENGINE} TableEngine(arguments) [ORDER BY ...] [SETTINGS ...]
|
||||||
|
/// Returns ASTViewTargets if succeeded.
|
||||||
class ParserViewTargets : public IParserBase
|
class ParserViewTargets : public IParserBase
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
Loading…
Reference in New Issue
Block a user