Skip to content

Commit

Permalink
Fixed SNOW-1270256.
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-dkiriaev committed Mar 26, 2024
1 parent 63b654d commit 57082ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ public static SnowflakeResultSetSerializableV1 create(
resultSetSerializable.parameters =
SessionUtil.getCommonParams(rootNode.path("data").path("parameters"));
if (resultSetSerializable.parameters.isEmpty()) {
resultSetSerializable.parameters = sfSession.getCommonParameters();
resultSetSerializable.parameters = new HashMap<>(sfSession.getCommonParameters());
resultSetSerializable.setStatemementLevelParameters(sfStatement.getStatementParameters());
}

Expand Down

0 comments on commit 57082ba

Please sign in to comment.