Skip to content

Commit

Permalink
Open new interface for result set hash computations
Browse files Browse the repository at this point in the history
  • Loading branch information
physikerwelt committed Nov 21, 2021
1 parent 0d0f32f commit 61ef133
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.formulasearchengine</groupId>
<artifactId>dbs-sql-check</artifactId>
<version>1.4.1-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ private static int getHash(Boolean sorted, Statement statement, String solutionQ
return actualHash;
}

private static int computeOrderAwareResultSetHash(ResultSet result) throws SQLException {
public static int computeOrderAwareResultSetHash(ResultSet result) throws SQLException {

int hash = 0;
int hash;
int rowCnt = 0;

result.first();
Expand Down

0 comments on commit 61ef133

Please sign in to comment.