mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 01:51:59 +00:00
Fixed build [#METR-2807].
This commit is contained in:
parent
0a40b9f24c
commit
bda42aec99
@ -9,14 +9,14 @@ int main(int argc, const char ** argv)
|
||||
Range range1;
|
||||
Range range2;
|
||||
|
||||
range1.left = UInt64(101);
|
||||
range1.right = UInt64(101);
|
||||
range1.left = DB::UInt64(101);
|
||||
range1.right = DB::UInt64(101);
|
||||
range1.left_bounded = true;
|
||||
range1.right_bounded = true;
|
||||
range1.left_included = true;
|
||||
range1.right_included = true;
|
||||
|
||||
range2.left = Int64(100);
|
||||
range2.left = DB::Int64(100);
|
||||
range2.left_bounded = true;
|
||||
range2.left_included = true;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user