Skip to content

Latest commit

 

History

History
2323 lines (1739 loc) · 116 KB

HISTORY.md

File metadata and controls

2323 lines (1739 loc) · 116 KB

Olap4j changes

###############################################################################

Olap4j 1.2.0

This is a maintenance release of the olap4j specification. The changes are constrained to the XMLA driver and maintains backward compatibility with previous releases.

  • Issues fixed in core olap4j

    • Small clarification on the javadocs of Level.getMembers regarding the presence of calculated members.
  • Issues addressed in XMLA

    • Fixes for Member.getParentMember when dealing with calculated members.
    • Added support for GZIP compression in the XmlaOlap4jHttpProxy.
    • Fixed issue where an xsd:decimal element was materialized as java.lang.Integer.
    • Added support for xsd:byte, xsd:biginteger and xsd:bigdecimal

###############################################################################

Olap4j 1.1.0

This release is a minor update to the olap4j specification. There have been changes to the internal APIs which will affect developers and implementors of the specification. This release is backwards compatible with applications written against olap4j 1.0.

This release is also the first to introduce our new sister project: olap4j-xmlaserver. It consists of a Java Servlet implementation which provides XMLA services from an olap4j connection. For more details, consult our GitHub page at github.com/olap4j

  • New Features / Improvements

    • Switched to the JavaCC parser (was previously JavaCUP).
    • Added compatibility with Mondrian 4+.
    • Minor changes to the NamedList interface.
  • Bug Fixes in Core

    • Fix bug 3526908. Incomplete LCID list.
    • Fix bug 3515404. Inconsistent behavior when parsing ".CHILDREN" and ".Children"
  • Bug Fixes in XMLA

    • Fixes compatibility issues with Essbase.
    • Fixes compatibility issues with SAP BW.
    • Fixes a thread safety issue in DeferredNamedList.

###############################################################################

Olap4j 1.0.1

This release is a maintenance release and maintains backwards compatibility with version 1.0.0. The license under which olap4j is distributed has changed starting with this release. Olap4j is now distributed in accordance to the Apache License Version 2.0.

Among other notable changes, this version introduces support for JDBC 4.1.

  • New Features / Improvements

    • Added support for Java 7 / JDBC 4.1.
    • XMLA now supports locales.
    • TCK now tests the roles and access controls.
  • XMLA Bug Fixes

    • Fixed bug 848534. Virtual cubes are now returned as part of Schema.getCubes().
    • Fixed issues with the experimental Query Model.
    • Fixes an issue with SAP BW where the XMLA driver would scan through all the available databases/catalogs/schemas, causing access control exceptions.
    • Added the ability to pass server specific properties as part of the XMLA's PropertyList payload.
    • The XmlaDriver now exposes a public constructor to prevent errors in Sun's JDBC implementation.

###############################################################################

Olap4j 1.0.0

Although this file was not kept up to date since a while, we intend to change this starting with version 1.0.0. :)

Olap4j 1.0.0 brings changes to the top of the metadata hierarchy, changes in the driver specification, along with the removal of all APIs which were marked for deprecation prior to 1.0.0.

  • Metadata changes Version 1.0.0 introduces a new object at the top of the OlapDatabaseMetaData, namely the Database object. The database was an implicit member; we have decided to turn it into a first class object of the hierarchy. Catalogs have been modified to reflect this new parent. OlapConnections now have methods to explore the Databases, Catalogs and Schemas on a server.

  • Driver specification changes OlapConnections must now be bound unto a database, a catalog and a schema before being able to resolve cubes and execute queries. Reference implementations have been modified to reflect the correct behavior, as was the TCK. New methods were added to OlapConnection in order to change the connection binding and obtain lists of available Databases, Catalogs and Schemas.

Olap4j is now split into five Java libraries.

  • olap4j.jar The core API

  • olap4j-xmla.jar The XML/A driver for olap4j.

  • olap4j-tck.jar TCK classes.

  • olap4j-jdk14.jar Java 1.4 compatible release. Contains the core API and XML/A driver.

  • olap4j-sources.jar Java source files.

===============================================================================

Changes to olap4j since olap4j-0.9.3.

Summary of changes between olap4j-0.9.3 and olap4j-0.9.4-svn072:

  • olap4j now has an XMLA driver. Tested against mondrian's XMLA driver, it should also work against other XMLA drivers such as Microsoft Analysis Services.

  • olap4j's mondrian driver is now part of the mondrian release. Look for it in mondrian-3.0 onwards.

  • More tests, numerous bug-fixes.

API changes:

  • Arguments to AxisNode constructor re-ordered.

  • Hierarchy.getDefaultMEmber() now throws OlapException.

  • Cube.getMeasures() returns members sorted by ordinal.

  • Added constructor for IdentifierNode which takes a list (convenient for calling with the result from IdentifierNode.parseIdentifier).

Commit history

d01460d Mon, 10 Feb 2014 11:04:44 -0500 - (Luc Boudreau) Fix for feature request #23. Adds support for GZIP compression in the HTTP proxy.

e33d7d8 Mon, 10 Feb 2014 11:03:56 -0500 - (Luc Boudreau) Renames CHANGES.txt to HISTORY.md to make this file more Gitty.

d92fcab Mon, 16 Dec 2013 14:03:14 -0800 - (Julian Hyde) Enable oraclejdk8 in Travis CI.

43e2371 Mon, 2 Dec 2013 12:10:39 -0500 - (mkambol) [MONDRIAN-1770] Disabling ConnectionTest.testParentChild, which fails due to MONDRIAN-1796, an issue with closure tables introduced with the QueryBuilder changes. Also adjusted the content of XmlaOlap4jCellSetTest.testTypedValues, which formerly referred to the [Employee] dimension and hit the same error.

fc132e0 Thu, 8 Aug 2013 15:16:44 -0700 - (Julian Hyde) Update travis link in README.

5a301fe Thu, 8 Aug 2013 13:53:41 -0700 - (Julian Hyde) Enable travis-ci.

b49f30f Tue, 30 Jul 2013 18:10:57 +0200 - (pstoellberger) fix javadoc issue and improve comments

3551c85 Wed, 26 Jun 2013 10:36:11 -0400 - (mkambol) Corrected expected value for ConnectionTest.testVirtualCubeCmBug(). The test was expecting two measures to be present in [Warehouse and Sales] that are not present in the virtual cube's definition.

35d9ba4 Wed, 26 Jun 2013 10:17:49 -0400 - (mkambol) [MONDRIAN-1581] Adding support for .getParentMember() to XmlaOlap4jSurpriseMember.

1728c11 Tue, 18 Jun 2013 17:03:46 -0400 - (mkambol) [MONDRIAN-1581] XmlaOlap4jCellSet was not handling certain datatypes correctly (e.g. xsd:decimal).

f77ffa0 Mon, 3 Jun 2013 11:46:31 -0600 - (Julian Hyde) Add goal to remove XmlaExtra.

be152f0 Sun, 2 Jun 2013 16:33:25 -0600 - (Julian Hyde) Add Julian's wishlist to 2.0 spec

7487bb8 Sun, 2 Jun 2013 15:13:36 -0700 - (Julian Hyde) Start specification for olap4j version 2.0.

af8c7b0 Sun, 2 Jun 2013 16:04:35 -0600 - (Julian Hyde) Add details of olap4j version 2.0 to README.

d242d19 Wed, 1 May 2013 11:01:21 -0700 - (Julian Hyde) Axis ordinal in error message is now 0-based; was 1-based.

11012a6 Mon, 4 Mar 2013 10:53:38 -0500 - (Luc Boudreau) Small change in the javadoc of Level.getMembers

59a4c89 Fri, 1 Mar 2013 20:50:29 +0000 - (Matt Campbell) MONDRIAN-1438. Disabled testDatabaseMetaDataGetMembers, which was failing due to member ordinal values varying. MEMBER_ORDINAL is deprecated and will always return 0 once MONDRIAN-1378 is picked up, at which point this test can be re-enabled.

5f1afbb Fri, 1 Mar 2013 15:42:04 -0500 - (Luc Boudreau) Adds calculated members to Level.getMembers() along with a new test to verify and updated documentation.

e3a4f3d Tue, 26 Feb 2013 17:00:14 -0500 - (Matt Campbell) Correction to expected values in MetadataTest.testDatabaseMetaDataGetSets. Formerly looking for the [Top Sellers] set to be in [Warehouse and Sales], which is not consistent with the Foodmart3.mondrian.xml schema.

d533c9e Fri, 1 Feb 2013 14:51:42 -0800 - (Julian Hyde) Remove dependency on MySQL JDBC driver.

453eb11 Thu, 24 Jan 2013 10:37:18 -0500 - (Luc Boudreau) Update build.properties

e4150f9 Thu, 24 Jan 2013 10:37:01 -0500 - (Luc Boudreau) Update build.properties

7e31ed0 Thu, 24 Jan 2013 13:34:07 +0100 - (pstoellberger) add Filter() for QueryAxis

d07acc9 Tue, 22 Jan 2013 15:05:16 +0100 - (pstoellberger) implement limit function on axis (topcount, bottompercent, ...)

1df1436 Fri, 18 Jan 2013 10:40:14 -0500 - (Luc Boudreau) Update build.properties

5acc206 Fri, 18 Jan 2013 10:36:08 -0500 - (Luc Boudreau) Slight modification to the build script. The JAR file contained two nls.properties files.

7b74403 Wed, 16 Jan 2013 11:42:15 -0500 - (Luc Boudreau) Removes some libraries from the binary distro. Updates the Eclipse classpath.

3e0ec12 Wed, 16 Jan 2013 11:16:31 -0500 - (Luc Boudreau) Update build.properties

9fdcf8b Wed, 16 Jan 2013 11:13:47 -0500 - (Luc Boudreau) Adds more information to the Version.txt file, namely a git commit ID and dates. Also sets the version to 1.1.0 for a numbered build.

10a62e1 Mon, 14 Jan 2013 16:07:51 -0500 - (Luc Boudreau) Some work to get ready for the 1.1.0 release. Also fixes a problem with the ant script. The file nls.properties was not part of the classpath when running the tests form Ant.

57c24f6 Mon, 17 Dec 2012 11:57:22 -0500 - (Luc Boudreau) Fixes a woopsie.

0c6e986 Mon, 17 Dec 2012 11:52:30 -0500 - (Luc Boudreau) Removes the Java RTs from the runtime dependencies.

dd8aba4 Mon, 17 Dec 2012 11:37:18 -0500 - (Luc Boudreau) Adds Profit last Period to Warehouse and Sales.

8c36dc5 Mon, 17 Dec 2012 10:51:08 -0500 - (Luc Boudreau) Some more fixes for Mondrian 4.0 TCK.

3eb8b41 Fri, 7 Dec 2012 11:39:10 -0500 - (Luc Boudreau) Small modification to the XMLA driver so that the format string of measures is available as a property.

f1bd652 Sun, 2 Dec 2012 20:44:10 -0800 - (Julian Hyde) Web site tweaks.

810401d Sat, 1 Dec 2012 22:57:18 -0800 - (Julian Hyde) Update web site, README and spec for new github location.

01ed70f Thu, 29 Nov 2012 11:55:45 -0800 - (Julian Hyde) Initial commit

33c415e Thu, 29 Nov 2012 11:49:35 -0800 - (Julian Hyde) Improve javadoc for XMLA constants.

31cdbb5 Thu, 29 Nov 2012 11:46:26 -0800 - (Julian Hyde) Remove '$Id' tags; they are useless under git.

b6801fd Thu, 29 Nov 2012 11:43:58 -0800 - (Julian Hyde) Fix bug: Incorrect parsing of Identifier - "[Customers].[City].&[San Francisco]&[CA]&[USA].&[cust1234]". (Contributed by Antony.)

4a56111 Wed, 28 Nov 2012 21:16:13 +0000 - (Julian Hyde) Obsolete buildOnJdk.sh and buildOnJdk.bat. Ant now builds for multiple JDK versions using javac's bootclasspath option.

f8ac181 Tue, 27 Nov 2012 21:26:27 +0000 - (Julian Hyde) Oops.

39bd69b Tue, 27 Nov 2012 20:42:57 +0000 - (Julian Hyde) Add Spacer, efficient concatenation of strings of spaces. (Previous technique, using String.substring to create strings with a shared backing array, does not work in JDK 1.7.0_u7 or later due to fix of Java bug 6924259, "Remove String.count/String.offset/String.hashcode", http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6924259.)

432c4d1 Tue, 16 Oct 2012 20:00:43 +0000 - (Julian Hyde) Tidy up LcidLocale.

b77b2f1 Tue, 16 Oct 2012 18:42:18 +0000 - (Julian Hyde) Fix bug olap4j-76, "Still missing codes from LCID-to-Locale mapping".

7bc91ff Wed, 3 Oct 2012 00:59:15 +0000 - (Julian Hyde) DRILLTHROUGH tests now close ResultSet

