Skip to content

Commit

Permalink
MONDRIAN: RolapDimension, improved (?) recognition of "time" by testi…
Browse files Browse the repository at this point in the history
…ng the german "Zeit" as well.

[git-p4: depot-paths = "//open/mondrian/": change = 1195]
  • Loading branch information
hhaas committed Jan 23, 2004
1 parent d236b81 commit dfa5d3e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/mondrian/rolap/RolapDimension.java
Expand Up @@ -64,7 +64,9 @@ class RolapDimension extends DimensionBase
this.name = name;
this.uniqueName = Util.makeFqName(name);
this.description = null;
this.dimensionType = name.equals("Time") ? TIME : STANDARD;
// recognition of a time dimension should be improved
this.dimensionType = (name.equals("Time") || name.equals("Zeit")) ?
TIME : STANDARD;
this.hierarchies = new RolapHierarchy[0];
}

Expand Down

0 comments on commit dfa5d3e

Please sign in to comment.