Skip to content

Commit

Permalink
Fix record change for Result object
Browse files Browse the repository at this point in the history
  • Loading branch information
Barry-RG committed Jul 16, 2024
1 parent 804235c commit 9034e66
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public Results execute(JdbcTemplate jdbcTemplate, SqlScriptExecutor sqlScriptExe
if(resultList.size() > 0) {
Result result = resultList.get(0);
if(result != null) {
List<List<String>> resultData = result.getData();
List<List<String>> resultData = result.data();
if(resultData != null && resultData.size() > 0) {
List<String> lastResultRow = resultData.get(resultData.size()-1);
if(lastResultRow != null && lastResultRow.size() > 0 ) {
Expand Down

0 comments on commit 9034e66

Please sign in to comment.