c5f9dfc Fri, 28 Sep 2012 10:38:24 +0000 - (Luc Boudreau) Makes DeferredNamedList thread safe to prevent concurrent modifications exceptions.

5913e32 Mon, 20 Aug 2012 17:30:53 +0000 - (Luc Boudreau) Fixes a few minor memory leaks in the TCK.

88108fb Fri, 10 Aug 2012 20:53:06 +0000 - (Luc Boudreau) Adds a test for 1205. MONDRIAN-1205. It is fixed in Mondrian 4.0 but not in 3.4 so this test is expected to fail until we fix it in 3.4 as well.

849b745 Fri, 10 Aug 2012 16:12:09 +0000 - (Luc Boudreau) Updates to latest Mondrian 4.0 drillthrough code.

138579e Wed, 8 Aug 2012 19:32:30 +0000 - (Luc Boudreau) Fixes some failures introduced by the change to Mondrian 4.0.

24cd3e6 Thu, 2 Aug 2012 17:39:40 +0000 - (Luc Boudreau) Fixes some changes in naming conventions introduced by Mondrian 4.0.

cceb717 Thu, 2 Aug 2012 15:19:25 +0000 - (Luc Boudreau) Makes the TCK run against MySQL by default. Seems like all other DBs mess up the row ordering and make tests fail randomly.

d5ff50d Wed, 1 Aug 2012 17:37:25 +0000 - (Luc Boudreau) First round of fixes for Mondrian 4 compatibility.

43d0836 Wed, 1 Aug 2012 16:25:05 +0000 - (Luc Boudreau) Migrates olap4j to Mondrian 4.0. This will cause a bunch of failures, but we will address them in the coming days.

ea07d97 Wed, 1 Aug 2012 16:07:05 +0000 - (Luc Boudreau) Setting back to SNAPSHOT mode.

10eede4 Wed, 1 Aug 2012 16:00:57 +0000 - (Luc Boudreau) Triggers a numbered build for pre-Mondrian 4 work.

6469044 Tue, 31 Jul 2012 14:04:13 +0000 - (Luc Boudreau) Reverts a previous fix to this test. Will fix FoodMart instead.

2464ceb Wed, 25 Jul 2012 16:58:01 +0000 - (Luc Boudreau) Turns out the dataset in HSQLDB is different from my MySQL version. Fixing the difference in this commit so that it passes on the default dataset.

6c6a10c Wed, 25 Jul 2012 16:46:50 +0000 - (Luc Boudreau) An attempt to fix a few tests which fail on some machines because of OS dependent ordering.

07107aa Mon, 21 May 2012 18:49:27 +0000 - (Julian Hyde) Code formatting: disallow multi-line C-style comments /* ... */.

54664d0 Tue, 15 May 2012 22:43:10 +0000 - (Julian Hyde) Fix bug 3526908, "Incomplete LCID list".

a41091b Tue, 15 May 2012 20:47:28 +0000 - (Julian Hyde) Enhancements to checkFile; fix some formatting.

1152987 Wed, 25 Apr 2012 16:49:07 +0000 - (Luc Boudreau) Fixes a memory leak while running the TCK. The connection reference was not getting cleared if the connection was closed.

7771362 Fri, 20 Apr 2012 14:46:42 +0000 - (Luc Boudreau) Makes a few connection tests not run until we actually implement drillthrough over XMLA.

6c836aa Mon, 16 Apr 2012 20:47:59 +0000 - (Luc Boudreau) Cancel that. We must keep getName(Object).

f7768c3 Mon, 16 Apr 2012 20:17:41 +0000 - (Luc Boudreau) Woops.

610d34d Mon, 16 Apr 2012 20:04:03 +0000 - (Luc Boudreau) NamedList.getName must use generic type.

8d0ca7b Fri, 6 Apr 2012 22:24:30 +0000 - (Julian Hyde) Fix bug 3515404, "Inconsistent parsing behavior('.CHILDREN' and '.Children')".

0646d5f Mon, 2 Apr 2012 14:33:33 +0000 - (Luc Boudreau) Fixes compatibility issues with Essbase. Essbase expects the DataSourceInfo element to be a tad different than other backends.

08f2550 Wed, 21 Mar 2012 05:55:38 +0000 - (Julian Hyde) XmlaOlap4jCellSet now treats a missing filter axis the same as a filter axis with one empty tuple. Both signify a missing WHERE clause; the former is expected by Excel 2007 and is now the behavior of Mondrian.

5838d7c Mon, 12 Mar 2012 20:52:37 +0000 - (Paul Stoellberger) fix hierarchyConsistent test (forgot to upgrade to new syntax)

60b247d Thu, 8 Mar 2012 17:04:53 +0000 - (Luc Boudreau) Fix for SAP BW. Some SAP servers seem to omit the SOAP header from their responses. Adds a check for null.

57abe2c Wed, 7 Mar 2012 19:24:42 +0000 - (Julian Hyde) Update buildOnJdk.sh similar to those on mondrian. No longer need to edit the script in a build environment, provided that you set environment variables JAVA_HOME_xx.

e97625c Mon, 5 Mar 2012 18:03:49 +0000 - (Luc Boudreau) Normalizes the drillthrough results for numeric values so that they produce a deterministic number format.

5e6aa68 Mon, 5 Mar 2012 16:15:31 +0000 - (Luc Boudreau) Fixes the trivial call on connect by populating lazily the list of database properties, only when it is needed.

41885cc Wed, 29 Feb 2012 06:45:38 +0000 - (Julian Hyde) Allow the target target, 'all', to run under any JDK. The 'dist' target, used to create an official release, requires JDK 1.5. We assume that anyone creating a release is following RELEASE_CHECKLIST.txt closely.

f521228 Wed, 29 Feb 2012 06:37:31 +0000 - (Julian Hyde) Modify the multi-JDK build mechanism so that, by default, olap4j builds on just the current JDK. Files intended for other JDK versions don't get built. That's what most developers want, because they're not building a release, they're building for themselves or their organization, and their organization uses just one JDK version.

f0a1a2e Mon, 27 Feb 2012 21:43:58 +0000 - (Paul Stoellberger) in query model use Exists(,).Count > 0 instead of mondrian-specific IN

9f1c518 Mon, 27 Feb 2012 21:38:16 +0000 - (Paul Stoellberger) switch the TCK to mondrian 3.4.0-SNAPSHOT, new drillthrough stuff depends on it

2845d0e Mon, 27 Feb 2012 08:48:32 +0000 - (Julian Hyde) Clean wasn't.

e765ea1 Mon, 27 Feb 2012 07:54:36 +0000 - (Julian Hyde) Remove files relating to JavaCUP.

ff570b4 Mon, 27 Feb 2012 06:46:24 +0000 - (Julian Hyde) Switch to JavaCC-based parser (was JavaCUP). Add DrillThroughNode. Plus a couple of cosmetic changes.

cc74e15 Mon, 27 Feb 2012 06:28:51 +0000 - (Julian Hyde) Rename NamedList.elementName(Object) to .getName(Object); plays better with existing code that implement AbstractNamedList.getName(Object).

71d9fdf Fri, 24 Feb 2012 04:23:24 +0000 - (Luc Boudreau) Shouldn't have done that.

5e11a1f Fri, 24 Feb 2012 01:15:54 +0000 - (Julian Hyde) Add methods .elementName and .asMap() to NamedList.

75f5545 Fri, 24 Feb 2012 01:08:10 +0000 - (Luc Boudreau) A bit of code to add the session ID into the server infos when parsing the SOAP headers.

803e11a Fri, 24 Feb 2012 01:07:37 +0000 - (Luc Boudreau) Refactored the ConnectionTest for DRILLTHROUGH RETURN. Still not implemented in XMLA though.

5437000 Tue, 21 Feb 2012 17:42:57 +0000 - (Luc Boudreau) Adds tests for DRILLTHROUGH with RETURN.

1e15147 Thu, 16 Feb 2012 23:17:37 +0000 - (Paul Stoellberger) cleanup xmla driver, verify additional connection properties against DISCOVER_PROPERTIES

047ad63 Wed, 8 Feb 2012 07:12:36 +0000 - (Julian Hyde) Tweak website for olap4j-1.0.1 release. Obsolete deployDoc.sh.

9d55f29 Tue, 7 Feb 2012 21:35:50 +0000 - (Luc Boudreau) An (even) better README.

8aaba4a Tue, 7 Feb 2012 21:32:28 +0000 - (Luc Boudreau) A better README.

c448dcb Mon, 6 Feb 2012 20:30:42 +0000 - (Luc Boudreau) Setting the build back to SNAPSHOT mode.

c879232 Mon, 6 Feb 2012 20:13:55 +0000 - (Luc Boudreau) Fixes code formatting issues. Sets the build number to 1.0.1.500 for a tentative release.

af107f8 Mon, 6 Feb 2012 16:06:29 +0000 - (Luc Boudreau) Fixes an issue with cache pass-through properties. The properties that are used to configure the XMLA cache shouldn't be added to the PropertyList of the XMLA payload.

d914472 Mon, 30 Jan 2012 16:30:42 +0000 - (Luc Boudreau) Different way to fix the memory leaks. When running the TCK in an embeded mode, the test context must be dereferenced or the configuration doesn't pass through.

cbc6665 Mon, 30 Jan 2012 16:14:48 +0000 - (Luc Boudreau) Fixes memory leaks in the test suite.

4180611 Mon, 30 Jan 2012 13:33:27 +0000 - (Paul Stoellberger) xmla driver: add connection properties and roles to statement call as well

0c40d41 Tue, 24 Jan 2012 20:05:49 +0000 - (Luc Boudreau) Setting the build back to SNAPSHOT mode.

e01bc4d Tue, 24 Jan 2012 19:07:19 +0000 - (Luc Boudreau) Fixes some missing files from the source distro.

b622e30 Tue, 24 Jan 2012 18:51:30 +0000 - (Luc Boudreau) Fixes some last minute test failures. Also increments the build number for a second release attempt.

9035400 Tue, 24 Jan 2012 17:32:44 +0000 - (Luc Boudreau) Setting the build back to SNAPSHOT mode.

59450d6 Tue, 24 Jan 2012 17:02:14 +0000 - (Luc Boudreau) Updates the documentation for the 1.0.1 release. Sets the build number to 1.0.1.491 for a deployment.

c6c0808 Mon, 23 Jan 2012 22:35:25 +0000 - (Luc Boudreau) Adds a test for the changes checked in previously by Paul. I've also refactored some string literals into enumeration members and I've documented the new XMLA driver properties that it introduces.

bbe5864 Mon, 23 Jan 2012 20:03:16 +0000 - (Paul Stoellberger) cleanup properties support, make properties injection safe

c75477a Wed, 18 Jan 2012 21:28:50 +0000 - (Paul Stoellberger) some improvements to the last commit

33206a9 Wed, 18 Jan 2012 20:42:45 +0000 - (Paul Stoellberger) role support and use of additional xmla properties as part of the connection string in the XMLA driver

21a1d43 Wed, 18 Jan 2012 14:02:52 +0000 - (Paul Stoellberger) Fix bugs for XMLA compatibility with SSAS (unique members and measure groups) and PALO (avoid unnecessary metadata requests in dummy cube for shared dimensions)

f5ce571 Tue, 17 Jan 2012 06:57:57 +0000 - (Julian Hyde) Fix javadoc on Level.getMembers (for MONDRIAN-1063); add 3 more constructors for OlapException, to match SQLException; add an enum to XmlaConstants; correct values for ActionType constants.

03c5c60 Thu, 5 Jan 2012 23:55:56 +0000 - (Julian Hyde) Enable svn keyword substitution on some more files.

0f9cbf1 Thu, 5 Jan 2012 23:43:18 +0000 - (Julian Hyde) Enable svn keyword substitution on some files.

5b31d8b Thu, 5 Jan 2012 23:27:27 +0000 - (Julian Hyde) Apache Software License, version 2.0.

c3370ac Thu, 10 Nov 2011 00:31:07 +0000 - (Luc Boudreau) Fixes a few problems with the build script and JDK versions.

4c0f311 Tue, 8 Nov 2011 15:50:36 +0000 - (Luc Boudreau) Fixes an issue with the XmlaTester where each and every request would create a new MondrianServer instance and wouldn't clean up after it is done running the test. The test case now uses the same proxy cookie across requests. This is the same strategy used in the MondrianOlap4jTester.

a411fbc Mon, 7 Nov 2011 17:48:00 +0000 - (Julian Hyde) Enable build on JDK 1.7 (JDBC 4.1).

ae37510 Mon, 7 Nov 2011 17:47:23 +0000 - (Julian Hyde) Enable build on JDK 1.7 (JDBC 4.1).

624a2a8 Mon, 7 Nov 2011 16:24:39 +0000 - (Luc Boudreau) Fixes an issue with SAP BW and the XMLA driver. The XMLA driver was using all of the databases/catalogs/schemas to lookup cubes. This was required in the pre-1.0 code, but it is not necessary anymore because connections are now always implicitly bound to a specific schema.

