mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 21:12:28 +00:00
Reduce changes against master
This commit is contained in:
parent
2627c8d437
commit
bb1d773ffd
@ -615,7 +615,7 @@ namespace
|
||||
const IColumn & asof_column)
|
||||
{
|
||||
auto emplace_result = key_getter.emplaceKey(map, i, pool);
|
||||
AsofRowRefs * time_series_map = &emplace_result.getMapped();
|
||||
typename Map::mapped_type * time_series_map = &emplace_result.getMapped();
|
||||
|
||||
TypeIndex asof_type = *join.getAsofType();
|
||||
if (emplace_result.isInserted())
|
||||
|
@ -15,8 +15,6 @@
|
||||
#include <Common/Arena.h>
|
||||
|
||||
|
||||
#include <base/logger_useful.h>
|
||||
|
||||
namespace DB
|
||||
{
|
||||
|
||||
@ -199,8 +197,6 @@ public:
|
||||
/// Loosely based on https://academy.realm.io/posts/how-we-beat-cpp-stl-binary-search/
|
||||
/// In the future it'd interesting to replace it with a B+Tree Layout as described
|
||||
/// at https://en.algorithmica.org/hpc/data-structures/s-tree/
|
||||
|
||||
|
||||
size_t boundSearch(TKey value)
|
||||
{
|
||||
size_t size = array.size();
|
||||
|
Loading…
Reference in New Issue
Block a user