mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-29 19:12:03 +00:00
fix style
This commit is contained in:
parent
88d8dc5be2
commit
6d198ff3d7
@ -1,3 +1,5 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
#include <Interpreters/IJoin.h>
|
#include <Interpreters/IJoin.h>
|
||||||
#include <Interpreters/TableJoin.h>
|
#include <Interpreters/TableJoin.h>
|
||||||
#include <Poco/Logger.h>
|
#include <Poco/Logger.h>
|
||||||
|
@ -24,6 +24,7 @@ namespace ErrorCodes
|
|||||||
{
|
{
|
||||||
extern const int NOT_IMPLEMENTED;
|
extern const int NOT_IMPLEMENTED;
|
||||||
extern const int TOO_MANY_ROWS;
|
extern const int TOO_MANY_ROWS;
|
||||||
|
extern const int LOGICAL_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace
|
namespace
|
||||||
|
@ -17,6 +17,11 @@ namespace Poco { class Logger; }
|
|||||||
namespace DB
|
namespace DB
|
||||||
{
|
{
|
||||||
|
|
||||||
|
namespace ErrorCodes
|
||||||
|
{
|
||||||
|
extern const int NOT_IMPLEMENTED;
|
||||||
|
}
|
||||||
|
|
||||||
class IJoin;
|
class IJoin;
|
||||||
using JoinPtr = std::shared_ptr<IJoin>;
|
using JoinPtr = std::shared_ptr<IJoin>;
|
||||||
|
|
||||||
|
@ -25,8 +25,7 @@ INSERT INTO t2
|
|||||||
) group by key
|
) 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] %}
|
{% for block_size in [32001, 65505, 65536, range(32001, 65536) | random] %}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user