From cf6f771fd2a1345d519cdbeafe30085c1d35d429 Mon Sep 17 00:00:00 2001 From: alexey-milovidov Date: Thu, 30 May 2019 00:38:28 +0300 Subject: [PATCH] Update StorageInput.h --- dbms/src/Storages/StorageInput.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dbms/src/Storages/StorageInput.h b/dbms/src/Storages/StorageInput.h index f2e07c14c3f..a9863e5d95c 100644 --- a/dbms/src/Storages/StorageInput.h +++ b/dbms/src/Storages/StorageInput.h @@ -5,7 +5,7 @@ namespace DB { -/** Internal temporary storage for table function input() +/** Internal temporary storage for table function input(...) */ class StorageInput : public ext::shared_ptr_helper, public IStorage @@ -13,8 +13,8 @@ class StorageInput : public ext::shared_ptr_helper, public IStorag public: String getName() const override { return "Input"; } String getTableName() const override { return table_name; } - - /// A table will read directly from this stream. + + /// A table will read from this stream. void setInputStream(BlockInputStreamPtr input_stream_); BlockInputStreams read(