Skip to content

Commit 50d9313

Browse files
committed
BREAKTHINGS
1 parent 15057b1 commit 50d9313

File tree

1 file changed

+2
-1
lines changed
  • x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/convert

1 file changed

+2
-1
lines changed

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/convert/ToLong.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,8 @@ static long fromKeyword(BytesRef in) {
134134

135135
@ConvertEvaluator(extraName = "FromDouble", warnExceptions = { InvalidArgumentException.class })
136136
static long fromDouble(double dbl) {
137-
return safeDoubleToLong(dbl);
137+
throw new UnsupportedOperationException("SAFDSAF");
138+
// return safeDoubleToLong(dbl);
138139
}
139140

140141
@ConvertEvaluator(extraName = "FromUnsignedLong", warnExceptions = { InvalidArgumentException.class })

0 commit comments

Comments
 (0)