|
6 | 6 | # All Rights Reserved.
|
7 | 7 | # You must accept the terms of that agreement to use this software.
|
8 | 8 | #
|
9 |
| -########################################################################################## |
| 9 | +############################################################################### |
10 | 10 | # This is the default repo file to allow CI builds to function properly.
|
11 | 11 | # Please do not commit any changes on it.
|
12 | 12 | #
|
13 |
| -# If you want to test olap4j against a different database, you should |
14 |
| -# edit the jdbc.properties file in the simple-jndi folder. |
15 | 13 | #
|
16 | 14 | # SPECIAL NOTE.
|
17 | 15 | # If the TCK is launched within Ant, the default amount of memory that
|
18 | 16 | # is allowed for Ant won't do the job. There are lots of OLAP operations
|
19 | 17 | # to perform and it is strongly suggested to give at lease 1 gig of ram
|
20 | 18 | # to Ant in order to run properly. You can easily achieve this by setting
|
21 | 19 | # ANT_OPTS environment variable to "-Xmx1024m".
|
22 |
| -########################################################################################## |
23 |
| - |
24 |
| -org.olap4j.test.connectUrl=jdbc:mondrian:Datasource=jdbc/SampleData;Catalog=./foodmart/FoodMart.xml; |
| 20 | +############################################################################### |
25 | 21 |
|
| 22 | +############################################################################### |
26 | 23 | # This activates the Mondrian in-process tester.
|
| 24 | +# It is the default in-process Mondrian tester. |
| 25 | +# By default, it will use a file based HSQLDB in the |
| 26 | +# /foodmart folder. If you want to test olap4j against |
| 27 | +# a different database, edit the jdbc.properties file |
| 28 | +# in the /simple-jndi folder. |
| 29 | + |
27 | 30 | org.olap4j.test.helperClassName=org.olap4j.MondrianTester
|
| 31 | +org.olap4j.test.connectUrl=jdbc:mondrian:Datasource=jdbc/SampleData;Catalog=./foodmart/FoodMart.xml; |
| 32 | + |
| 33 | +############################################################################### |
| 34 | +# These two lines activate the XMLA tester. Uncomment the two |
| 35 | +# lines below to activate it. Make sure you comment out all others. |
| 36 | +# The in-process XML/A tester is a memory hog. Read the comment above. |
| 37 | +# By default, it will use a file based HSQLDB in the |
| 38 | +# /foodmart folder. If you want to test olap4j against |
| 39 | +# a different database, edit the jdbc.properties file |
| 40 | +# in the /simple-jndi folder. |
28 | 41 |
|
29 |
| -# These two lines activate the XMLA tester. Comment the line |
30 |
| -# above and uncomment the two elow to activate it. |
31 | 42 | #org.olap4j.test.helperClassName=org.olap4j.XmlaTester
|
32 | 43 | #org.olap4j.XmlaTester.CatalogUrl=file:foodmart/FoodMart.xml
|
33 | 44 |
|
| 45 | +############################################################################### |
34 | 46 | # These options are used to test against a remote XML/A server.
|
35 |
| -# The server must have the FoodMart schema installed. |
| 47 | +# Uncomment those properties and comment out the others above to |
| 48 | +# activate it. The server must have the FoodMart schema installed. |
| 49 | +# Both the data and the schema can be found in /foodmart |
| 50 | + |
36 | 51 | #org.olap4j.test.helperClassName=org.olap4j.RemoteXmlaTester
|
37 | 52 | #org.olap4j.RemoteXmlaTester.JdbcUrl=jdbc:xmla:Server=http://localhost:8080/mondrian/xmla
|
38 | 53 | #org.olap4j.RemoteXmlaTester.Username=joe
|
|
0 commit comments