Reduce changes against master

This commit is contained in:
Raúl Marín 2022-02-18 17:45:17 +01:00
parent 2627c8d437
commit bb1d773ffd
2 changed files with 1 additions and 5 deletions

View File

@ -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())

View File

@ -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();