Skip to content

Commit

Permalink
MONDRIAN: Oops, missed one.
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//open/mondrian/": change = 14657]
  • Loading branch information
julianhyde committed Oct 4, 2011
1 parent d469e96 commit 571a0f7
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions testsrc/main/mondrian/rolap/sql/SqlQueryTest.java
Expand Up @@ -110,14 +110,13 @@ public void testToStringForForcedIndexHint() {
+ " FORCE INDEX (myIndex)"
+ " where a=b";
String formattedMysql =
"select " + "\n"
+ " c1 as `c0`, " + "\n"
+ " c2 as `c1`" + "\n"
+ "from " + "\n"
+ " `s`.`t1` as `t1alias`"
+ " FORCE INDEX (myIndex)" + "\n"
+ "where " + "\n"
+ " a=b" + "\n";
"select\n"
+ " c1 as `c0`,\n"
+ " c2 as `c1`\n"
+ "from\n"
+ " `s`.`t1` as `t1alias` FORCE INDEX (myIndex)\n"
+ "where\n"
+ " a=b";

SqlPattern[] unformattedSqlPatterns = {
new SqlPattern(
Expand Down

0 comments on commit 571a0f7

Please sign in to comment.