We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 254931b commit 01238b8Copy full SHA for 01238b8
testsrc/org/olap4j/ConnectionTest.java
@@ -677,11 +677,17 @@ public void testPreparedStatement() throws SQLException {
677
}
678
679
680
+ if (tester.getFlavor() == Tester.Flavor.XMLA) // TODO: upgrade mondrian
681
+ assertEquals("Sales", pstmt.getCube().getName());
682
+
683
// Check metadata exists. (Support for this method is optional.)
684
final CellSetMetaData metaData = pstmt.getMetaData();
685
+ assertEquals("Sales", metaData.getCube().getName());
686
687
CellSet cellSet = pstmt.executeQuery();
688
assertEquals(metaData, cellSet.getMetaData());
689
690
691
String s = TestContext.toString(cellSet);
692
TestContext.assertEqualsVerbose(
693
"Axis #0:\n"
0 commit comments