fix styles

This commit is contained in:
sundy-li 2020-09-21 21:24:28 +08:00
parent e474bcca8e
commit 2f5e903c10
3 changed files with 4 additions and 3 deletions

View File

@ -9,7 +9,6 @@
#include <Parsers/ASTExpressionList.h>
#include <Parsers/ASTFunction.h>
#include <DataTypes/NestedUtils.h>
#include <DataTypes/DataTypeString.h>
#include <Common/typeid_cast.h>
#include <Common/StringUtils/StringUtils.h>
@ -85,7 +84,7 @@ static bool extractKeyImpl(const IAST & elem, Strings & res)
}
/** Retrieve from the query a condition of the form `key = 'key'` or `key in ('xxx_') or `key like 'xxx%'`, from conjunctions in the WHERE clause.
/** Retrieve from the query a condition of the form `key = 'key'` or `key in ('xxx_'), from conjunctions in the WHERE clause.
*/
static std::pair<Strings, bool> extractKey(const ASTPtr & query)
{

View File

@ -30,7 +30,8 @@ struct Rocksdb
delete rocksdb;
}
}
};
};
class StorageEmbeddedRocksdb final : public ext::shared_ptr_helper<StorageEmbeddedRocksdb>, public IStorage
{

View File

@ -105,6 +105,7 @@ SRCS(
MutationCommands.cpp
PartitionCommands.cpp
ReadInOrderOptimizer.cpp
Rocksdb/StorageEmbeddedRocksdb.cpp
SelectQueryDescription.cpp
SetSettings.cpp
StorageBuffer.cpp