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 = 3415]
  • Loading branch information
julianhyde committed Mar 29, 2005
1 parent 0ed61d4 commit d5b6f73
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/mondrian/xmla/XmlaUtil.java
Expand Up @@ -51,8 +51,8 @@ public static Map getRequestMap() {
// Deal with embedded & that can be in the JDBC URL
String dataSource =
"Provider=Mondrian;"
+ "Jdbc=" + url + ";"
+ "Jdbc=" + url.replaceAll("&", "&") + ";"
+ "Catalog=" + catalogName + ";"
+ "JdbcDrivers=" + driver +";";
final HashMap map = new HashMap();
String[] sampleRequests = getSampleRequests(catalogName, dataSource);
Expand Down
4 changes: 2 additions & 2 deletions webapp/xmlaTest.jsp
Expand Up @@ -4,7 +4,7 @@
java.io.PrintWriter,
java.io.StringWriter,
mondrian.xmla.XmlaUtil,
java.util.HashMap,
java.util.Map,
java.util.Arrays"%>
<%@ page language="java" %>
<%--
Expand All @@ -30,7 +30,7 @@
return sw.toString();
}
private static final HashMap requestMap = XmlaUtil.getRequestMap();
private static final Map requestMap = XmlaUtil.getRequestMap();
%>
<html>
<head>
Expand Down

0 comments on commit d5b6f73

Please sign in to comment.