File tree 2 files changed +12
-0
lines changed
2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,14 @@ public abstract class Bug {
52
52
* is fixed.
53
53
*/
54
54
public static final boolean BugOlap4j3106220Fixed = false ;
55
+
56
+ /**
57
+ * Whether
58
+ * <a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3126853&group_id=168953&atid=848534">bug 3126853,
59
+ * "ConnectionTest.testCellSetBug hangs"</a>
60
+ * is fixed.
61
+ */
62
+ public static final boolean BugOlap4j3126853Fixed = false ;
55
63
}
56
64
57
65
// End Bug.java
Original file line number Diff line number Diff line change 11
11
12
12
import junit .framework .AssertionFailedError ;
13
13
import junit .framework .TestCase ;
14
+ import org .olap4j .impl .Bug ;
14
15
import org .olap4j .impl .Olap4jUtil ;
15
16
import org .olap4j .driver .xmla .*;
16
17
import org .olap4j .mdx .*;
@@ -2467,6 +2468,9 @@ public void testStatementTimeout() throws Throwable {
2467
2468
}
2468
2469
2469
2470
public void testCellSetBug () throws SQLException {
2471
+ if (!Bug .BugOlap4j3126553Fixed ) {
2472
+ return ;
2473
+ }
2470
2474
connection = tester .createConnection ();
2471
2475
OlapConnection olapConnection =
2472
2476
tester .getWrapper ().unwrap (connection , OlapConnection .class );
You can’t perform that action at this time.
0 commit comments