191b83a Mon, 24 Oct 2011 17:54:40 +0000 - (Julian Hyde) Optimize & normalize imports.

0627ad7 Thu, 29 Sep 2011 15:37:47 +0000 - (Luc Boudreau) Fixes an issue with the XmlaOlap4jDriver and the DriverManager from Java. Every java.sql.Driver implementation needs a public empty constructor so it can be instantiated correctly by JDBC. It is not explicitly specified by the JDBC specs, but Sun's JVM attempts to call that constructor none the less. We have also received some bug reports from the community about olap4j's driver implementation showing the same problems with WebSphere and some other JDBC pools.

71d43c2 Tue, 13 Sep 2011 20:13:34 +0000 - (Luc Boudreau) Sorts the lists evaluated in the access control tests so their order is deterministic.

2081404 Tue, 13 Sep 2011 19:35:54 +0000 - (Luc Boudreau) Disables the control access tests for pure XMLA connections. We need to find a way to pass an XmlaRequestCallback to the tested XMLA servlet before we enable these tests.

20bed40 Sat, 10 Sep 2011 05:53:47 +0000 - (Luc Boudreau) Adds tests for roles and access to schemas, catalogs, cubes, dimensions, hierarchies, members, and parent-children relationships.

dbe4d05 Wed, 3 Aug 2011 21:46:56 +0000 - (Julian Hyde) XMLA driver now converts locale (e.g. "en_US") to LCID (e.g. 1033). (Mondrian can handle either locale or LCID, but the XMLA spec requires LCID.)

6179da6 Tue, 2 Aug 2011 19:30:41 +0000 - (Julian Hyde) XMLA driver now supports localized connections.

3583e9f Tue, 2 Aug 2011 17:11:04 +0000 - (Paul Stoellberger) if a hierarchy is kept consistent in the query model only make necessary checks. no need to check if ancestor of current member is in ancestor_level.members, fix formatting

f89c6fe Tue, 2 Aug 2011 16:33:53 +0000 - (Paul Stoellberger) Bug CalculatedMembers in virtual cube dont show up fixed - http://sourceforge.net/tracker/?func=detail&aid=3312701&group_id=168953&atid=848534. enabled test case from now on

07a492e Tue, 2 Aug 2011 16:21:51 +0000 - (Luc Boudreau) Reverts a change to the test suite which should not have been checked in.

4d81734 Wed, 27 Jul 2011 20:09:40 +0000 - (Luc Boudreau) Fixes two failing tests.

015876e Tue, 26 Jul 2011 00:59:31 +0000 - (Julian Hyde) Tweaks to getSharedDimensions fix, and more testing.

26f6862 Mon, 25 Jul 2011 21:42:07 +0000 - (Julian Hyde) Fix bug 3375355, "getSharedDimensions returns empty result" (requires a fix to mondrian, approx change 14490). More constructors for NamedListImpl and ArrayNamedListImpl. Fix Pair.toString().

6f3f308 Tue, 19 Jul 2011 14:19:38 +0000 - (Luc Boudreau) Fixes an error with the last commit. Faulty copy-paste.

9473742 Mon, 18 Jul 2011 21:07:16 +0000 - (Luc Boudreau) Switches the build dependency of Mondrian to 3.3-SNAPSHOT following the added support for HIERARCHY_IS_VISIBLE in MDSCHEMA_HIERARCHIES. Updates the test suite accordingly.

bed8eee Mon, 18 Jul 2011 21:05:28 +0000 - (Luc Boudreau) Switches the build dependency of Mondrian to 3.3-SNAPSHOT following the added support for HIERARCHY_IS_VISIBLE in MDSCHEMA_HIERARCHIES.

0eb19d9 Wed, 6 Jul 2011 13:57:33 +0000 - (Paul Stoellberger) make sure hierarchyConsistent uses the right hierarchy for .CurrentMember, added test case for that

33d32f7 Mon, 27 Jun 2011 23:12:16 +0000 - (Julian Hyde) Copy latest checkFile.awk from mondrian. Fix one exception.

317eaf8 Mon, 27 Jun 2011 22:42:38 +0000 - (Paul Stoellberger) fix formatting (indentation)

6304f01 Fri, 24 Jun 2011 01:08:46 +0000 - (Paul Stoellberger) Test case for Bug 3312701. calculated measures in virtual cube ignored

ce511f6 Fri, 24 Jun 2011 00:36:53 +0000 - (Paul Stoellberger) Implement hierarchy consistency check for QueryDimension inclusions in the Query Model. Useful especially in combination with Level selections

57c37b8 Tue, 24 May 2011 10:01:26 +0000 - (Julian Hyde) Enforce formatting for hanging arguments; update copyright notices. Cosmetic changes only.

f15a3bb Sun, 15 May 2011 23:25:22 +0000 - (Paul Stoellberger) temporary fix for MONDRIAN-929, needs to be removed once it is fixed

d2ece8b Wed, 11 May 2011 18:49:20 +0000 - (Luc Boudreau) Adds logic to choose between DBSCHEMA_SCHEMATA and MDSCHEMA_CUBES depending on the provider name.

b64181a Tue, 19 Apr 2011 03:53:54 +0000 - (Julian Hyde) Add Olap4jUtil.toMap(Properties) and .unmodifiableNamedList(NamedList).

6e9b2b6 Mon, 18 Apr 2011 16:53:46 +0000 - (Paul Stoellberger) fix xmla discovery bug: use catalogschemahandler for schema result of DBSCHEMA_SCHEMATA

c2c29d3 Wed, 13 Apr 2011 01:57:39 +0000 - (Luc Boudreau) Fixes faulty version number.

95ed9bd Wed, 13 Apr 2011 00:48:09 +0000 - (Julian Hyde) Don't create javadoc with ydoc for a release distro.

6fd03b4 Wed, 13 Apr 2011 00:32:40 +0000 - (Julian Hyde) In XMLA driver, populate Cube.getCaption() by reading CUBE_CAPTION attribute, if present. Restore javadoc-with-ydoc target. Tweaks to web page.

083083d Wed, 13 Apr 2011 00:31:41 +0000 - (Julian Hyde) In XMLA driver, populate Cube.getCaption() by reading CUBE_CAPTION attribute, if present. Restore javadoc-with-ydoc target. Tweaks to web page.

4c743f0 Mon, 11 Apr 2011 17:24:18 +0000 - (Luc Boudreau) Sets the build number back to SNAPSHOT.

e0a33c9 Mon, 11 Apr 2011 17:09:29 +0000 - (Luc Boudreau) Adds some files missing from the source package.

a739224 Mon, 11 Apr 2011 16:58:46 +0000 - (Luc Boudreau) Triggers a numbered build / maven deploy for the release of olap4j 1.0.0.444.

577329f Mon, 11 Apr 2011 16:03:59 +0000 - (Julian Hyde) Web site updates for 1.0. Convert spec to PDF.

5a52a1e Mon, 11 Apr 2011 01:05:26 +0000 - (Luc Boudreau) Changes the references to "mdx query model" to "mdx object model". This section refers to the object model. The query model is the org.olap4j.query package.

bd99422 Sun, 10 Apr 2011 23:17:11 +0000 - (Luc Boudreau) Updates the Database interface description.

9bb25d4 Sun, 10 Apr 2011 22:32:41 +0000 - (Julian Hyde) Minor corrections and cosmetic changes to functional specification.

6308b28 Sun, 10 Apr 2011 00:57:09 +0000 - (Julian Hyde) Revise functional specification (including PDF version) for release 1.0. Add spacer image (website was broken without it). Minor javadoc tweaks, and remove an obsolete method.

a25dece Fri, 8 Apr 2011 21:15:08 +0000 - (Luc Boudreau) Adds the xmla-cache folder to the distributed source zip.

5ac9bc8 Fri, 8 Apr 2011 18:47:13 +0000 - (Luc Boudreau) Triggers a fixed build number to be deployed to the maven repository.

3ee09ed Fri, 8 Apr 2011 17:49:49 +0000 - (Luc Boudreau) Fixes javadoc error.

ab39d44 Fri, 8 Apr 2011 17:47:30 +0000 - (Luc Boudreau) Fixes javadoc error.

df2f6db Wed, 30 Mar 2011 23:21:39 +0000 - (Luc Boudreau) Dereferences the call to Collections.emptyMap() into a properly typed variable in order to prevent the method calling itself.

d74b0bf Wed, 30 Mar 2011 19:56:50 +0000 - (Luc Boudreau) Fixes checkFile errors.

48d4687 Fri, 25 Mar 2011 03:20:55 +0000 - (Luc Boudreau) Adds Cube.isDrillThroughEnabled, adds related tests and adds a mechanism to override values returned by an XMLA server for metadata calls.

a640c01 Thu, 24 Mar 2011 15:14:50 +0000 - (Luc Boudreau) Fixes issues with the comparison of parameters and properties. Due to the case of the parameters, sometimes a comparison would fail. They are now all compared as upper case values across the board.

9bb70cd Thu, 24 Mar 2011 15:01:27 +0000 - (Luc Boudreau) Fixes javadoc errors.

46a1c34 Thu, 24 Mar 2011 05:12:36 +0000 - (Luc Boudreau) Fixes bug 3060643. Cache properties are not ignoring the case of the passed parameters. Everything is evaluated as upper case.

47b89a4 Thu, 24 Mar 2011 05:04:05 +0000 - (Luc Boudreau) Fixes bug 3192302. Cookie manager was not tokenizing the session cookies properly.

09ef658 Thu, 24 Mar 2011 04:53:53 +0000 - (Luc Boudreau) Fixes bug 3233181 in the XMLA driver. Refactored the way username and password are passed to the url. Should allow us later to easily implement user sessions.

0a2e5c6 Wed, 23 Mar 2011 03:47:55 +0000 - (Luc Boudreau) Cleanup of the XmlaProxyCache prior to 1.0.0. Was throwing a Runtime Exception for no good reason. Downgrading it to OlapException. They get handled anyways by the XmlaProxy contract.

fd44edb Tue, 22 Mar 2011 20:48:15 +0000 - (Luc Boudreau) Fixes the catalog XMLA object so that it first tries DBSCHEMA_SCHEMATA request to find schemas and falls back to MDSCHEMA_CUBES if the server rejected the first query.

571c2f6 Tue, 22 Mar 2011 18:29:50 +0000 - (Luc Boudreau) Adds some files to be ignored by SVN.

79dbd1d Tue, 22 Mar 2011 18:19:44 +0000 - (Luc Boudreau) Changes the database xmla cache to save entries as XML rather than a Base64 encoded value.

0f53c0a Tue, 22 Mar 2011 03:45:14 +0000 - (Luc Boudreau) Changes the recording proxy cache to a more fancy one using hsqldb.

7915295 Tue, 22 Mar 2011 01:20:03 +0000 - (Luc Boudreau) Adds a proof-of-concept recording/playback cache for the XMLA driver. To use, uncomment the right lines in test.properties and unzip the xmla/cache/mondrian-xmla-[VERSION].zip file you want to test against. Make sure that the test.properties entry points to the proper file.

aa89f47 Mon, 21 Mar 2011 02:43:53 +0000 - (Luc Boudreau) Changes the repository URL on the index page.

52cc997 Mon, 21 Mar 2011 01:21:42 +0000 - (Luc Boudreau) Build script now publishes the parsed Ivy descriptors rather than the templates :)

335df3b Sun, 20 Mar 2011 22:09:14 +0000 - (Luc Boudreau) Pom generator was looking in the wrong directory for the ivy descriptor.

2b5b762 Sun, 20 Mar 2011 21:56:14 +0000 - (Luc Boudreau) Distributable Ivy descriptor was not generated in the right folder.

b33bf9f Sun, 20 Mar 2011 21:46:45 +0000 - (Luc Boudreau) Generates cleaner and more standard Ivy descriptors to be deployed.

7d0dd82 Sun, 20 Mar 2011 16:55:53 +0000 - (Luc Boudreau) Standardizes the jdk14 jar module name. Enables retroweaving of the xmla driver.

38d2fff Sun, 20 Mar 2011 16:37:50 +0000 - (Luc Boudreau) Splits the deployed artifacts into different modules, each with their own POM descriptor.

bc518b9 Sun, 20 Mar 2011 04:36:09 +0000 - (Luc Boudreau) Overrides subfloor resolve task so we can resolve custom Ivy configurations.

b1be7b4 Sun, 20 Mar 2011 04:10:55 +0000 - (Luc Boudreau) Modifies the ivy file to split dependencies in a more manageable way.

b96b3af Sun, 20 Mar 2011 04:08:27 +0000 - (Luc Boudreau) Generates a custom pom file for the deployment of the XMLA module.

537756f Sun, 20 Mar 2011 02:08:14 +0000 - (Luc Boudreau) Updates the CHANGES file.

