Skip to content

Commit

Permalink
Merge pull request pentaho#1163 from bcostahitachivantara/ANALYZER-3828
Browse files Browse the repository at this point in the history
[ANALYZER-3828] - Saving an inline model breaks localization
  • Loading branch information
mkambol authored Oct 30, 2019
2 parents 5fcda5d + 0efd60d commit 17f6a1e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions mondrian/src/main/java/mondrian/rolap/RolapSchemaPool.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// You must accept the terms of that agreement to use this software.
//
// Copyright (C) 2001-2005 Julian Hyde and others
// Copyright (C) 2005-2017 Hitachi Vantara and others
// Copyright (C) 2005-2019 Hitachi Vantara and others
// All Rights Reserved.
*/
package mondrian.rolap;
Expand Down Expand Up @@ -366,7 +366,9 @@ private static String getSchemaContent(
}
}
else {
catalogStr = catalogStr = processDynamicSchema( dynProcName, null, catalogStr, connectInfo);
if (!Util.isEmpty(dynProcName)) {
catalogStr = processDynamicSchema( dynProcName, null, catalogStr, connectInfo );
}
}

return catalogStr;
Expand Down

0 comments on commit 17f6a1e

Please sign in to comment.