Skip to content

Commit 7452fe8

Browse files
committed
test: also enable float32 null test
1 parent 59d121c commit 7452fe8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/com/google/cloud/spanner/jdbc/it/ITJdbcPreparedStatementTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1464,9 +1464,9 @@ public void test13_InsertUntypedNullValues() throws SQLException {
14641464
try (PreparedStatement preparedStatement =
14651465
connection.prepareStatement(
14661466
"insert into all_nullable_types ("
1467-
+ "ColInt64, ColFloat64, ColBool, ColString, ColBytes, ColDate, ColTimestamp, ColNumeric, ColJson, "
1467+
+ "ColInt64, ColFloat64, ColFloat32, ColBool, ColString, ColBytes, ColDate, ColTimestamp, ColNumeric, ColJson, "
14681468
+ "ColInt64Array, ColFloat64Array, ColBoolArray, ColStringArray, ColBytesArray, ColDateArray, ColTimestampArray, ColNumericArray, ColJsonArray) "
1469-
+ "values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)")) {
1469+
+ "values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)")) {
14701470
for (int param = 1;
14711471
param <= preparedStatement.getParameterMetaData().getParameterCount();
14721472
param++) {

0 commit comments

Comments
 (0)