Skip to content

Commit

Permalink
Release v1.40.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
albogdano committed Jun 15, 2021
1 parent 2057036 commit 4884d3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ RUN mkdir -p /para/lib
WORKDIR /para

ENV PARA_PLUGIN_ID="para-dao-sql" \
PARA_PLUGIN_VER="1.39.0"
PARA_PLUGIN_VER="1.40.0"

ADD https://oss.sonatype.org/service/local/repositories/releases/content/com/erudika/$PARA_PLUGIN_ID/$PARA_PLUGIN_VER/$PARA_PLUGIN_ID-$PARA_PLUGIN_VER-shaded.jar /para/lib/
2 changes: 1 addition & 1 deletion src/main/java/com/erudika/para/persistence/SqlUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ protected static <P extends ParaObject> List<P> readPage(String appid, Pager pag
}

private static PreparedStatement getInfoTablePreparedStatement(Connection connection) throws SQLException {
if (useLiSqlSyntax) {
if (useLiSqlSyntax) {
return connection.prepareStatement("SELECT tbl_name FROM sqlite_master WHERE tbl_name = ? OR tbl_name = ?");
}
return connection.prepareStatement(Utils.formatMessage("SELECT TABLE_NAME FROM {0} WHERE "
Expand Down

0 comments on commit 4884d3d

Please sign in to comment.