c65dcd7 Sun, 20 Mar 2011 01:49:50 +0000 - (Luc Boudreau) Adds Maven repository information to the website index.

b693034 Sun, 20 Mar 2011 01:40:23 +0000 - (Luc Boudreau) Updates the website index page.

41faf45 Sun, 20 Mar 2011 00:44:11 +0000 - (Luc Boudreau) Fixes javadoc warnings. Updates README file.

d302c08 Sat, 19 Mar 2011 18:11:10 +0000 - (Luc Boudreau) Fixes a property conflict with the XMLA jar publish target.

c62104f Sat, 19 Mar 2011 17:07:10 +0000 - (Luc Boudreau) Sets the version to 1.0.0-SNAPSHOT in preparation to olap4j 1.0. Also splits the main olap4j jar into two separate jars for the core API and the XMLA driver.

a0119c9 Fri, 18 Mar 2011 21:54:56 +0000 - (Luc Boudreau) First pass at olap4j 1.0.

6987348 Fri, 11 Mar 2011 03:10:41 +0000 - (Paul Stoellberger) fix bug (that was already fixed) for catalog restriction in XMLA requests (for ssas / palo)

35f2e94 Mon, 7 Feb 2011 01:23:12 +0000 - (Paul Stoellberger) small harmonization of including member vs. level

828ad8f Fri, 4 Feb 2011 00:24:40 +0000 - (Luc Boudreau) Refactored the selection objects so that everything is statically typed rather than a conditional instanceof check. I used a pseudo visitor pattern approach. I also factored out the selection implementations into an abstract super class. I also simplified the selection objects and removed all unnecessary calls.

633ca0a Thu, 3 Feb 2011 22:32:06 +0000 - (Paul Stoellberger) Fix Bug 2850060 (QueryModel needs to perform selections on levels)

99a5541 Mon, 10 Jan 2011 10:32:48 +0000 - (Julian Hyde) Commit patch 3150694, "SSAS 2000 XML/A compatibility". (Patch contributed by sjoynt.)

9a3b7d8 Mon, 10 Jan 2011 10:13:12 +0000 - (Julian Hyde) Fix bug 3142240, "Additional columns in cube discovery". (Patch contributed by sjoynt.) Also fix some checkFile exceptions.

8ceb0e5 Mon, 10 Jan 2011 09:47:57 +0000 - (Julian Hyde) Fix bug 3152775, "EmptyResultSet bugs". (Patch contributed by sjoynt.)

f741893 Thu, 23 Dec 2010 16:48:41 +0000 - (Luc Boudreau) Upgrades Mondrian to 3.2.1.14022.

04f4a37 Thu, 23 Dec 2010 15:23:27 +0000 - (Luc Boudreau) Upgrades Mondrian to 3.2.1.14020.

9c081ae Thu, 23 Dec 2010 02:20:27 +0000 - (Luc Boudreau) Reverting back to SNAPSHOT builds.

4bcf735 Thu, 23 Dec 2010 01:23:04 +0000 - (Luc Boudreau) Fixes more issues with the TCK auto deployment to maven.

0686294 Thu, 23 Dec 2010 01:13:46 +0000 - (Luc Boudreau) Fixes more issues with the TCK auto deployment to maven.

9ce53ca Thu, 23 Dec 2010 00:07:41 +0000 - (Luc Boudreau) Reverting back to SNAPSHOT builds.

4389388 Wed, 22 Dec 2010 23:58:33 +0000 - (Luc Boudreau) Fixes (yet again) another woopsie with the build.

a13b7ec Wed, 22 Dec 2010 23:48:07 +0000 - (Luc Boudreau) Fixes a missing jar in the build system.

bc18f65 Wed, 22 Dec 2010 23:36:54 +0000 - (Luc Boudreau) Overrides a target in subfloor.xml to publish the olap4j-tck artifact as well.

dc59642 Wed, 22 Dec 2010 23:13:01 +0000 - (Luc Boudreau) Reverting back to SNAPSHOT builds.

02813b3 Wed, 22 Dec 2010 23:11:19 +0000 - (Luc Boudreau) Triggering a numbered build to get back in sync with Mondrian.

d7e4802 Wed, 22 Dec 2010 22:13:07 +0000 - (Luc Boudreau) Removes unnecessary dependency on the Mondrian code.

1643a1a Wed, 22 Dec 2010 20:47:49 +0000 - (Luc Boudreau) Removes the signature override from OlapDatabaseMetaData. It should not have been committed.

3c125ae Mon, 20 Dec 2010 21:21:45 +0000 - (Luc Boudreau) First round (and hopefully last) of olap4j 0.9.9.

3bbe4b1 Fri, 17 Dec 2010 07:49:03 +0000 - (Julian Hyde) Use BigDecimal, not Double or Integer, to hold the value of numeric LiteralNode. Deprecate corresponding LiteralNode.create methods.

ddaf934 Fri, 17 Dec 2010 04:30:19 +0000 - (Julian Hyde) Change how tests in TCK get their context. Delete directories for obsolete mondrian.olap4j package.

6c1e790 Fri, 17 Dec 2010 02:58:28 +0000 - (Julian Hyde) Javadoc changes regarding locale and visibility.

2d66d33 Fri, 3 Dec 2010 20:03:34 +0000 - (Julian Hyde) Typo in ConnectionTest.

a65b39e Fri, 3 Dec 2010 18:55:51 +0000 - (Julian Hyde) Disable ConnectionTest.testCellSetBug. Bug 3126553 logged.

8b73854 Fri, 3 Dec 2010 18:51:13 +0000 - (Julian Hyde) Dummy change

5291574 Fri, 3 Dec 2010 04:54:05 +0000 - (Julian Hyde) The TCK allows the test suite to be run multiple times in the same process with different properties. So, TestContext is no longer a singleton; if a test needs an instance, save it when the TestCase is being constructed (when the correct TestContext is available in a thread-local).

f2beff8 Fri, 3 Dec 2010 02:29:37 +0000 - (Julian Hyde) Implement MetadataElement.isVisible in more classes.

116ad0d Thu, 2 Dec 2010 22:06:52 +0000 - (Julian Hyde) Add MetadataElement.isVisible, and implement in XMLA driver.

0c8a01f Thu, 2 Dec 2010 20:24:17 +0000 - (Julian Hyde) Formatting.

2cac149 Tue, 23 Nov 2010 20:27:57 +0000 - (Julian Hyde) Create TCK so that mondrian can run olap4j tests from its own suite.

6fdb574 Mon, 22 Nov 2010 07:32:50 +0000 - (Julian Hyde) Add 'throws OlapException' to a few methods.

cae3a13 Wed, 17 Nov 2010 08:48:31 +0000 - (Julian Hyde) Upgrade mondrian to fix bug: require its XMLA server to return a filter axis in a query result even if filter axis has 0 tuples.

0ef4414 Tue, 16 Nov 2010 21:37:12 +0000 - (Julian Hyde) Upgrade to version of mondrian that implements latest API.

ed8217c Tue, 16 Nov 2010 18:54:39 +0000 - (Julian Hyde) More API changes before 1.0...

1741dbc Tue, 9 Nov 2010 21:09:40 +0000 - (Julian Hyde) Log bug 3106220 and disable test.

b2c7edf Tue, 9 Nov 2010 18:44:22 +0000 - (Julian Hyde) Fix MONDRIAN-831, "Failure parsing queries with member identifiers beginning with '_' and not expressed between brackets".

5929226 Fri, 5 Nov 2010 03:27:48 +0000 - (Julian Hyde) Fix behavior and test exception relating to IdentifierNode.ofNames.

8d179c1 Fri, 5 Nov 2010 01:22:14 +0000 - (Julian Hyde) Upgrade mondrian to version compatible with latest changes. Should fix regression test errors.

da25c97 Fri, 29 Oct 2010 22:17:07 +0000 - (Julian Hyde) Enable svn keyword substitution. Fix javadoc in KeySegment.

6b74aec Fri, 29 Oct 2010 16:43:02 +0000 - (Julian Hyde) Fix formatting.

e479cf9 Thu, 28 Oct 2010 18:14:32 +0000 - (Julian Hyde) Fix bug 3095309, "Lookup methods should use Segment, not name, before 1.0".

4b0a021 Thu, 14 Oct 2010 21:24:51 +0000 - (Julian Hyde) Change IdentifierNode.parseIdentifier(String) to return an IdentifierNode; it previously returned List<IdentifierNode.Segment>.

f8e0a0a Thu, 14 Oct 2010 16:44:47 +0000 - (Paul Stoellberger) add unit test for found bug in the olap4jNodeConverter regarding complex selections that contain a selectioncontext

5732212 Tue, 12 Oct 2010 00:39:07 +0000 - (Julian Hyde) Fixes for cellsets with no filter or compound filter. Fix formatting if filter is compound (by upgrading mondrian). Add tests now that mondrian correctly returns all positions of compound filter.

b8cb21d Fri, 8 Oct 2010 15:12:15 +0000 - (Paul Stoellberger) fix checkFile errors, add unit tests for previously commited bug fixes: crossjoin sort, except and compound filter

3d67870 Fri, 8 Oct 2010 12:33:16 +0000 - (Paul Stoellberger) adapt QM tests to new filter behaviour (set instead of tuple)

633b604 Thu, 7 Oct 2010 19:02:22 +0000 - (Paul Stoellberger) treat filter axis like any other, fix sort order and exclusions for crossjoin queries on an axis

a07775e Sat, 14 Aug 2010 01:46:56 +0000 - (Julian Hyde) Make classes that implement IdentifierParser.Builder public, so that mondrian can use them.

a385d41 Sat, 14 Aug 2010 01:12:17 +0000 - (Julian Hyde) Upgrade to mondrian-3.2.0.13809, which implements Connection.getTransactionIsolation as required by new test.

9044e9a Thu, 12 Aug 2010 21:12:54 +0000 - (Julian Hyde) Oops. Fix tests.

7e99a82 Thu, 12 Aug 2010 19:50:12 +0000 - (Luc Boudreau) Adds a test for transaction isolation of the driver implementations.

d13bb5c Thu, 12 Aug 2010 08:49:13 +0000 - (Julian Hyde) Fix further issues in bug 3042937 by no longer enclosing formula of calculated member and set in single quotes. Also, indent formulas for readability.

c6702a9 Wed, 11 Aug 2010 20:37:47 +0000 - (Luc Boudreau) Fixes bug 3042937. Escaped single quotes that were nested in a single quoted section were unparsed as unescaped single quotes.

4114437 Tue, 10 Aug 2010 18:36:00 +0000 - (Luc Boudreau) Makes the XMLA driver return TRANSACTION_NONE to signal the connection pools that it doesn't support transaction isolation.

4564357 Fri, 6 Aug 2010 15:55:31 +0000 - (Luc Boudreau) Sets CI build version to 0.9.9-SNAPSHOT

ebff6bb Fri, 6 Aug 2010 13:51:27 +0000 - (Luc Boudreau) sets the project revision for final build.

e64022e Fri, 6 Aug 2010 13:35:10 +0000 - (Luc Boudreau) Sets project.revision.minor so the correct value.

57ad1b1 Thu, 5 Aug 2010 16:28:11 +0000 - (Luc Boudreau) Sets the version ID for the release.

fdc9ff7 Thu, 5 Aug 2010 16:16:00 +0000 - (Luc Boudreau) Updated the README file with the proper infos.

9ff66db Thu, 5 Aug 2010 15:49:21 +0000 - (Luc Boudreau) Updated index page. Now includes information about the project roadmap.

2da80d9 Thu, 5 Aug 2010 14:58:22 +0000 - (Luc Boudreau) Documented the test.properties file a little more.

3df55a7 Thu, 5 Aug 2010 14:45:34 +0000 - (Luc Boudreau) Fixes all failing tests with a constructor for ParseTreeWriter that takes a PrintWriter for argument.

b94e089 Tue, 3 Aug 2010 01:28:26 +0000 - (Julian Hyde) Oops.

1c7fd8f Tue, 3 Aug 2010 01:07:46 +0000 - (Julian Hyde) Fix bug 3036629, "Patch 328 breaks test", by moving IdentifierParser from mondrian to olap4j and extending support for compound keys (e.g. [Customer].[City].&[San Francisco]&CA&USA.)

09ba75f Fri, 30 Jul 2010 00:43:55 +0000 - (Julian Hyde) Fix bug 3035910, "Cannot parse sub-query". (Fix contributed by Thomas Klute.) ParseTreeWriter can now generate indented output.

d651165 Wed, 28 Jul 2010 19:56:14 +0000 - (Luc Boudreau) Better usage of the formatter.

b06bcd2 Wed, 28 Jul 2010 17:04:56 +0000 - (Luc Boudreau) Added some code to close the connection/statement on the PaloConnection example.

