Whitespaces

This commit is contained in:
Alexey Milovidov 2019-03-30 23:52:36 +03:00
parent 957d23267b
commit a2e756287e
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,7 @@
#pragma once
#include <Compression/ICompressionCodec.h>
namespace DB
{
@ -22,5 +23,6 @@ protected:
private:
const UInt8 delta_bytes_size;
};
}

View File

@ -40,7 +40,7 @@ public:
/// Get codec by AST and possible column_type
/// some codecs can use information about type to improve inner settings
/// but every codec should be able to work without information about type
CompressionCodecPtr get(const ASTPtr & ast, DataTypePtr column_type=nullptr) const;
CompressionCodecPtr get(const ASTPtr & ast, DataTypePtr column_type = nullptr) const;
/// Get codec by method byte (no params available)
CompressionCodecPtr get(const UInt8 byte_code) const;