fix style

This commit is contained in:
vdimir 2022-04-08 10:04:52 +00:00
parent 88d8dc5be2
commit 6d198ff3d7
No known key found for this signature in database
GPG Key ID: 6EE4CE2BEDC51862
4 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,5 @@
#pragma once
#include <Interpreters/IJoin.h>
#include <Interpreters/TableJoin.h>
#include <Poco/Logger.h>

View File

@ -24,6 +24,7 @@ namespace ErrorCodes
{
extern const int NOT_IMPLEMENTED;
extern const int TOO_MANY_ROWS;
extern const int LOGICAL_ERROR;
}
namespace

View File

@ -17,6 +17,11 @@ namespace Poco { class Logger; }
namespace DB
{
namespace ErrorCodes
{
extern const int NOT_IMPLEMENTED;
}
class IJoin;
using JoinPtr = std::shared_ptr<IJoin>;

View File

@ -25,8 +25,7 @@ INSERT INTO t2
) group by key
;
-- SET join_algorithm = 'hash';
-- SET join_algorithm = 'full_sorting_merge';
SET join_algorithm = 'full_sorting_merge';
{% for block_size in [32001, 65505, 65536, range(32001, 65536) | random] %}