Skip to content

Commit

Permalink
cant do null
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbae committed Mar 13, 2019
1 parent 10e6c17 commit 2386f3e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public void testBulkCopyFloatRowSet() throws SQLException {
rsmd.setColumnType(1, java.sql.Types.FLOAT);

crs.setMetaData(rsmd);
crs.setFloat(1, RandomData.generateReal(true));
crs.setFloat(1, RandomData.generateReal(false));

try (SQLServerBulkCopy bcOperation = new SQLServerBulkCopy(con)) {
bcOperation.setDestinationTableName(tableName);
Expand Down

0 comments on commit 2386f3e

Please sign in to comment.