49915ad Wed, 28 Jul 2010 16:59:09 +0000 - (Luc Boudreau) Adds a sample class that demonstrates how to connect to Palo with the XML/A server. Original post is at http://sourceforge.net/projects/olap4j/forums/forum/577988/topic/3787499

ffc916c Tue, 27 Jul 2010 15:53:09 +0000 - (Luc Boudreau) Fixes all failing tests introduced by the new tester.

92fe96c Mon, 26 Jul 2010 15:43:18 +0000 - (Paul Stoellberger) Improve the Identifier parser to support mixed Segment types (QUOTED, UNQUOTED, ..) in an MDX Identifier as used in PALO

1521c92 Thu, 22 Jul 2010 19:45:26 +0000 - (Luc Boudreau) Added a new tester flavor to allow remote xmla servers to be tested against the olap4j test suite. The remote server must expose the Foodmart test database.

c4079d7 Tue, 20 Jul 2010 19:56:08 +0000 - (Luc Boudreau) Fixes to the cube discovery for SAP BW <-> XML/A.

8f72d8b Sun, 18 Jul 2010 19:32:11 +0000 - (Julian Hyde) Fix bug 3030772, "DrilldownLevelTop parser error" by adding support for empty expressions in argument list. Copied from mondrian change 10047.

9f80214 Tue, 29 Jun 2010 19:21:24 +0000 - (Paul Stoellberger) disable accidental DEBUG on XmlaOlap4jConnection again

e44cbc0 Tue, 29 Jun 2010 07:43:29 +0000 - (Julian Hyde) Latest checkFile.

5a8e2d2 Tue, 29 Jun 2010 00:49:51 +0000 - (Luc Boudreau) Fixes code style violation.

5d83a7a Fri, 25 Jun 2010 15:03:20 +0000 - (Luc Boudreau) Integrates Paul's modifications to support SAP BW. This work is probably not completed yet but I'm checking it in so we can test it in different environments. SSAS, Mondrian and SAP.

1148625 Thu, 17 Jun 2010 03:39:04 +0000 - (Julian Hyde) Add Olap4jUtil.parseFormattedCellValue.

141d730 Wed, 16 Jun 2010 05:16:04 +0000 - (Julian Hyde) Add experimental API for client to ask server to notify when the cell set changes. XMLA driver does not currently support the API.

1a1d929 Thu, 10 Jun 2010 19:08:03 +0000 - (Paul Stoellberger) Fix bug 3009981 : XmlaOlap4jCube shouldnt populate namedsets immediately > sets being populated when accessed for the first time

24b7010 Sun, 30 May 2010 03:32:25 +0000 - (Julian Hyde) Fix javadoc.

d872dca Sat, 29 May 2010 19:42:14 +0000 - (Julian Hyde) Upgrade to mondrian-3.2.0.13651 (implements latest PreparedOlapStatement API, and Member.getAncestorMembers()).

d3704eb Sat, 29 May 2010 00:56:11 +0000 - (Julian Hyde) Update copyright notices for files modified this year.

24f806d Sat, 29 May 2010 00:50:47 +0000 - (Julian Hyde) Add PreparedOlapStatement.isSet(int) and .unset(int), and implement in XMLA driver. (These methods are implemented in the mondrian driver in eigenbase change 13650.)

d91ccf4 Thu, 20 May 2010 20:53:50 +0000 - (Paul Stoellberger) equals and hashcode for Selection

01238b8 Wed, 5 May 2010 23:32:54 +0000 - (Julian Hyde) Test Olap4jPreparedStatment.getCube().

254931b Tue, 27 Apr 2010 18:06:15 +0000 - (Julian Hyde) Fix bug 2992614, "XmlaOlap4jMember throws NPE on PARENT_ Properties".

041d119 Fri, 23 Apr 2010 19:57:41 +0000 - (Julian Hyde) Update test ref logs for mondrian change which emits '[All Xxxx] in member unique names.

73e4db4 Thu, 22 Apr 2010 04:17:24 +0000 - (Julian Hyde) Add property org.olap4j.test.driverClasspath from test.properties. Makes it easier to run the test suite against a database whose JDBC driver jar lives outside the source tree (e.g. Oracle).

41c74ea Wed, 7 Apr 2010 20:44:09 +0000 - (Luc Boudreau) Sets Eclipse JRE setting to an execution environment value rather than a full JRE. This should prevent us from using com.sun.* forbidden packages.

cc9f9d1 Tue, 6 Apr 2010 22:46:45 +0000 - (Luc Boudreau) Makes the DefaultMdxParserImpl class not depend on OlapConnection. The validator must still depend on it since it must resolve members.

518c99b Mon, 5 Apr 2010 01:34:29 +0000 - (Julian Hyde) Cosmetic stuff. Mainly checkFile exceptions.

764f203 Mon, 8 Mar 2010 05:27:54 +0000 - (Will Gorman) removed accidental import

a236eb0 Mon, 8 Mar 2010 04:27:50 +0000 - (Will Gorman) added selection context concept and a new union algorithm when selecting multiple dimensions on an axis to support drill down

f110e66 Mon, 22 Feb 2010 08:35:19 +0000 - (Julian Hyde) Add test (disabled) for bug 2951656. Bug needs to be fixed in mondrian driver, so the test may be disabled for a while.

97812f2 Mon, 22 Feb 2010 07:23:28 +0000 - (Julian Hyde) Fix JDK1.4 compatability. Upgrade version of mondrian (previous version did not implement latest API).

43c9cab Tue, 9 Feb 2010 20:54:51 +0000 - (Luc Boudreau) Fixes an issue with Palo servers where some xsd:schema elements are inlined. This fix makes sure that we only read elements of the rowset namespace and skips elements from other namespaces.

2523f8c Tue, 9 Feb 2010 20:51:26 +0000 - (Luc Boudreau) Coding standard.

991f4af Tue, 9 Feb 2010 17:10:45 +0000 - (Luc Boudreau) Resets the list's state upon encountering an exception.

2ab221b Mon, 25 Jan 2010 07:45:08 +0000 - (Julian Hyde) Add enums and constants related to XMLA (formerly in Mondrian). Add space-efficient maps ArrayMap and UnmodifiableArrayMap.

5218d69 Sat, 9 Jan 2010 04:17:06 +0000 - (Julian Hyde) Cosmetic stuff.

b0ef48c Thu, 7 Jan 2010 09:14:19 +0000 - (Julian Hyde) Add OlapConnection.getAvailableRoleNames().

32990d3 Fri, 18 Dec 2009 22:28:32 +0000 - (Julian Hyde) Upgrade ivy. (Next time you update, please do 'rm -rf ~/.subfloor_build_cache'.)

0f591e0 Fri, 18 Dec 2009 20:02:26 +0000 - (Julian Hyde) Fix checkFile exception.

58727bb Sat, 28 Nov 2009 22:10:49 +0000 - (Julian Hyde) Check in Paul Stoellberger's cube-discovery patch.

11743a0 Mon, 23 Nov 2009 00:58:06 +0000 - (Julian Hyde) Set connection's catalog before executing query.

2a2b8a5 Tue, 20 Oct 2009 17:56:29 +0000 - (Julian Hyde) Trailing space

39ac535 Sun, 18 Oct 2009 23:50:49 +0000 - (Julian Hyde) From 4.0.0.13109 onwards, mondrian.jar contains MondrianInprocProxy so we can obsolete ours.

f8b0f40 Sun, 18 Oct 2009 06:35:47 +0000 - (Julian Hyde) Upgrade to latest version of mondrian from main branch.

31702dd Sat, 17 Oct 2009 19:53:39 +0000 - (Julian Hyde) Rename Olap4jUtil.uniqueNameToStringArray, and add unit test.

1676e91 Sat, 17 Oct 2009 09:06:18 +0000 - (Julian Hyde) Supply CatalogName property in an XMLA request implicitly if the CATALOG_NAME restriction is specified. But don't specify catalog otherwise. People expect to be able to get, say, all cubes from all catalogs and schemas. Fixes bug 2874977, "XMLA cube discovery".

82ee139 Sun, 4 Oct 2009 23:01:13 +0000 - (Julian Hyde) Formatting.

4482b52 Sat, 3 Oct 2009 23:35:54 +0000 - (Julian Hyde) It's much more efficient to call ArrayMap(Map) than ArrayMap() followed by put or putAll. Fix Pair so that its hashCode is consistent with Map.Entry.

ab3e951 Fri, 2 Oct 2009 13:59:50 +0000 - (Luc Boudreau) Adds a test for the query validation.

f277db7 Fri, 2 Oct 2009 13:39:07 +0000 - (Luc Boudreau) Using the more efficient ArrayMap to hold on to the member properties.

24050d7 Thu, 1 Oct 2009 00:57:29 +0000 - (Julian Hyde) Add writeback API (Scenario, AllocationPolicy). Fix some references broken by the CellSetFormatter move.

8e541bb Wed, 30 Sep 2009 20:20:56 +0000 - (Luc Boudreau) Fixes issue https://sourceforge.net/tracker/?func=detail&aid=2589809&group_id=168953&atid=848534

d344db5 Wed, 30 Sep 2009 19:31:10 +0000 - (Luc Boudreau) Fixes issue https://sourceforge.net/projects/olap4j/forums/forum/577988/topic/3416385

2dc01de Wed, 30 Sep 2009 19:07:29 +0000 - (Luc Boudreau) Fixes issue https://sourceforge.net/tracker/?func=detail&aid=2784554&group_id=168953&atid=848537

a6297b9 Wed, 30 Sep 2009 13:05:54 +0000 - (Luc Boudreau) Fixes a faulty handling of potentially null objects returned by the JVM API.

2293cc2 Tue, 18 Aug 2009 18:50:30 +0000 - (Luc Boudreau)

The QueryDimension.SortOrder and QueryAxis.SortOrder will both be factored out and a single enumeration org.olap4j.query.SortOrder will remain. All relevant method setters and getters will be changed accordingly. We can't use Java's regular deprecation mechanism because of Java's no support for enumeration class heritage.

8492829 Tue, 4 Aug 2009 17:38:06 +0000 - (Luc Boudreau) Added sugar method to sort an axis by the default measure.

a4cef50 Tue, 4 Aug 2009 16:01:05 +0000 - (Luc Boudreau) Adds a sort function to a QueryAxis. Axis can now be sorted by any literal expression.

38cc365 Thu, 30 Jul 2009 14:33:06 +0000 - (Luc Boudreau) Added support for sorting on a dimension inclusions with the "break hierarchy" functionnality.

8974576 Tue, 28 Jul 2009 15:27:15 +0000 - (Luc Boudreau) Fixes issue https://sourceforge.net/tracker/?func=detail&aid=2105859&group_id=168953&atid=848534

ff13ba2 Wed, 22 Jul 2009 00:09:22 +0000 - (Julian Hyde) Fix last checkFile error.

72cf6cc Tue, 21 Jul 2009 16:23:03 +0000 - (Luc Boudreau) Added a function to QueryDimension to allow hierarchization of the included member selections. Also added a regression test to OlapTest.

f7363a7 Mon, 20 Jul 2009 17:47:11 +0000 - (Luc Boudreau) In the XMLA driver, Dimensions are inserted according to their correct ordinal value, as specified by DIMENSION_ORDINAL. Also added a test for that.

13155f6 Mon, 20 Jul 2009 17:09:18 +0000 - (Luc Boudreau) Fixes coding issues.

919835e Mon, 20 Jul 2009 14:08:20 +0000 - (Luc Boudreau) Holding back on last commit. Seems I broke stuff.

653e62d Mon, 20 Jul 2009 14:03:19 +0000 - (Luc Boudreau) Dimensions are inserted according to their correct ordinal value, as specified by DIMENSION_ORDINAL.

ccf727d Mon, 20 Jul 2009 13:51:51 +0000 - (Luc Boudreau) Added new suger method to place dimension on axis at arbitrary position.

b1cc206 Thu, 16 Jul 2009 17:34:16 +0000 - (Luc Boudreau) This commit fixes many issues with the XMLA driver. It used to load explicitely everything upon a cube object initialisation. Now it uses lazy collections.

aceb6c2 Fri, 10 Jul 2009 19:17:20 +0000 - (Julian Hyde) Upgrade to mondrian-3.1.1.12929 and commons-collections 3.2.

d8f7cb5 Fri, 10 Jul 2009 19:16:24 +0000 - (Luc Boudreau) Fixed a race condition where data would remain in the HTTP proxy buffer upon an HTTP exception, so connections would remain in WAIT mode at the OS level for quite a while. We now attenpt to empty the input stream buffer just in case there is still something stuck in it.

19e1f76 Fri, 10 Jul 2009 04:35:11 +0000 - (Julian Hyde) Upgrade to mondrian-3.1.1.12926, to fix (I hope) the two test exceptions on Hudson.

ddaa646 Wed, 8 Jul 2009 14:47:12 +0000 - (Luc Boudreau) First off I updated the checkFile utility with the most recent version. It now checks for line lenghts and function wrapping.

