Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-ext-simba-jy committed May 27, 2024
1 parent da1002c commit ef77262
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 218 deletions.
2 changes: 1 addition & 1 deletion src/main/java/net/snowflake/client/core/BaseSqlInput.java
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public RowId readRowId() throws SQLException {
throw new SnowflakeLoggedFeatureNotSupportedException(session, "readRowId");
}

abstract Map<String, Object> convertSqlInputToMap(SQLInput sqlInput);
protected abstract Map<String, Object> convertSqlInputToMap(SQLInput sqlInput);

protected String convertString(Object value, FieldMetadata fieldMetadata) throws SQLException {
int columnType = ColumnTypeHelper.getColumnType(fieldMetadata.getType(), session);
Expand Down
216 changes: 0 additions & 216 deletions src/test/java/net/snowflake/client/core/json/BaseSqlInputTest.java

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

import static net.snowflake.client.jdbc.SnowflakeType.convertStringToType;
import static net.snowflake.client.jdbc.SnowflakeType.getJavaType;
import static org.junit.Assert.*;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;
import static org.junit.Assert.assertThrows;
import static org.junit.Assert.assertNull;

import java.math.BigDecimal;
import java.sql.SQLException;
Expand Down

0 comments on commit ef77262

Please sign in to comment.