Skip to content

Commit

Permalink
Fix compatibility issue with jOOQ 3.9.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
niwinz committed Dec 25, 2016
1 parent efae055 commit acb744d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/java/suricatta/impl/ParamWrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import org.jooq.Context;
import org.jooq.DataType;
import org.jooq.Param;
import org.jooq.ParamMode;

import static org.jooq.conf.ParamType.INDEXED;
import static org.jooq.conf.ParamType.INLINED;
Expand All @@ -27,6 +28,11 @@ public ParamWrapper(final IParam adapter, final Object value) {
this.inline = false;
}

@Override
public ParamMode getParamMode() {
return ParamMode.IN;
}

@Override
public Object getValue() {
return value;
Expand Down

0 comments on commit acb744d

Please sign in to comment.