5028c7c Tue, 7 Jul 2009 22:53:48 +0000 - (Luc Boudreau) Sets the project line ending default to Unix style so Eclipse won't mix up our files anymore.

9e039d4 Tue, 7 Jul 2009 14:21:23 +0000 - (Luc Boudreau) Added a test to make sure that there are no inherent links between a query model object and it's generated MDX object trees.

ec7511e Mon, 6 Jul 2009 09:50:16 +0000 - (Julian Hyde) Comply with new checkFile rules.

54196f0 Thu, 2 Jul 2009 15:41:26 +0000 - (Luc Boudreau) Fixed typo and added test case.

7ef5ea4 Thu, 2 Jul 2009 14:29:39 +0000 - (Luc Boudreau) Override of equals() so objects can be properly used in Collections API.

c4940c5 Tue, 30 Jun 2009 17:58:43 +0000 - (Julian Hyde) Javadoc.

9d30869 Tue, 30 Jun 2009 16:34:06 +0000 - (Luc Boudreau) Fixed javadoc warnings and added override of hashCode for base XMLA metadata object.

e4b2fdb Tue, 30 Jun 2009 03:06:10 +0000 - (Julian Hyde) Comply with new checkFile rules. Remove calls to fold, and instead call assertEqualsVerbose, which calls fold internally.

bf0c6dc Mon, 29 Jun 2009 15:30:28 +0000 - (Luc Boudreau) Removed useless properties that might confuse users.

920f52c Thu, 25 Jun 2009 21:53:45 +0000 - (Julian Hyde) Update PDF version of functional spec to match latest HTML.

1e28ab7 Thu, 25 Jun 2009 21:35:50 +0000 - (Julian Hyde) Enable svn id tag.

d08b61d Thu, 25 Jun 2009 21:29:25 +0000 - (Julian Hyde) Update code samples in olap4j functional spec.

67f8a38 Wed, 24 Jun 2009 19:53:46 +0000 - (Luc Boudreau) Implemented the listener pattern for the Query Model. Also fixed many bugs introduced by the last commit; line endings were not properly replaced on Windows systems.

2321361 Sat, 20 Jun 2009 05:52:40 +0000 - (Julian Hyde) Comply with new checkFile rules. Remove use of 'fold' function from most regression tests.

1d41474 Thu, 11 Jun 2009 00:35:21 +0000 - (Julian Hyde) Code formatting standards, in argument/parameter lists split over several lines.

e76ddcb Tue, 26 May 2009 21:14:13 +0000 - (Sherman Wood) deepCopy fix

de77341 Mon, 25 May 2009 17:30:13 +0000 - (Luc Boudreau) Added two methods to move a dimension along an axis. Created test cases. Fixed issue where calling set() on the QueryAxis's dimensions was loosing one object of the collection due to an overwrite.

40daa57 Fri, 22 May 2009 07:21:37 +0000 - (Julian Hyde) Code formatting standards, in particular line length.

4bd09de Tue, 19 May 2009 23:18:41 +0000 - (Julian Hyde) Change enumerated values of Level.Type to uppercase, and add new values such as TIME_HALF_YEAR, TIME_HOURS, TIME_UNDEFINED.

5b2a39d Tue, 19 May 2009 22:57:22 +0000 - (Julian Hyde) Tests for compound filters

4d5decd Wed, 13 May 2009 16:23:47 +0000 - (Luc Boudreau) There was a missing dependency in the Eclipse setup target.

58f55e1 Wed, 13 May 2009 15:13:49 +0000 - (Luc Boudreau) Fixed coding standard issue and removed some useless calls that were costly in calculations and returned values that were not used.

aff327d Wed, 13 May 2009 14:56:05 +0000 - (Luc Boudreau) Fixed an issue where there are no available catalogs. There was an IndexOutOfBoundsException, which is a no-no.

2511d96 Tue, 12 May 2009 21:31:18 +0000 - (Julian Hyde) Generate java class containing version information, and use it to populate XMLA driver's version information.

a7031a9 Tue, 12 May 2009 07:42:17 +0000 - (Julian Hyde) Rename org.olap4j.OlapException to org.olap4j.driver.xmla.XmlaHelper (a utility class doesn't belong in the main package). Make its methods non-static, and create an instance in each connection; MondrianOlap4jConnection.Helper already works that way.

7de4b27 Tue, 12 May 2009 06:33:40 +0000 - (Julian Hyde) Oops!

3dacbf5 Tue, 12 May 2009 06:06:13 +0000 - (Julian Hyde) Clean before building a release

a1810a4 Tue, 12 May 2009 06:05:49 +0000 - (Julian Hyde) Ensure that SelectNode's filter axis is always set. If the axis has a null expression, that means there is no WHERE clause. You can assign the expression after tha axis has been created, including to null. Fixes bug 2789893, "SelectNode should have method setFilterAxis".

b41879b Sat, 9 May 2009 00:16:54 +0000 - (Julian Hyde) Oops!

8d210c4 Fri, 8 May 2009 22:21:44 +0000 - (Julian Hyde) Improve javadoc in IdentifierNode. Add optimized implementation of read-only lists backed by arrays, and use it in IdentifierNode and XmlaOlap4jConnection.MetadataRequest.

9c7ceab Fri, 8 May 2009 21:20:01 +0000 - (Julian Hyde) Fix javadoc and doczip.

377e6ba Fri, 8 May 2009 19:11:29 +0000 - (Julian Hyde) Change license from CPL to EPL. Update copyright notice for files modified in 2009.

a40886c Fri, 8 May 2009 09:31:37 +0000 - (Julian Hyde) Parser and parse tree model can now handle key path expressions, including compound keys such as [Customers].[State].&[CA]&[USA]. Fixes bug 2782515, "Parser cannot handle &key in member names".

39cd229 Thu, 7 May 2009 20:20:07 +0000 - (Luc Boudreau) Fixed overwrite of classes files by Retroweaver.

ecd743d Thu, 7 May 2009 18:46:49 +0000 - (Luc Boudreau) Woops. Mondrian was compiled with JDK 1.6 =)

329b911 Thu, 7 May 2009 18:22:49 +0000 - (Luc Boudreau) Forgot to comit the SVN:IGNORE changes

8ffd1b5 Thu, 7 May 2009 18:21:45 +0000 - (Luc Boudreau) Since Mondrian doesn't use olap4j SNAPSHOT builds, all tests fail. I included a custom built Mondrian library and deactivated the current Ivy one until Mondrian gets modified accordingly.

50010d9 Wed, 6 May 2009 13:03:36 +0000 - (Luc Boudreau) Removed Cobertura tests. Performance is terrible. Will optimize later.

5ef55f4 Wed, 6 May 2009 12:49:40 +0000 - (Luc Boudreau) typo...

b6d0a08 Wed, 6 May 2009 12:48:10 +0000 - (Luc Boudreau) git-svn-id: https://olap4j.svn.sourceforge.net/svnroot/olap4j/trunk@221 c6a108a4-781c-0410-a6c6-c2d559e19af0

592e1d4 Wed, 6 May 2009 12:46:59 +0000 - (Luc Boudreau) Fixed hsql init stuff.

20f7b87 Wed, 6 May 2009 12:43:24 +0000 - (Luc Boudreau) Fixed some remaining issues with Javadoc generation.

6395648 Wed, 6 May 2009 12:25:23 +0000 - (Luc Boudreau) Should not be committed.

0293aca Tue, 5 May 2009 20:27:02 +0000 - (Luc Boudreau) Fixed issue with HSQLDB + Cobertura.

d7df62c Tue, 5 May 2009 20:14:08 +0000 - (Luc Boudreau) Changed dependencies order and fixed faulty delete task.

33a4979 Tue, 5 May 2009 16:47:53 +0000 - (Luc Boudreau) Ant targets dependencies cleanup.

e90d0e6 Tue, 5 May 2009 16:31:04 +0000 - (Luc Boudreau) Removed clean in dist target.

a58576a Tue, 5 May 2009 16:18:41 +0000 - (Luc Boudreau) Faulty comment.

fdf58a5 Tue, 5 May 2009 16:12:15 +0000 - (Luc Boudreau) Needs basedir prefix.

c5b187f Tue, 5 May 2009 15:56:28 +0000 - (Luc Boudreau) Created a goal for CI builds.

62f7395 Tue, 5 May 2009 15:51:06 +0000 - (Luc Boudreau) Need to add this to repo for CI builds to work properly.

93b1243 Tue, 5 May 2009 15:26:11 +0000 - (Luc Boudreau) Updated comment in example test properties.

ee4bae1 Tue, 5 May 2009 15:00:04 +0000 - (Luc Boudreau) Ignoring libraries in SVN.

4504961 Tue, 5 May 2009 14:58:00 +0000 - (Luc Boudreau) Applying ivyfication to project. (fingers crossed...)

e33489c Sat, 2 May 2009 07:28:35 +0000 - (Julian Hyde) In SimpleQuerySample, use Axis.axisOrdinal not Axis.ordinal(); fix driver class name; add example of using a CellSetFormatter.

baf3322 Mon, 27 Apr 2009 23:24:46 +0000 - (Julian Hyde) Fix XMLA driver where dimension type=Geography. See issue https://sourceforge.net/forum/message.php?msg_id=7301948 "j.l.AIOOBE 17 with Geography Dimension".

fd57914 Sun, 19 Apr 2009 01:33:03 +0000 - (Julian Hyde) Tests for CoordinateIterator; fix coding style.

93fc515 Sun, 19 Apr 2009 00:43:03 +0000 - (Julian Hyde) Add CellSetFormatter, a couple of implementations, and a few tests.

93d335a Sun, 19 Apr 2009 00:35:20 +0000 - (Julian Hyde) Update tests to match mondrian's latest capabilities. All tests now pass clean.

0f5b0e9 Thu, 26 Mar 2009 14:36:51 +0000 - (Luc Boudreau) Added a sortOrder() method to QueryDimension to sort the dimension members either in ascending or descending order.

156558b Mon, 23 Mar 2009 18:18:28 +0000 - (Luc Boudreau) Javadoc was useless since this method should be restricted to package access only. Reduced visibility and removed useless javadoc links.

c6e27b1 Mon, 23 Mar 2009 16:41:06 +0000 - (Luc Boudreau) Fixed lack of comments.

d3cda6c Mon, 23 Mar 2009 16:30:21 +0000 - (Luc Boudreau) Corrected conditional pattern.

fd200e4 Mon, 23 Mar 2009 16:05:58 +0000 - (Luc Boudreau) Performed some cleanup and refactoring. I just want to tidy things up before we work more seriously in this package.

c29d55e Thu, 5 Mar 2009 19:12:55 +0000 - (Luc Boudreau) Fixed code formating.

4485f7c Thu, 5 Mar 2009 18:21:16 +0000 - (Luc Boudreau) Made the Axis enumeration serializable and all the components of the org.olap4j.mdx package too, thus allowing their use through RPC.

2f880a9 Mon, 23 Feb 2009 20:23:25 +0000 - (Julian Hyde) olap4j build: don't include java.sql.Driver twice in olap4j.jar; generate javadoc for XMLA driver; rename olap4j-sources.jar to olap4j-source.jar

d6e5991 Sat, 21 Feb 2009 03:27:20 +0000 - (Julian Hyde) Fix javadoc.

49d19e0 Fri, 20 Feb 2009 22:49:42 +0000 - (Julian Hyde) Remove restriction on number of query axes; Axis used to be an enum, is now an interface. Deprecated Axis.UNUSED and Axis.NONE.

43546cc Fri, 20 Feb 2009 20:21:23 +0000 - (Julian Hyde) Cosmetic changes & review comments for Luc's cache code.

858f916 Mon, 9 Feb 2009 17:12:05 +0000 - (Luc Boudreau) Fixes bug 2582046. All tests passed.

ce2aa44 Thu, 22 Jan 2009 19:36:33 +0000 - (Julian Hyde) Fix XMLA driver bug 2527862, "Failed to get Hierarchy list for particular dimension".

1dd1911 Tue, 20 Jan 2009 23:43:19 +0000 - (Julian Hyde) Create META-INF/services/java.sql.Driver under classes so that driver discovery works in dev environment. Fix ANT_HOME and comments in buildJdk16.bat.

c67dc06 Wed, 14 Jan 2009 14:26:48 +0000 - (Luc Boudreau) Javadoc error.

ef4594d Tue, 6 Jan 2009 01:55:06 +0000 - (Julian Hyde) Add targets to generate olap4j-sources.jar and olap4j-javadoc.jar, artifacts that can be deployed to a maven2 repository alongside olap4j.jar and downloaded automatically by ivy.

62b605a Thu, 18 Dec 2008 22:00:13 +0000 - (Julian Hyde) Restore UNIX line endings

