Skip to content

Commit

Permalink
CR changes 6
Browse files Browse the repository at this point in the history
  • Loading branch information
amihaiemil committed Aug 21, 2016
1 parent bc49e7d commit d50b286
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/jdbc/StoredProcedureOutcome.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
*/
@Immutable
@ToString
@EqualsAndHashCode(of = "indexes")
@EqualsAndHashCode
public final class StoredProcedureOutcome<T> implements Outcome<T> {

/**
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/jcabi/jdbc/JdbcSessionITCase.java
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public void callsFunctionWithInOutParam() throws Exception {
StringUtils.join(
"CREATE OR REPLACE FUNCTION fetchUserById(uid IN INTEGER,",
" usrnm OUT text) AS $$ BEGIN",
" SELECT name INTO usrnm FROM usersids WHERE id=uid;",
" SELECT name INTO usrnm FROM usersids WHERE id=uid;",
" END; $$ LANGUAGE plpgsql;"
)
).execute().commit();
Expand Down

0 comments on commit d50b286

Please sign in to comment.