Skip to content

Commit

Permalink
MONDRIAN: The olap4j driver must return a transaction isolation of TR…
Browse files Browse the repository at this point in the history
…ANSACTION_NONE

[git-p4: depot-paths = "//open/mondrian-release/3.2/": change = 13809]
  • Loading branch information
lucboudreau committed Aug 12, 2010
1 parent c60c7d8 commit 9cf00d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/mondrian/olap4j/MondrianOlap4jConnection.java
Expand Up @@ -214,7 +214,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 9cf00d4

Please sign in to comment.