4cdcda3 Tue, 16 Dec 2008 21:42:35 +0000 - (Luc Boudreau) git-svn-id: https://olap4j.svn.sourceforge.net/svnroot/olap4j/trunk@137 c6a108a4-781c-0410-a6c6-c2d559e19af0

da546b6 Tue, 25 Nov 2008 14:53:35 +0000 - (Will Gorman) Unit test addition for mondrian bug 2026930, MondrianOlap4jMember.getCaption() throws exception

f35e504 Wed, 12 Nov 2008 07:39:40 +0000 - (Julian Hyde) Mainly code formatting. Fix how ConnectionTest.testXmlaCatalogParameter unwraps statements. Clean up DoubleSubmissionTestProxy by factoring out base class DelegatingTestProxy.

9c590aa Tue, 4 Nov 2008 20:24:50 +0000 - (Julian Hyde) Fix a few typos in javadoc. Add testcase for bug 1868075. Include README in release, and convert to DOS format.

bc2f3a1 Mon, 3 Nov 2008 20:30:17 +0000 - (Luc Boudreau) Code formatting issues

485ff4b Mon, 3 Nov 2008 19:43:35 +0000 - (Luc Boudreau) Code formatting issues

1f5271c Mon, 3 Nov 2008 19:15:04 +0000 - (Luc Boudreau) Added the dependencies schema for archives.

94e5496 Mon, 3 Nov 2008 18:40:41 +0000 - (Julian Hyde) Fix formatting in parser.

95940ce Mon, 3 Nov 2008 18:36:30 +0000 - (Luc Boudreau) I have double checked the dependencies tree and made sure there was nothing circular. I have also uploaded a schema to help you understand better the current dependencies. It's available here :

3ee359a Mon, 3 Nov 2008 17:39:10 +0000 - (Luc Boudreau) Fixed an issue with the LS serializer usage that triggered an AbstractMethodError at runtime under certain environments. The parsing is now done old-school.

0919416 Mon, 3 Nov 2008 16:43:04 +0000 - (Luc Boudreau) I was able to create a new test for that and i also corrected the defect. The test makes sure that a given statement object doesn't send twice the same query.

dfcb158 Sun, 2 Nov 2008 07:54:05 +0000 - (Julian Hyde) Ensure that all Java files comply with checkFile coding standard.

610aa2a Sun, 2 Nov 2008 07:43:12 +0000 - (Julian Hyde) Update copyright notices. Ensure all Java files have keyword replacement.

0a6f2dc Sun, 2 Nov 2008 07:34:39 +0000 - (Julian Hyde) Fix bug 2032449, 'User Defined Dimension Properties'. Add builtin properties MEMBER_KEY, IS_PLACEHOLDERMEMBER, IS_DATAMEMBER. Special treatment for DEPTH property and Member.getDepth() method. Add test for reading members of parent-child hierarchy. Fix test now that mondrian has more variants of the Descendants function. Introduce interface XmlaOlap4jMemberBase, to allow commonality between various implementations of Member in XMLA driver.

dd190c9 Sat, 1 Nov 2008 21:49:35 +0000 - (Julian Hyde) Add Query.setNonEmpty/isNonEmpty (bug 1994488).

4692256 Thu, 30 Oct 2008 19:30:54 +0000 - (Luc Boudreau) I reduced the visibility on a few classes of the XMLA driver because it's namespace got polluted by my careless declarations... :D

7b3729c Wed, 29 Oct 2008 19:16:57 +0000 - (Luc Boudreau) Made the fault string parsing more efficient and standard with the CellSet implementation way of doing it.

7f766f2 Tue, 21 Oct 2008 13:34:39 +0000 - (Luc Boudreau) Forgot to commit these in last commit.

19f9d9d Mon, 6 Oct 2008 16:46:14 +0000 - (Luc Boudreau) Fixed issue 2018878. If a SOAP error is received from the server, it will be included in the exception that is thrown back at the end-user.

3b1e745 Wed, 17 Sep 2008 23:52:40 +0000 - (Luc Boudreau) Fixed missing conversion. The element absence returns null, but the correct value to send back is an empty string. It was fixed in CatalogSchemaHandler but not here.

c8f266e Mon, 15 Sep 2008 19:02:30 +0000 - (Luc Boudreau) Fixed a faulty race condition and updated tests to detect it.

81d65b0 Mon, 15 Sep 2008 18:25:38 +0000 - (Luc Boudreau) Fixed some comments.

3c39d58 Mon, 15 Sep 2008 17:17:52 +0000 - (Luc Boudreau) Fixed https://sourceforge.net/forum/forum.php?thread_id=2248227&forum_id=577988

82777df Mon, 25 Aug 2008 01:18:27 +0000 - (Julian Hyde) Back out revisions 110-113.

bfe29fc Thu, 21 Aug 2008 16:21:25 +0000 - (Luc Boudreau) Fixed a faulty condition.

edbb9f4 Thu, 21 Aug 2008 15:30:07 +0000 - (Luc Boudreau) An invalid UTF character was present in the file. Fixed.

b67641a Tue, 19 Aug 2008 17:44:39 +0000 - (Luc Boudreau) Created a messaging framework for Olap4j so that all messages and OlapExceptions can be easily localized, parametrized and build correctly by both Olap4j itself and implementing drivers.

3108dd2 Fri, 15 Aug 2008 15:44:32 +0000 - (Luc Boudreau) First round of exceptions paths cleanup. This commit introduces an OlapExceptionHandler which was factored out of the XmlaOlap4jConnection class. I made sure that all OlapException get thrown through the helper in the xmla driver. Eventually, we could do the same with the rest of Olap4j.

1e25fee Thu, 14 Aug 2008 22:22:01 +0000 - (Julian Hyde) Update source code to enforce coding standards (spaces, tabs, braces, etc.). No functionality changes.

9c0fa92 Thu, 14 Aug 2008 18:42:30 +0000 - (Julian Hyde) Oops

7846791 Thu, 14 Aug 2008 18:38:06 +0000 - (Julian Hyde) Add experimental org.olap4j.transform package, and method ParseTreeNode.deepCopy() (contributed by Etienne Dube)

daeb88e Mon, 11 Aug 2008 16:23:27 +0000 - (Julian Hyde) Test case for mondrian bug 2046318, 'olap4j driver should throw OlapException on validate error'

88e52dd Wed, 30 Jul 2008 13:21:20 +0000 - (Luc Boudreau) Modified the access mechanism to the underlying connection object for member lookup optimization.

2a32251 Tue, 29 Jul 2008 14:44:48 +0000 - (Luc Boudreau) Added an optimization mechanism for the members lookup and a new signature to the Handler interface which receives a reference to the parent connection object.

e8d3567 Mon, 28 Jul 2008 20:10:36 +0000 - (Luc Boudreau) Temporary fix for 2027796. This makes sure that XmlaOlap4jMembers are created because SSAS doesn't support multiple restraints at once on a members meta query. The solution has much space for optimization. See the bug thread for discussion at :

bc26a47 Fri, 25 Jul 2008 18:25:13 +0000 - (Will Gorman) fixed deadlock bug in Xmla Driver, added unit test to verify fix. Also added generated java files and testclasses directory to svn:ignore.

e1280ce Wed, 23 Jul 2008 18:25:06 +0000 - (Julian Hyde) In XMLA driver, handle empty string value for PROPERTY_CONTENT_TYPE attribute (bug 2025638).

f806186 Wed, 23 Jul 2008 18:20:12 +0000 - (Julian Hyde) In XMLA driver, treat empty strings for integer attributes as nulls.

8f0c269 Mon, 21 Jul 2008 13:46:46 +0000 - (Luc Boudreau) Added back the Proxy static interface to maintain retro-compatibility but marked it as deprecated. This proxy only extends the new one.

1d0e3a2 Fri, 18 Jul 2008 17:59:55 +0000 - (Luc Boudreau) Tons of performance enhancing modifications for the XML/A driver.

5abb967 Mon, 9 Jun 2008 11:33:50 +0000 - (Julian Hyde) Fix examples referring to driver names and connect strings.

