Skip to content

Commit

Permalink
MONDRIAN - changing NativizeMinThreshold default value from 200000 to…
Browse files Browse the repository at this point in the history
… 100000

[git-p4: depot-paths = "//open/mondrian/": change = 13221]
  • Loading branch information
Matt Campbell authored and Matt Campbell committed Dec 10, 2009
1 parent 41a4065 commit 84ac1c1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/configuration.html
Expand Up @@ -525,7 +525,7 @@ <h3>1.1 Property list<a name="Property_list">&nbsp;</a></h3>
<a href="api/mondrian/olap/MondrianProperties.html#NativizeMinThreshold">
mondrian.native.NativizeMinThreshold</a></code></td>
<td>int</td>
<td>200000</td>
<td>100000</td>
<td>
<p>Disables native evaluation of a NativizeSet espression when the expression's
expected cardinality falls below this value.</p>
Expand Down
2 changes: 1 addition & 1 deletion mondrian.properties
Expand Up @@ -487,6 +487,6 @@ mondrian.rolap.iterationLimit=0
# though the expected cardinality falls above this threshold. In this case
# the query will be natively evaluated.
#
# mondrian.native.NativizeMinThreshold=200000
# mondrian.native.NativizeMinThreshold=100000

# End mondrian.properties
2 changes: 1 addition & 1 deletion src/main/mondrian/olap/MondrianProperties.java
Expand Up @@ -1167,7 +1167,7 @@ private void load(final PropertySource source) {
new IntegerProperty(
this,
"mondrian.native.NativizeMinThreshold",
200000);
100000);

/**
*/
Expand Down

0 comments on commit 84ac1c1

Please sign in to comment.