From 0565aea988170752b66903607bee8807c210fc6b Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Mon, 26 Jun 2017 11:33:56 +0300 Subject: [PATCH] Whitespaces [#CLICKHOUSE-2]. --- dbms/src/Parsers/ASTTablesInSelectQuery.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dbms/src/Parsers/ASTTablesInSelectQuery.h b/dbms/src/Parsers/ASTTablesInSelectQuery.h index 872c610cdbe..289cfd3c447 100644 --- a/dbms/src/Parsers/ASTTablesInSelectQuery.h +++ b/dbms/src/Parsers/ASTTablesInSelectQuery.h @@ -112,7 +112,7 @@ struct ASTArrayJoin : public IAST { enum class Kind { - Inner, /// If array is empty, row will not present (default). + Inner, /// If array is empty, row will not present (default). Left, /// If array is empty, leave row with default values instead of array elements. }; @@ -134,9 +134,9 @@ struct ASTTablesInSelectQueryElement : public IAST /** For first element of list, either table_expression or array_join element could be non-nullptr. * For former elements, either table_join and table_expression are both non-nullptr, or array_join is non-nullptr. */ - ASTPtr table_join; /// How to JOIN a table, if table_expression is non-nullptr. - ASTPtr table_expression; /// Table. - ASTPtr array_join; /// Arrays to JOIN. + ASTPtr table_join; /// How to JOIN a table, if table_expression is non-nullptr. + ASTPtr table_expression; /// Table. + ASTPtr array_join; /// Arrays to JOIN. using IAST::IAST; String getID() const override { return "TablesInSelectQueryElement"; }