forked from olap4j/olap4j
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: https://olap4j.svn.sourceforge.net/svnroot/olap4j/trunk@366 c6a108a4-781c-0410-a6c6-c2d559e19af0
- Loading branch information
1 parent
b2c7edf
commit 1741dbc
Showing
2 changed files
with
109 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/* | ||
// This software is subject to the terms of the Eclipse Public License v1.0 | ||
// Agreement, available at the following URL: | ||
// http://www.eclipse.org/legal/epl-v10.html. | ||
// Copyright (C) 2010-2010 Julian Hyde | ||
// All Rights Reserved. | ||
// You must accept the terms of that agreement to use this software. | ||
*/ | ||
package org.olap4j.impl; | ||
|
||
/** | ||
* Holder for constants which indicate whether particular issues have been | ||
* fixed. Reference one of those constants in your code, and it is clear which | ||
* code can be enabled when the bug is fixed. Generally a constant is removed | ||
* when its bug is fixed. | ||
* | ||
* <p>Developers, please use the naming format | ||
* <code>Bug<Product><Number>Fixed</code> for constants, and include | ||
* a hyperlink to the bug database record in the comments. Product will usually | ||
* be "Olap4j", but sometimes we are blocked by bugs in other components, such | ||
* as the JDK or Mondrian. | ||
* | ||
* <h3>Cleanup items</h3> | ||
* | ||
* The following is a list of cleanup items. They are not bugs per se: | ||
* functionality is not wrong, just the organization of the code. If they were | ||
* bugs, they would be in jira. It makes sense to have the list here, so that | ||
* referenced class, method and variable names show up as uses in code searches. | ||
* | ||
* <dl> | ||
* | ||
* <dt>Split out Test Compatability Kit (TCK)</dt> | ||
* <dd>Factor parts of olap4j test suite that depend on an olap4j implementation | ||
* (such as mondrian) into a jar that can be invoked by that implementation. | ||
* Then each implementation is responsible for running the TCK. It can also | ||
* manage which version of the TCK it implements, so that it does not have to | ||
* be absolutely up to date. Some parts of the olap4j suite do not stretch the | ||
* capabilities of the OLAP engine or driver, and will remain part of | ||
* the olap4j suite, using mondrian as reference implementation.</dd> | ||
* | ||
* </dl> | ||
* | ||
* @author jhyde | ||
* @version $Id$ | ||
* @since Nov 9, 2010 | ||
*/ | ||
public abstract class Bug { | ||
/** | ||
* Whether | ||
* <a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3106220&group_id=168953&atid=848534">bug 3106220, | ||
* "Complex selection context broken"</a> | ||
* is fixed. | ||
*/ | ||
public static final boolean BugOlap4j3106220Fixed = false; | ||
} | ||
|
||
// End Bug.java |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters