Skip to content

Commit

Permalink
fixes after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
alexradzin committed Aug 16, 2023
1 parent 7dc734c commit 4da89e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ void shouldPostSqlQueryWithExpectedUrl() throws FireboltException, IOException {
String requestId = result.getKey();
String url = result.getValue();
assertEquals(
format("http://firebolt1:555/?result_overflow_mode=break&database=db1&output_format=TabSeparatedWithNamesAndTypes&query_id=%s&compress=1&max_result_rows=1&max_execution_time=15", requestId),
format("http://firebolt1:555/?database=db1&output_format=TabSeparatedWithNamesAndTypes&query_id=%s&compress=1&max_execution_time=15", requestId),
url);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ void shouldBeEmptyWithNonQueryStatement() throws SQLException {

FireboltStatementService fireboltStatementService = new FireboltStatementService(statementClient);
Assertions.assertEquals(Optional.empty(), fireboltStatementService.execute(statementInfoWrapper,
fireboltProperties, -1, 10, true, mock(FireboltStatement.class)));
fireboltProperties, -1, 10, true, false, mock(FireboltStatement.class)));
verify(statementClient).executeSqlStatement(statementInfoWrapper, fireboltProperties, false, -1, true);
}

Expand Down

0 comments on commit 4da89e9

Please sign in to comment.