Unification of serde of data types: development [#CLICKHOUSE-2838].

This commit is contained in:
Alexey Milovidov 2017-11-29 02:50:17 +03:00
parent 37a22bceba
commit fb4951b679
2 changed files with 0 additions and 12 deletions

View File

@ -20,7 +20,6 @@
#include <DataStreams/IBlockOutputStream.h>
#include <Columns/ColumnArray.h>
#include <Columns/ColumnNullable.h>
#include <Common/typeid_cast.h>
@ -495,12 +494,6 @@ void StorageLog::loadMarks()
}
size_t StorageLog::marksCount()
{
return files.begin()->second.marks.size();
}
void StorageLog::rename(const String & new_path_to_db, const String & new_database_name, const String & new_table_name)
{
std::unique_lock<std::shared_mutex> lock(rwlock);

View File

@ -107,11 +107,6 @@ private:
/// You can not call with a write locked `rwlock`.
void loadMarks();
/// Can be called with any state of `rwlock`.
size_t marksCount();
void loadMarksImpl(bool load_null_marks);
/// The order of adding files should not change: it corresponds to the order of the columns in the marks file.
void addFile(const String & column_name, const IDataType & type, size_t level = 0);