We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c46ff60 commit 197102eCopy full SHA for 197102e
src/iceberg/expression/literal.cc
@@ -188,8 +188,7 @@ std::strong_ordering CompareFloat(T lhs, T rhs) {
188
return std::strong_ordering::equivalent;
189
}
190
// -NaN < NaN
191
- return lhs_is_negative ? std::strong_ordering::less
192
- : std::strong_ordering::greater;
+ return lhs_is_negative ? std::strong_ordering::less : std::strong_ordering::greater;
193
194
195
// For non-NaN values, use standard strong ordering
0 commit comments