Skip to content

Commit

Permalink
MONDRIAN: Reverts a prior modification which enabled allowsJoinOn(). …
Browse files Browse the repository at this point in the history
…Some issues were discovered and logged as MONDRIAN-955

Also extends the documentation of RolapConnectionProperties.Catalogcontent, as proposed by a community member. It now specifies the rules which apply to escaping quotation marks.

[git-p4: depot-paths = "//open/mondrian/": change = 14375]
  • Loading branch information
lucboudreau committed Jun 13, 2011
1 parent db81914 commit 16477b6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
9 changes: 8 additions & 1 deletion src/main/mondrian/rolap/RolapConnectionProperties.java
Expand Up @@ -71,7 +71,14 @@ public enum RolapConnectionProperties {
* cubes, hierarchies, and so forth.
* Catalogs are described in <a target="_top"
* href="{@docRoot}/../schema.html">the Schema Guide</a>.
* See also {@link #Catalog}.
*
* <p>When using this property, quote its value with either single or
* double quotes, then escape all occurrences of that character within the
* catalog content by using double single/double quotes. ie:
*
* <p>&nbsp;&nbsp;CatalogContent="&lt;Schema name=""My Schema""/&gt;"
*
* <p>See also {@link #Catalog}.
*/
CatalogContent,

Expand Down
6 changes: 0 additions & 6 deletions src/main/mondrian/spi/impl/InfobrightDialect.java
Expand Up @@ -99,12 +99,6 @@ public boolean supportsMultiValueInExpr() {
// does not.
return false;
}

public boolean allowsJoinOn() {
// Infobright performs much better when using joins in the
// FROM clause rather than joining the tables in the WHERE clause.
return true;
}
}

// End InfobrightDialect.java

0 comments on commit 16477b6

Please sign in to comment.