Skip to content

Commit

Permalink
Fixed issue #17
Browse files Browse the repository at this point in the history
  • Loading branch information
lvca committed Nov 12, 2014
1 parent 126422d commit d1be2d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-etl</artifactId>
<version>1.2-SNAPSHOT</version>
<version>1.3-SNAPSHOT</version>
<packaging>jar</packaging>

<name>orientdb-etl</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public void begin() {
final ResultSet countRs = stm.executeQuery(query);
try {
if (countRs != null && countRs.next())
total = countRs.getInt(0);
total = countRs.getInt(1);
} finally {
if (countRs != null)
try {
Expand Down

0 comments on commit d1be2d9

Please sign in to comment.