Update StorageInput.h

This commit is contained in:
alexey-milovidov 2019-05-30 00:38:28 +03:00 committed by GitHub
parent e44cdefefa
commit cf6f771fd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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<StorageInput>, public IStorage
@ -14,7 +14,7 @@ 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(