From 7815e0913afff349c6f922a31db0be488021a0fd Mon Sep 17 00:00:00 2001 From: Gian Merlino Date: Wed, 28 Feb 2024 09:58:17 -0800 Subject: [PATCH] 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. --- .../org/apache/druid/data/input/Rows.java | 38 +-- .../druid/data/input/impl/RowsTest.java | 240 ++++++++++++++++++ 2 files changed, 259 insertions(+), 19 deletions(-) create mode 100644 processing/src/test/java/org/apache/druid/data/input/impl/RowsTest.java 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 035aa5b45329..369751c34e6b 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,12 +24,12 @@ 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; import javax.annotation.Nullable; - import java.nio.ByteBuffer; import java.util.Arrays; import java.util.Collections; @@ -123,10 +123,12 @@ public static Number objectToNumber( 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(), ','); @@ -141,25 +143,11 @@ public static Number objectToNumber( 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) { @@ -186,6 +174,18 @@ public static Number objectToNumber( 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 000000000000..e682d737a93d --- /dev/null +++ b/processing/src/test/java/org/apache/druid/data/input/impl/RowsTest.java @@ -0,0 +1,240 @@ +/* + * 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 validCases = new LinkedHashMap<>(); + private final List invalidCases = new ArrayList<>(); + + @Before + public void setUp() throws Exception + { + // 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 + 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); + 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 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 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 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.defaultLongValue(), + 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 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.defaultLongValue(), + 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 + "]")) + ); + } + } +}