Skip to content

Commit

Permalink
Makes the XMLA driver return TRANSACTION_NONE to signal the connectio…
Browse files Browse the repository at this point in the history
…n pools that it doesn't support transaction isolation.

git-svn-id: https://olap4j.svn.sourceforge.net/svnroot/olap4j/trunk@347 c6a108a4-781c-0410-a6c6-c2d559e19af0
  • Loading branch information
lucboudreau committed Aug 10, 2010
1 parent 4564357 commit 4114437
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/olap4j/driver/xmla/XmlaOlap4jConnection.java
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ public void setTransactionIsolation(int level) throws SQLException {
}

public int getTransactionIsolation() throws SQLException {
throw new UnsupportedOperationException();
return TRANSACTION_NONE;
}

public SQLWarning getWarnings() throws SQLException {
Expand Down

0 comments on commit 4114437

Please sign in to comment.