e4e7fbe Sat, 31 May 2008 02:39:40 +0000 - (Julian Hyde) Upgrade to xerces 2.6 (2.3 doesn't play well with jdk 1.6); update names of mondrian jars (since upgrade to ivy they no longer contain version numbers); OlapTest was wrongly assuming that Schema.getCubes() produces a list in a particular order.

e201c97 Tue, 27 May 2008 19:21:25 +0000 - (Julian Hyde) Implement clearWarnings() as no-op (needed by apache-commons-dbcp); Make sure Level.getMembers() returns objects that implement Measure if applied to level in [Measures] dimension; Minor changes to web home page.

babc6b2 Mon, 21 Apr 2008 20:52:59 +0000 - (Julian Hyde) Declare XMLA driver so that it can we loaded implicitly, without using 'Class.forName'. Requires JDBC 4.0 (JDK 1.6) and later.

46213b1 Mon, 21 Apr 2008 20:23:46 +0000 - (Julian Hyde) Fix bug in conversion of query model to olap4j parse tree; the bug meant that queries would lose their slicer.

ecad30c Thu, 17 Apr 2008 07:41:10 +0000 - (Julian Hyde) Ensure that members of the Measures dimension implement Measure interface, and that list inclues calculated members defined against the cube.

d7bfc03 Sun, 13 Apr 2008 16:56:45 +0000 - (Luc Boudreau) Fixed a missing exception handling.

c0fa333 Sun, 13 Apr 2008 08:52:20 +0000 - (Julian Hyde) Change code to comply with code-formatting standard.

8a3e97d Sun, 13 Apr 2008 07:14:33 +0000 - (Julian Hyde) Fix XMLA teste and XMLA driver for DBCP.

22e6f32 Sun, 13 Apr 2008 07:06:03 +0000 - (Julian Hyde) Fix URL of Sourceforge logo in javadoc pages

b9756d6 Fri, 11 Apr 2008 15:04:20 +0000 - (Luc Boudreau) Fixed a few code style issues, a result set which wasn't closed and some missing blocks.

dc08e7c Wed, 9 Apr 2008 05:51:52 +0000 - (Julian Hyde) Fix bug in connect-string parser (see mondrian bug 1938151)

e2863ed Thu, 3 Apr 2008 14:26:37 +0000 - (Luc Boudreau) The following data types are now casted to their respective class :

f537684 Wed, 2 Apr 2008 09:55:08 +0000 - (Julian Hyde) Fix more tests for dbcp.

2496cad Wed, 2 Apr 2008 08:03:19 +0000 - (Julian Hyde) Add test mode that wraps connections in a connection-pool (currently just apache commons-dbcp); fix xmla driver for JDK 1.4; fix connection-leak in test framework; make test framework work with commons-dbcp (but still some bugs with XMLA driver and commons-dbcp); collect into an enum all properties used by the test framework; more javadoc.

e1b7a59 Tue, 1 Apr 2008 14:51:07 +0000 - (Luc Boudreau) Added two parameters to the XMLA driver url.

6a62a7d Wed, 26 Mar 2008 00:11:06 +0000 - (Julian Hyde) Add OlapDataSource interface.

af33fc9 Fri, 14 Mar 2008 08:09:19 +0000 - (Julian Hyde) Various fixes contributed by Tomek Grabon. Include DefaultMdxParser.cup in source distro; add xercesImpl.jar to path; in XMLA driver, explicitly pass ; encode characters <, >, single and double quote in XML strings.

567c871 Mon, 10 Mar 2008 20:45:29 +0000 - (Julian Hyde) Apply hierarchy lookup logic in one other place.

667e875 Wed, 5 Mar 2008 22:03:00 +0000 - (Julian Hyde) Oops. Didn't intend to check those in.

94d2d1f Wed, 5 Mar 2008 21:36:54 +0000 - (Julian Hyde) Enhance XMLA proxy used by testing infrastructure to include charset. XMLA driver tolerates if HierarchyInfo contains hierarchy's unique name rather than name.

8b4b2e3 Wed, 5 Mar 2008 20:42:11 +0000 - (Julian Hyde) Add OlapConnection.setRoleName and .getRoleName. Dummy implementation in XMLA driver.

dd4e9e6 Fri, 29 Feb 2008 22:56:28 +0000 - (Julian Hyde) Set encoding for XMLA requests to 'UTF-8'; contributed by lucboudreau.

81a26e5 Wed, 13 Feb 2008 20:36:10 +0000 - (Will Gorman) Completed the implementation of the org.olap4j.query API

1b5c317 Thu, 7 Feb 2008 04:15:15 +0000 - (Julian Hyde) Update spec and change log for release 0.9.4-svn72.

9043264 Tue, 5 Feb 2008 19:46:03 +0000 - (Julian Hyde) Up olap4j version; remove jars required by mondrian driver (now that it lives under mondrian).

82b4b82 Tue, 5 Feb 2008 19:37:23 +0000 - (Julian Hyde) XMLA driver now reads member corresponding to each measure, so that it can sort by ordinal.

0582677 Tue, 5 Feb 2008 00:22:15 +0000 - (Julian Hyde) Cube.getMeasures() returns members sorted by ordinal.

091e638 Sat, 2 Feb 2008 23:28:59 +0000 - (Julian Hyde) Switch order of parameters to AxisNode (it's easier to write code if the bulky expression comes last). Fix 'jar' build on windows. Push up memory for unit test (in-process XMLA test is hungry).

3e562cf Fri, 1 Feb 2008 07:07:41 +0000 - (Julian Hyde) XMLA driver: add member cache; call MDSCHEMA_MEMBERS with multiple unique-names. Hierarchy.getDefaultMember() now throws OlapException. XmlaTester caches connections.

14ca2de Thu, 24 Jan 2008 07:42:35 +0000 - (Julian Hyde) XMLA driver: when constructing metadata request XML, encode restriction values

afa7d80 Thu, 24 Jan 2008 07:21:25 +0000 - (Julian Hyde) Add constructor for IdentifierNode which takes a list (convenient for calling with the result from IdentifierNode.parseIdentifier); Test case for building MDX parse tree programmatically and executing as query.

aeffdfb Thu, 24 Jan 2008 05:14:58 +0000 - (Julian Hyde) Add support for Basic Authentication to XMLA driver (contributed by Luc Boudreau); add Base64 utilities (needed for Basic Authentication); fix MetadataTest for additional functions just added to mondrian.

16524c8 Mon, 21 Jan 2008 14:13:36 +0000 - (Julian Hyde) Oops

21877d2 Mon, 21 Jan 2008 14:12:55 +0000 - (Julian Hyde) Remove unused mondrian import

dd62506 Sun, 13 Jan 2008 02:18:47 +0000 - (Julian Hyde) Fix XMLA driver for calculated members defined in query; and make hierarchies and members returned for the slicer consistent between XMLA and mondrian drivers.

0428f8e Thu, 10 Jan 2008 19:20:01 +0000 - (Julian Hyde) Fix typo in javadoc

c257ba6 Thu, 10 Jan 2008 09:25:49 +0000 - (Julian Hyde) Clarify what the slicer axis contains if the query has no WHERE clause; clarify Cell.getFormattedValue() if the value is NULL; and add testcase for query with no slicer.

cbbba63 Thu, 10 Jan 2008 05:35:55 +0000 - (Julian Hyde) Move olap4j driver for mondrian to mondrian code base.

467484c Wed, 9 Jan 2008 08:34:03 +0000 - (Julian Hyde) Enable keyword substitution for some source files.

9bcadc8 Wed, 9 Jan 2008 08:31:56 +0000 - (Julian Hyde) XMLA driver now uses HTTP POST (some server's don't support GET)

728d79c Sun, 6 Jan 2008 20:34:57 +0000 - (Julian Hyde) Fix metadata test now mondrian has more functions

ea8b51d Fri, 21 Dec 2007 23:55:30 +0000 - (Julian Hyde) Update MetadataTest now mondrian has 2 extra functions; fix drill-through test for Derby's JDBC driver weirdness.

6d9c74d Tue, 18 Dec 2007 22:11:57 +0000 - (Julian Hyde) Fix code examples in functional spec, and improve a few javadoc comments. ResultSet returned from Cell.drillThrough() now closes its connection and statement on close, thereby fixing a connection leak.

84e5841 Fri, 14 Dec 2007 01:07:28 +0000 - (Julian Hyde) Oops: fix for JDK 1.5, and fix typo in ant classpath; update web home page for 0.9.3.

179dd06 Thu, 13 Dec 2007 23:15:53 +0000 - (Julian Hyde) Major progress on XMLA driver. All tests pass for XMLA driver (running against mondrian in-process, but nevertheless sending and receiving SOAP requests) and still pass for mondrian driver.

5abb015 Mon, 10 Dec 2007 21:43:24 +0000 - (Julian Hyde) Regenerate PDF specification

88d7976 Mon, 10 Dec 2007 21:38:03 +0000 - (Julian Hyde) Make Property.Datatype a top-level enum; a few methods now throw OlapException; add methods to metadata classes.

863a7c4 Sun, 2 Dec 2007 23:53:46 +0000 - (Julian Hyde) Release 0.9.2.

3df918e Sun, 2 Dec 2007 10:42:19 +0000 - (Julian Hyde) Fix release issues noted by John Sichi.

74efed7 Wed, 28 Nov 2007 04:03:57 +0000 - (Julian Hyde) Website re-design.

df5d08b Thu, 22 Nov 2007 03:41:45 +0000 - (Julian Hyde) Fix build for JDK 1.6; check in mondrian jars built under JDK 1.5 (not JDK 1.6); add script to recursively switch to JDK 1.6 and invoke ant to build a couple of classes.

640a790 Thu, 22 Nov 2007 03:31:13 +0000 - (Julian Hyde) Latest spec in PDF format. Obsolete SpringSample.

1ed37d9 Wed, 21 Nov 2007 12:09:46 +0000 - (Julian Hyde) Check in necessary libraries. Mondrian as of change 10210. Remove dependency on spring. Revise README and up version number.

dcd6e4d Wed, 21 Nov 2007 01:57:47 +0000 - (Julian Hyde) Enable keyword expansion.

ba29a42 Wed, 21 Nov 2007 01:39:37 +0000 - (Julian Hyde) Move test parameters out of source code and into a file. 'test.properties' should be the only file you need to edit. Provided 'test.properties.example'. First cut README.txt.

6909980 Sun, 18 Nov 2007 01:33:12 +0000 - (Julian Hyde) Trip down which packages/classes appear in public API javadoc.

d65a89e Sun, 18 Nov 2007 01:13:26 +0000 - (Julian Hyde) Specify thread-safety, timeout, statement cancel; Specify compliance levels; Specify access control; Specify internationalization; add OlapConnection.get/setLocale. Add diagram of object model to spec; Ensure that every public class and method has a full javadoc description. Implement timeout and cancel in mondrian driver; and test. Implement drill-through in mondrian driver; and test. Make CellSetAxis implement Iterable. Remove some unneeded methods from org.olap4j.type package. Rename SLICER to FILTER.

ad23a24 Tue, 13 Nov 2007 09:46:46 +0000 - (Julian Hyde) Oops, fix for JDK 1.5.

96d3da3 Tue, 13 Nov 2007 09:37:16 +0000 - (Julian Hyde) Lots of tests for metadata classes, and implement corresponding functionality in mondrian driver. Review org.olap4j.type package, and remove/hide several methods. Add API for creating validator and validating an MDX parse tree. Test that non-unique axis names cause a validation error.

fb680a8 Mon, 12 Nov 2007 04:14:39 +0000 - (Julian Hyde) Javadoc fixes. One javadoc target documents the public API, another to check all javadoc including against private methods and test classes.

b066d25 Mon, 5 Nov 2007 09:06:12 +0000 - (John V. Sichi) Add unit test for construction of an MDX statement via language object model.

f689ac9 Tue, 23 Oct 2007 21:42:48 +0000 - (Julian Hyde) Document and revise OlapDatabaseMetaData methods; write unit tests for all methods; implement methods in mondrian's olap4j driver.

6ff349d Sun, 7 Oct 2007 03:06:58 +0000 - (John V. Sichi) Delete "ant test" task, add one for removing site-specifics from unit test code.

10d9791 Thu, 27 Sep 2007 05:11:22 +0000 - (John V. Sichi) Implement ant "test" target.

c1f9f16 Thu, 27 Sep 2007 00:54:27 +0000 - (John V. Sichi) Just testing commit privileges.

b200add Sat, 22 Sep 2007 02:29:21 +0000 - (Julian Hyde) Correct typos in spec; eliminate QueryAxis.xxxDimension and QueryDimension.xxxSelection methods; property methods now take a Property, not the property name

b07c768 Fri, 21 Sep 2007 09:14:34 +0000 - (Julian Hyde) A few more parameters to OlapDatabaseMetaData.getXxx methods

9c858b6 Fri, 21 Sep 2007 07:13:14 +0000 - (Julian Hyde) Add parameters to OlapDatabaseMetaData.getXxx methods

a3d5480 Thu, 20 Sep 2007 10:46:43 +0000 - (Julian Hyde) Javadoc and spec tasks, mostly adding descriptions of metadata elements.

190887c Tue, 18 Sep 2007 07:34:57 +0000 - (Julian Hyde) Add task list, and minor spec/javadoc edits

b072f2e Wed, 15 Aug 2007 06:55:30 +0000 - (Julian Hyde) Fix build under JDK 1.5

12500d1 Thu, 9 Aug 2007 07:50:03 +0000 - (Julian Hyde) Add skeleton olap4j driver for XMLA

da3fcfa Wed, 25 Jul 2007 05:56:33 +0000 - (Julian Hyde) Add junit.jar

b099238 Fri, 15 Jun 2007 03:53:14 +0000 - (Julian Hyde) Add notion of ParseRegion to parser and parse tree nodes.

7a691f0 Fri, 15 Jun 2007 02:23:07 +0000 - (Julian Hyde) In mondrian driver, create dual implementations of key JDBC objects to allow running against both JDBC 3.0 (JDK 1.5) and JDBC 4.0 (JDK 1.6); add OlapWrapper for JDBC 3.0 users, who have no access to java.sql.Wrapper methods; implement OlapPreparedStatement in mondrian driver.

bddae98 Thu, 14 Jun 2007 20:37:17 +0000 - (Julian Hyde) Get mondrian classes from parallel source directory, not log file (for now); fix 'ant clean' mayhem; add 'javadoc-with-ydoc' ant target.

5a0bb18 Sun, 10 Jun 2007 23:09:28 +0000 - (Julian Hyde) Enable keyword substitution

33a2089 Sun, 10 Jun 2007 22:53:45 +0000 - (Julian Hyde) Obsolete Database and Olap4j; update spec with parse tree model changes; enable keyword substitutions

5783fb2 Sun, 10 Jun 2007 18:31:17 +0000 - (Julian Hyde) Add query model (from James Dixon), parser and parser object model.

5d7b66c Fri, 25 May 2007 22:34:38 +0000 - (Julian Hyde) Rename OlapResultSet to CellSet, OlapResultSetMetaData to CellSetMetaData, OlapResultAxis to CellSetAxis, ResultCell to Cell, ResultSetPosition to Position; add implementation of olap4j against mondrian, and a unit test

b456d38 Tue, 24 Oct 2006 22:48:56 +0000 - (Julian Hyde) Add NamedSet and Database; clean up schema result set defns in spec; switch some uses of SQLException to OlapException

6c87da1 Tue, 24 Oct 2006 08:41:02 +0000 - (Julian Hyde) Changes to org.olap4j package regarding result sets, and org.olap4j.metadata package regarding Database, Catalog, Schema

a6a9c85 Sat, 21 Oct 2006 00:35:30 +0000 - (Julian Hyde) Add items from 2006/10/20 progress meeting to spec.

37c47b3 Thu, 19 Oct 2006 20:06:48 +0000 - (Julian Hyde) Barry Klawans's changes to Transform component of olap4j specification

b4ed0f5 Wed, 18 Oct 2006 00:32:56 +0000 - (Julian Hyde) Move JDK topic from 'open issues' to body of spec; clean up some links.

2e2dae3 Wed, 18 Oct 2006 00:31:42 +0000 - (Julian Hyde) Include PNG images in doczip.

511578c Mon, 16 Oct 2006 05:37:08 +0000 - (Julian Hyde) Update specification and java code, especially metadata (org.olap4j.metadata) and type (org.olap4j.type) sections, and description of how to interoperate with connection pools.

90f80a3 Thu, 12 Oct 2006 10:07:40 +0000 - (Julian Hyde) Add table of contents functional spec, and some content regarding drivers, connections and statements; Add ant target to generate javadoc in PDF format; Rename OlapResult to OlapResultSet.

7c0072c Mon, 4 Sep 2006 01:57:41 +0000 - (Julian Hyde) Tweak stylesheet.

4572039 Sun, 3 Sep 2006 09:23:08 +0000 - (Julian Hyde) Release 0.5 (continued).

f2da514 Sun, 3 Sep 2006 08:57:45 +0000 - (Julian Hyde) Release 0.5.

ab979cd Sun, 3 Sep 2006 03:15:36 +0000 - (Julian Hyde) Add script to deploy doc to website; add retroweaver jars.

ce4de02 Sat, 2 Sep 2006 14:43:48 +0000 - (Sherman Wood) Ignore generated olap4j.lib

efacbb5 Sat, 2 Sep 2006 14:42:11 +0000 - (Sherman Wood) Allow Ant binzip to work: commented out retroweaver and javadoc targets

d69ef67 Sat, 2 Sep 2006 14:12:52 +0000 - (Sherman Wood) Eclipse JDK 1.5 and build path settings

0f8fa3b Sat, 2 Sep 2006 14:08:27 +0000 - (Sherman Wood) Initial checkin from Julian.