This is an automated email from the ASF dual-hosted git repository.

abhishek pushed a commit to branch 29.0.1
in repository https://gitbox.apache.org/repos/asf/druid.git


The following commit(s) were added to refs/heads/29.0.1 by this push:
     new 2b9ee7fc714 Rows.objectToNumber: Accept decimals with output type 
LONG. (#15999) (#16062)
2b9ee7fc714 is described below

commit 2b9ee7fc71432e5be9b8d6b738cc55886cb9b3d4
Author: Gian Merlino <[email protected]>
AuthorDate: Fri Mar 8 01:54:56 2024 -0800

    Rows.objectToNumber: Accept decimals with output type LONG. (#15999) 
(#16062)
    
    * Rows.objectToNumber: Accept decimals with output type LONG.
    
    PR #15615 added an optimization to avoid parsing numbers twice in cases
    where we know that they should definitely be longs or
    definitely be doubles. Rather than try parsing as long first, and then
    try parsing as double, it would use only the parsing routine specific to
    the requested outputType.
    
    This caused a bug: previously, we would accept decimals like "1.0" or
    "1.23" as longs, by truncating them to "1". After that patch, we would
    treat such decimals as nulls when the outputType is set to LONG.
    
    This patch retains the short-circuit for doubles: if outputType is
    DOUBLE, we only parse the string as a double. But for outputType LONG,
    this patch restores the old behavior: try to parse as long first,
    then double.
---
 .../java/org/apache/druid/data/input/Rows.java     |  37 ++--
 .../org/apache/druid/data/input/impl/RowsTest.java | 242 +++++++++++++++++++++
 2 files changed, 261 insertions(+), 18 deletions(-)

diff --git a/processing/src/main/java/org/apache/druid/data/input/Rows.java 
b/processing/src/main/java/org/apache/druid/data/input/Rows.java
index d2a7ded7612..db45dac852d 100644
--- a/processing/src/main/java/org/apache/druid/data/input/Rows.java
+++ b/processing/src/main/java/org/apache/druid/data/input/Rows.java
@@ -24,6 +24,7 @@ import com.google.common.collect.ImmutableSortedSet;
 import com.google.common.primitives.Longs;
 import org.apache.druid.common.config.NullHandling;
 import org.apache.druid.java.util.common.IAE;
+import org.apache.druid.java.util.common.ISE;
 import org.apache.druid.java.util.common.StringUtils;
 import org.apache.druid.java.util.common.parsers.ParseException;
 import org.apache.druid.segment.column.ValueType;
@@ -112,10 +113,12 @@ public final class Rows
       throw new IAE("Output type[%s] must be numeric", outputType);
     }
 
+    final Number asNumber;
+
     if (inputValue == null) {
-      return (Number) NullHandling.defaultValueForType(outputType != null ? 
outputType : ValueType.LONG);
+      asNumber = (Number) NullHandling.defaultValueForType(outputType != null 
? outputType : ValueType.LONG);
     } else if (inputValue instanceof Number) {
-      return (Number) inputValue;
+      asNumber = (Number) inputValue;
     } else if (inputValue instanceof String) {
       try {
         String metricValueString = StringUtils.removeChar(((String) 
inputValue).trim(), ',');
@@ -130,25 +133,11 @@ public final class Rows
           v = Longs.tryParse(metricValueString);
         }
 
-        if (v == null && outputType != ValueType.LONG) {
+        if (v == null) {
           v = Double.valueOf(metricValueString);
         }
 
-        if (v == null) {
-          if (throwParseExceptions) {
-            throw new ParseException(
-                String.valueOf(inputValue),
-                "Unable to parse value[%s] for field[%s] as type[%s]",
-                inputValue.getClass(),
-                name,
-                outputType
-            );
-          } else {
-            return (Number) NullHandling.defaultValueForType(outputType);
-          }
-        } else {
-          return outputType == ValueType.FLOAT ? Float.valueOf(v.floatValue()) 
: v;
-        }
+        asNumber = v;
       }
       catch (Exception e) {
         if (throwParseExceptions) {
@@ -175,6 +164,18 @@ public final class Rows
         return (Number) NullHandling.defaultValueForType(outputType != null ? 
outputType : ValueType.LONG);
       }
     }
+
+    if (outputType == null || asNumber == null) {
+      return asNumber;
+    } else if (outputType == ValueType.LONG) {
+      return asNumber.longValue();
+    } else if (outputType == ValueType.FLOAT) {
+      return asNumber.floatValue();
+    } else if (outputType == ValueType.DOUBLE) {
+      return asNumber.doubleValue();
+    } else {
+      throw new ISE("Cannot read number as type[%s]", outputType);
+    }
   }
 
   /**
diff --git 
a/processing/src/test/java/org/apache/druid/data/input/impl/RowsTest.java 
b/processing/src/test/java/org/apache/druid/data/input/impl/RowsTest.java
new file mode 100644
index 00000000000..14ff18cf023
--- /dev/null
+++ b/processing/src/test/java/org/apache/druid/data/input/impl/RowsTest.java
@@ -0,0 +1,242 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.druid.data.input.impl;
+
+import com.google.common.collect.ImmutableList;
+import org.apache.druid.common.config.NullHandling;
+import org.apache.druid.data.input.Rows;
+import org.apache.druid.java.util.common.StringUtils;
+import org.apache.druid.java.util.common.parsers.ParseException;
+import org.apache.druid.segment.column.ValueType;
+import org.apache.druid.testing.InitializedNullHandlingTest;
+import org.hamcrest.CoreMatchers;
+import org.hamcrest.MatcherAssert;
+import org.junit.Assert;
+import org.junit.Before;
+import org.junit.Test;
+import org.junit.internal.matchers.ThrowableMessageMatcher;
+
+import java.util.ArrayList;
+import java.util.LinkedHashMap;
+import java.util.List;
+import java.util.Map;
+
+public class RowsTest extends InitializedNullHandlingTest
+{
+  private static final String FIELD_NAME = "foo";
+
+  private final Map<Object, Number> validCases = new LinkedHashMap<>();
+  private final List<Object> invalidCases = new ArrayList<>();
+
+  @Before
+  public void setUp()
+  {
+    // Null
+    validCases.put(null, NullHandling.sqlCompatible() ? null : 0L);
+
+    // Empty string
+    if (NullHandling.sqlCompatible()) {
+      invalidCases.add("");
+    } else {
+      validCases.put("", 0L);
+    }
+
+    // Strings that are valid longs
+    validCases.put("0", 0L);
+    validCases.put("+0", 0L);
+    validCases.put("1", 1L);
+    validCases.put("1,234", 1234L);
+    validCases.put("-1,234", -1234L);
+    validCases.put("+1", 1L);
+    validCases.put("-1", -1L);
+    validCases.put(String.valueOf(Long.MAX_VALUE), Long.MAX_VALUE);
+    validCases.put(String.valueOf(Long.MIN_VALUE), Long.MIN_VALUE);
+
+    // Strings that are valid regular doubles
+    validCases.put("0.0", 0.0);
+    validCases.put("-0.0", -0.0);
+    validCases.put("+0.0", 0.0);
+    validCases.put("1e1", 10.0);
+    validCases.put("-1e1", -10.0);
+    validCases.put("1.0", 1.0);
+    validCases.put("2.1", 2.1);
+
+    // Strings that are valid special doubles
+    //CHECKSTYLE.OFF: Regexp
+    validCases.put(String.valueOf(Double.MAX_VALUE), Double.MAX_VALUE);
+    validCases.put(String.valueOf(Double.MIN_VALUE), Double.MIN_VALUE);
+    validCases.put(String.valueOf(Double.POSITIVE_INFINITY), 
Double.POSITIVE_INFINITY);
+    validCases.put(String.valueOf(Double.NEGATIVE_INFINITY), 
Double.NEGATIVE_INFINITY);
+    //CHECKSTYLE.ON: Regexp
+    validCases.put(String.valueOf(Double.NaN), Double.NaN);
+
+    // Numbers are also valid numbers
+    validCases.put(0, 0);
+    validCases.put(0L, 0L);
+    validCases.put(0.0, 0.0);
+    validCases.put(0f, 0f);
+    validCases.put(-1L, -1L);
+    validCases.put(1.1, 1.1);
+
+    // Invalid objects
+    invalidCases.add("notanumber");
+    invalidCases.add(ImmutableList.of(1L));
+    invalidCases.add(ImmutableList.of("1"));
+  }
+
+  @Test
+  public void test_objectToNumber_typeUnknown_noThrow()
+  {
+    for (final Map.Entry<Object, Number> entry : validCases.entrySet()) {
+      Assert.assertEquals(
+          StringUtils.format(
+              "%s (%s)",
+              entry.getKey(),
+              entry.getKey() == null ? null : 
entry.getKey().getClass().getSimpleName()
+          ),
+          entry.getValue(), Rows.objectToNumber(FIELD_NAME, entry.getKey(), 
null, false)
+      );
+    }
+
+    for (final Object o : invalidCases) {
+      Assert.assertEquals(
+          o + " (nothrow)",
+          NullHandling.defaultLongValue(),
+          Rows.objectToNumber(FIELD_NAME, o, null, false)
+      );
+
+      final ParseException e = Assert.assertThrows(
+          o + " (throw)",
+          ParseException.class,
+          () -> Rows.objectToNumber(FIELD_NAME, o, null, true)
+      );
+
+      MatcherAssert.assertThat(
+          e,
+          ThrowableMessageMatcher.hasMessage(CoreMatchers.containsString("for 
field[" + FIELD_NAME + "]"))
+      );
+    }
+  }
+
+  @Test
+  public void test_objectToNumber_typeLong_noThrow()
+  {
+    for (final Map.Entry<Object, Number> entry : validCases.entrySet()) {
+      Assert.assertEquals(
+          StringUtils.format(
+              "%s (%s)",
+              entry.getKey(),
+              entry.getKey() == null ? null : 
entry.getKey().getClass().getSimpleName()
+          ),
+          entry.getValue() != null ? entry.getValue().longValue() : null,
+          Rows.objectToNumber(FIELD_NAME, entry.getKey(), ValueType.LONG, 
false)
+      );
+    }
+
+    for (final Object o : invalidCases) {
+      Assert.assertEquals(
+          o + " (nothrow)",
+          NullHandling.defaultLongValue(),
+          Rows.objectToNumber(FIELD_NAME, o, ValueType.LONG, false)
+      );
+
+      final ParseException e = Assert.assertThrows(
+          o + " (throw)",
+          ParseException.class,
+          () -> Rows.objectToNumber(FIELD_NAME, o, ValueType.LONG, true)
+      );
+
+      MatcherAssert.assertThat(
+          e,
+          ThrowableMessageMatcher.hasMessage(CoreMatchers.containsString("for 
field[" + FIELD_NAME + "]"))
+      );
+    }
+  }
+
+  @Test
+  public void test_objectToNumber_typeFloat_noThrow()
+  {
+    for (final Map.Entry<Object, Number> entry : validCases.entrySet()) {
+      Assert.assertEquals(
+          StringUtils.format(
+              "%s (%s)",
+              entry.getKey(),
+              entry.getKey() == null ? null : 
entry.getKey().getClass().getSimpleName()
+          ),
+          entry.getValue() != null ? entry.getValue().floatValue() : null,
+          Rows.objectToNumber(FIELD_NAME, entry.getKey(), ValueType.FLOAT, 
false)
+      );
+    }
+
+    for (final Object o : invalidCases) {
+      Assert.assertEquals(
+          o + " (nothrow)",
+          NullHandling.defaultFloatValue(),
+          Rows.objectToNumber(FIELD_NAME, o, ValueType.FLOAT, false)
+      );
+
+      final ParseException e = Assert.assertThrows(
+          o + " (throw)",
+          ParseException.class,
+          () -> Rows.objectToNumber(FIELD_NAME, o, ValueType.FLOAT, true)
+      );
+
+      MatcherAssert.assertThat(
+          e,
+          ThrowableMessageMatcher.hasMessage(CoreMatchers.containsString("for 
field[" + FIELD_NAME + "]"))
+      );
+    }
+  }
+
+  @Test
+  public void test_objectToNumber_typeDouble_noThrow()
+  {
+    for (final Map.Entry<Object, Number> entry : validCases.entrySet()) {
+      Assert.assertEquals(
+          StringUtils.format(
+              "%s (%s)",
+              entry.getKey(),
+              entry.getKey() == null ? null : 
entry.getKey().getClass().getSimpleName()
+          ),
+          entry.getValue() != null ? entry.getValue().doubleValue() : null,
+          Rows.objectToNumber(FIELD_NAME, entry.getKey(), ValueType.DOUBLE, 
false)
+      );
+    }
+
+    for (final Object o : invalidCases) {
+      Assert.assertEquals(
+          o + " (nothrow)",
+          NullHandling.defaultDoubleValue(),
+          Rows.objectToNumber(FIELD_NAME, o, ValueType.DOUBLE, false)
+      );
+
+      final ParseException e = Assert.assertThrows(
+          o + " (throw)",
+          ParseException.class,
+          () -> Rows.objectToNumber(FIELD_NAME, o, ValueType.DOUBLE, true)
+      );
+
+      MatcherAssert.assertThat(
+          e,
+          ThrowableMessageMatcher.hasMessage(CoreMatchers.containsString("for 
field[" + FIELD_NAME + "]"))
+      );
+    }
+  }
+}


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to