1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
|
#pragma once
#include <Core/Field.h>
#include <Core/AccurateComparison.h>
#include <base/demangle.h>
#include <Common/FieldVisitors.h>
#include <IO/ReadBufferFromString.h>
#include <IO/ReadHelpers.h>
namespace DB
{
namespace ErrorCodes
{
extern const int BAD_TYPE_OF_FIELD;
}
/** More precise comparison, used for index.
* Differs from Field::operator< and Field::operator== in that it also compares values of different types.
* Comparison rules are same as in FunctionsComparison (to be consistent with expression evaluation in query).
*/
class FieldVisitorAccurateEquals : public StaticVisitor<bool>
{
public:
template <typename T, typename U>
bool operator() (const T & l, const U & r) const
{
if constexpr (std::is_same_v<T, Null> || std::is_same_v<U, Null>)
{
if constexpr (std::is_same_v<T, Null> && std::is_same_v<U, Null>)
return l == r;
return false;
}
else if constexpr (std::is_same_v<T, bool>)
{
return operator()(UInt8(l), r);
}
else if constexpr (std::is_same_v<U, bool>)
{
return operator()(l, UInt8(r));
}
else
{
if constexpr (std::is_same_v<T, U>)
return l == r;
if constexpr (is_arithmetic_v<T> && is_arithmetic_v<U>)
return accurate::equalsOp(l, r);
/// TODO This is wrong (does not respect scale).
if constexpr (is_decimal_field<T> && is_decimal_field<U>)
return l == r;
if constexpr (is_decimal_field<T> && is_arithmetic_v<U>)
return l == DecimalField<Decimal256>(Decimal256(r), 0);
if constexpr (is_arithmetic_v<T> && is_decimal_field<U>)
return DecimalField<Decimal256>(Decimal256(l), 0) == r;
if constexpr (std::is_same_v<T, String> && is_arithmetic_v<U>)
{
ReadBufferFromString in(l);
U parsed;
readText(parsed, in);
return operator()(parsed, r);
}
if constexpr (std::is_same_v<U, String> && is_arithmetic_v<T>)
{
ReadBufferFromString in(r);
T parsed;
readText(parsed, in);
return operator()(l, parsed);
}
}
throw Exception(ErrorCodes::BAD_TYPE_OF_FIELD, "Cannot compare {} with {}",
demangle(typeid(T).name()), demangle(typeid(U).name()));
}
};
class FieldVisitorAccurateLess : public StaticVisitor<bool>
{
public:
template <typename T, typename U>
bool operator() (const T & l, const U & r) const
{
if constexpr (std::is_same_v<T, Null> && std::is_same_v<U, Null>)
{
return l.isNegativeInfinity() && r.isPositiveInfinity();
}
else if constexpr (std::is_same_v<T, Null>)
{
return l.isNegativeInfinity();
}
else if constexpr (std::is_same_v<U, Null>)
{
return r.isPositiveInfinity();
}
else if constexpr (std::is_same_v<T, bool>)
{
return operator()(UInt8(l), r);
}
else if constexpr (std::is_same_v<U, bool>)
{
return operator()(l, UInt8(r));
}
else
{
if constexpr (std::is_same_v<T, U>)
return l < r;
if constexpr (is_arithmetic_v<T> && is_arithmetic_v<U>)
return accurate::lessOp(l, r);
/// TODO This is wrong (does not respect scale).
if constexpr (is_decimal_field<T> && is_decimal_field<U>)
return l < r;
if constexpr (is_decimal_field<T> && is_arithmetic_v<U>)
return l < DecimalField<Decimal256>(Decimal256(r), 0);
if constexpr (is_arithmetic_v<T> && is_decimal_field<U>)
return DecimalField<Decimal256>(Decimal256(l), 0) < r;
if constexpr (std::is_same_v<T, String> && is_arithmetic_v<U>)
{
ReadBufferFromString in(l);
U parsed;
readText(parsed, in);
return operator()(parsed, r);
}
if constexpr (std::is_same_v<U, String> && is_arithmetic_v<T>)
{
ReadBufferFromString in(r);
T parsed;
readText(parsed, in);
return operator()(l, parsed);
}
}
throw Exception(ErrorCodes::BAD_TYPE_OF_FIELD, "Cannot compare {} with {}",
demangle(typeid(T).name()), demangle(typeid(U).name()));
}
};
class FieldVisitorAccurateLessOrEqual : public StaticVisitor<bool>
{
public:
template <typename T, typename U>
bool operator()(const T & l, const U & r) const
{
auto less_cmp = FieldVisitorAccurateLess();
return !less_cmp(r, l);
}
};
}
|