Rows.objectToNumber: Accept decimals with output type LONG. (#15999)

* 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.
This commit is contained in:
Gian Merlino 2024-03-04 08:30:27 -08:00 committed by GitHub
parent 4e9b758661
commit 376a41f1e9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 261 additions and 19 deletions

View File

@ -24,12 +24,12 @@ import com.google.common.collect.ImmutableSortedSet;
import com.google.common.primitives.Longs; import com.google.common.primitives.Longs;
import org.apache.druid.common.config.NullHandling; import org.apache.druid.common.config.NullHandling;
import org.apache.druid.java.util.common.IAE; 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.StringUtils;
import org.apache.druid.java.util.common.parsers.ParseException; import org.apache.druid.java.util.common.parsers.ParseException;
import org.apache.druid.segment.column.ValueType; import org.apache.druid.segment.column.ValueType;
import javax.annotation.Nullable; import javax.annotation.Nullable;
import java.nio.ByteBuffer; import java.nio.ByteBuffer;
import java.util.Arrays; import java.util.Arrays;
import java.util.Collections; import java.util.Collections;
@ -123,10 +123,12 @@ public final class Rows
throw new IAE("Output type[%s] must be numeric", outputType); throw new IAE("Output type[%s] must be numeric", outputType);
} }
final Number asNumber;
if (inputValue == null) { 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) { } else if (inputValue instanceof Number) {
return (Number) inputValue; asNumber = (Number) inputValue;
} else if (inputValue instanceof String) { } else if (inputValue instanceof String) {
try { try {
String metricValueString = StringUtils.removeChar(((String) inputValue).trim(), ','); String metricValueString = StringUtils.removeChar(((String) inputValue).trim(), ',');
@ -141,25 +143,11 @@ public final class Rows
v = Longs.tryParse(metricValueString); v = Longs.tryParse(metricValueString);
} }
if (v == null && outputType != ValueType.LONG) { if (v == null) {
v = Double.valueOf(metricValueString); v = Double.valueOf(metricValueString);
} }
if (v == null) { asNumber = v;
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;
}
} }
catch (Exception e) { catch (Exception e) {
if (throwParseExceptions) { if (throwParseExceptions) {
@ -186,6 +174,18 @@ public final class Rows
return (Number) NullHandling.defaultValueForType(outputType != null ? outputType : ValueType.LONG); 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);
}
} }
/** /**

View File

@ -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 + "]"))
);
}
}
}