From 6a6adc4de07a751d78c13065a5ae2a5c6df469c3 Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Sun, 23 Feb 2014 06:41:02 +0400 Subject: [PATCH] dbms: Addition to prev. revision [#METR-9750]. --- dbms/include/DB/DataStreams/IBlockInputStream.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbms/include/DB/DataStreams/IBlockInputStream.h b/dbms/include/DB/DataStreams/IBlockInputStream.h index b5fda965f8f..7c06eb43bcf 100644 --- a/dbms/include/DB/DataStreams/IBlockInputStream.h +++ b/dbms/include/DB/DataStreams/IBlockInputStream.h @@ -80,7 +80,7 @@ public: */ size_t checkDepth(size_t max_depth) const; - void setOwnedStorage(StoragePtr owned_storage_) { owned_storage = owned_storage_; } + void setOwnedStorage(StoragePtr & owned_storage_) { owned_storage = owned_storage_; } protected: StoragePtr owned_storage;