Skip to content

Commit

Permalink
MONDRIAN - Enabled multi-column IN's for MySQL
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//open/mondrian/": change = 8415]
  • Loading branch information
Zelaine Fong committed Dec 29, 2006
1 parent 0bdcdde commit adb73ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/mondrian/rolap/sql/SqlQuery.java
Expand Up @@ -1313,7 +1313,7 @@ public boolean requiresOrderByAlias() {
* @return true if the dialect supports multi-value IN expressions
*/
public boolean supportsMultiValueInExpr() {
return isLucidDB();
return isLucidDB() || isMySQL();
}
}

Expand Down

0 comments on commit adb73ab

Please sign in to comment.