Skip to content

Commit

Permalink
MONDRIAN: Oops.
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//open/mondrian/": change = 190]
  • Loading branch information
julianhyde committed Oct 6, 2002
1 parent 6c9b2fa commit b71fa0a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/main/mondrian/olap/ConnectionBase.java
Expand Up @@ -21,6 +21,8 @@
**/
public abstract class ConnectionBase implements Connection
{
protected Role role;

public String getFullConnectString()
{
String s = getConnectString(),
Expand Down Expand Up @@ -49,6 +51,10 @@ public Exp parseExpression(String s) {
String s2 = s.substring(1, s.length() - 1);
return Literal.createString(s2);
}

public void setRole(Role role) {
this.role = role;
}
}


Expand Down
4 changes: 4 additions & 0 deletions src/main/mondrian/test/TestCalculatedMembers.java
Expand Up @@ -23,6 +23,10 @@
* @version $Id$
*/
public class TestCalculatedMembers extends FoodMartTestCase {
public TestCalculatedMembers(String name) {
super(name);
}

public void testWhole() {
execute(
"with" + nl +
Expand Down

0 comments on commit b71fa0a

Please sign in to comment.