Skip to content

chore: fix float32 NaN comparison + deprecate generator #2933

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1628,6 +1628,10 @@ void valueToString(StringBuilder b) {

@Override
boolean valueEquals(Value v) {
// NaN == NaN always returns false, so we need a custom check.
if (Float.isNaN(this.value)) {
return Float.isNaN(((Float32Impl) v).value);
}
return ((Float32Impl) v).value == value;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,9 @@ public void withCallback() throws InterruptedException {
});
}
finishedLatch.await();
// There should be between 1 and 4 callbacks, depending on the timing of the threads.
// There should be between 1 and 5 callbacks, depending on the timing of the threads.
// Normally, there should be just 1 callback.
assertThat(callbackCounter.get()).isIn(Range.closed(1, 4));
assertThat(callbackCounter.get()).isIn(Range.closed(1, 5));
assertThat(rowCounter.get()).isEqualTo(3);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4083,6 +4083,7 @@ public void testGetAllTypesAsString() {
int col = 0;
assertAsString("true", resultSet, col++);
assertAsString("100", resultSet, col++);
assertAsString("-3.14", resultSet, col++);
assertAsString("3.14", resultSet, col++);
assertAsString("6.626", resultSet, col++);
assertAsString("test-string", resultSet, col++);
Expand All @@ -4100,6 +4101,15 @@ public void testGetAllTypesAsString() {
String.format("%d", Long.MAX_VALUE), String.format("%d", Long.MIN_VALUE), "NULL"),
resultSet,
col++);
assertAsString(
ImmutableList.of(
"NULL",
Float.valueOf(Float.MAX_VALUE).toString(),
Float.valueOf(Float.MIN_VALUE).toString(),
"NaN",
"3.14"),
resultSet,
col++);
assertAsString(ImmutableList.of("NULL", "-12345.6789", "3.14"), resultSet, col++);
assertAsString(ImmutableList.of("6.626", "NULL", "-8.9123"), resultSet, col++);
assertAsString(ImmutableList.of("test-string1", "NULL", "test-string2"), resultSet, col++);
Expand Down Expand Up @@ -4561,6 +4571,7 @@ private ListValue getRows(Dialect dialect) {
ListValue.newBuilder()
.addValues(com.google.protobuf.Value.newBuilder().setBoolValue(true).build())
.addValues(com.google.protobuf.Value.newBuilder().setStringValue("100").build())
.addValues(com.google.protobuf.Value.newBuilder().setNumberValue(-3.14f).build())
.addValues(com.google.protobuf.Value.newBuilder().setNumberValue(3.14d).build())
.addValues(com.google.protobuf.Value.newBuilder().setStringValue("6.626").build())
.addValues(com.google.protobuf.Value.newBuilder().setStringValue("test-string").build())
Expand Down Expand Up @@ -4609,6 +4620,31 @@ private ListValue getRows(Dialect dialect) {
.setNullValue(NullValue.NULL_VALUE)
.build())
.build()))
.addValues(
com.google.protobuf.Value.newBuilder()
.setListValue(
ListValue.newBuilder()
.addValues(
com.google.protobuf.Value.newBuilder()
.setNullValue(NullValue.NULL_VALUE)
.build())
.addValues(
com.google.protobuf.Value.newBuilder()
.setNumberValue(Float.MAX_VALUE)
.build())
.addValues(
com.google.protobuf.Value.newBuilder()
.setNumberValue(Float.MIN_VALUE)
.build())
.addValues(
com.google.protobuf.Value.newBuilder()
.setStringValue("NaN")
.build())
.addValues(
com.google.protobuf.Value.newBuilder()
.setNumberValue(3.14f)
.build())
.build()))
.addValues(
com.google.protobuf.Value.newBuilder()
.setListValue(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
import com.google.cloud.spanner.MockSpannerServiceImpl.StatementResult;
import com.google.cloud.spanner.TransactionRunner.TransactionCallable;
import com.google.cloud.spanner.TransactionRunnerImpl.TransactionContextImpl;
import com.google.cloud.spanner.connection.RandomResultSetGenerator;
import com.google.common.collect.ImmutableList;
import com.google.common.util.concurrent.MoreExecutors;
import com.google.protobuf.AbstractMessage;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
import com.google.spanner.v1.TypeCode;
import java.util.Random;

/** @deprecated Use {@link com.google.cloud.spanner.connection.RandomResultSetGenerator} instead. */
@Deprecated
public class RandomResultSetGenerator {
private static final Type[] TYPES =
new Type[] {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@ public void float32() {
assertThat(v.getFloat32()).isWithin(0.0001f).of(1.23f);
assertThat(v.toString()).isEqualTo("1.23");
assertEquals("1.23", v.getAsString());
assertEquals(Value.float32(Float.NaN), Value.float32(Float.NaN));
}

@Test
Expand Down Expand Up @@ -224,6 +225,7 @@ public void float64() {
assertThat(v.getFloat64()).isWithin(0.0001).of(1.23);
assertThat(v.toString()).isEqualTo("1.23");
assertEquals("1.23", v.getAsString());
assertEquals(Value.float64(Double.NaN), Value.float64(Double.NaN));
}

@Test
Expand Down Expand Up @@ -267,6 +269,7 @@ public void pgNumeric() {
assertEquals(1234.5678D, value.getFloat64(), 0.00001);
assertEquals("1234.5678", value.toString());
assertEquals("1234.5678", value.getAsString());
assertEquals(Value.pgNumeric("NaN"), Value.pgNumeric("NaN"));
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
import com.google.cloud.spanner.ForceCloseSpannerFunction;
import com.google.cloud.spanner.MockSpannerServiceImpl;
import com.google.cloud.spanner.MockSpannerServiceImpl.StatementResult;
import com.google.cloud.spanner.RandomResultSetGenerator;
import com.google.cloud.spanner.Statement;
import com.google.cloud.spanner.admin.database.v1.MockDatabaseAdminImpl;
import com.google.cloud.spanner.admin.instance.v1.MockInstanceAdminImpl;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public void testAllResultsAreReturned() {
if (numPartitions == 0) {
assertEquals(0, resultSet.getColumnCount());
} else {
assertEquals(22, resultSet.getColumnCount());
assertEquals(24, resultSet.getColumnCount());
assertEquals(Type.bool(), resultSet.getColumnType(0));
assertEquals(Type.bool(), resultSet.getColumnType("COL0"));
assertEquals(10, resultSet.getColumnIndex("COL10"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,20 @@ public static Object[] data() {

@Parameter public Dialect dialect;

private Dialect currentDialect;

@Before
public void setupDialect() {
mockSpanner.putStatementResult(StatementResult.detectDialectResult(dialect));
if (currentDialect != dialect) {
mockSpanner.putStatementResult(StatementResult.detectDialectResult(dialect));
SpannerPool.closeSpannerPool();
currentDialect = dialect;
}
}

@After
public void clearRequests() {
mockSpanner.clearRequests();
SpannerPool.closeSpannerPool();
}

@Test
Expand Down Expand Up @@ -349,9 +354,9 @@ public void testRunEmptyPartitionedQuery() {
statement, PartitionOptions.newBuilder().setMaxPartitions(maxPartitions).build())) {
assertFalse(resultSet.next());
assertNotNull(resultSet.getMetadata());
assertEquals(22, resultSet.getMetadata().getRowType().getFieldsCount());
assertEquals(24, resultSet.getMetadata().getRowType().getFieldsCount());
assertNotNull(resultSet.getType());
assertEquals(22, resultSet.getType().getStructFields().size());
assertEquals(24, resultSet.getType().getStructFields().size());
}
}
assertEquals(1, mockSpanner.countRequestsOfType(CreateSessionRequest.class));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ public static Type[] generateAllTypes(Dialect dialect) {
Arrays.asList(
Type.newBuilder().setCode(TypeCode.BOOL).build(),
Type.newBuilder().setCode(TypeCode.INT64).build(),
Type.newBuilder().setCode(TypeCode.FLOAT32).build(),
Type.newBuilder().setCode(TypeCode.FLOAT64).build(),
dialect == Dialect.POSTGRESQL
? Type.newBuilder()
Expand All @@ -76,6 +77,10 @@ public static Type[] generateAllTypes(Dialect dialect) {
.setCode(TypeCode.ARRAY)
.setArrayElementType(Type.newBuilder().setCode(TypeCode.INT64))
.build(),
Type.newBuilder()
.setCode(TypeCode.ARRAY)
.setArrayElementType(Type.newBuilder().setCode(TypeCode.FLOAT32))
.build(),
Type.newBuilder()
.setCode(TypeCode.ARRAY)
.setArrayElementType(Type.newBuilder().setCode(TypeCode.FLOAT64))
Expand Down Expand Up @@ -229,6 +234,13 @@ private void setRandomValue(Value.Builder builder, Type type) {
random.nextInt(2019) + 1, random.nextInt(11) + 1, random.nextInt(28) + 1);
builder.setStringValue(date.toString());
break;
case FLOAT32:
if (randomNaN()) {
builder.setNumberValue(Float.NaN);
} else {
builder.setNumberValue(random.nextFloat());
}
break;
case FLOAT64:
if (randomNaN()) {
builder.setNumberValue(Double.NaN);
Expand Down