You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to Kylin can only accept sql with explicit join, I have tried to apply the patch of kylin dialect for mondrian-4.4-lagunitas https://github.com/mustangore/kylin-mondrian-interaction ,then I put the jar in {Pentaho_Home}/tomcat/webapps/pentaho/WEB-INF/lib, but it occurs error: java.lang.NoSuchFieldException: cubes.
Then I find the latest mondrian(8.1) and apply the patch of mondrian-4.4-lagunitas, but it doesn't work at all.
My mdx is :
WITH
SET [~ROWS] AS
{[DimOrganization.default].[EducationBureau].Members}
SELECT
NON EMPTY {[Measures].[RunTime]} ON COLUMNS,
NON EMPTY [~ROWS] ON ROWS
FROM [RunInfoCube]
And the sql translated is :
sql=[select "DIMORGANIZATION"."EDUBUREAUNAME" as "c0", sum("FACTINFO"."RUNTIME") as "m0" from "DEFAULT"."DIMORGANIZATION" as "DIMORGANIZATION", "DEFAULT"."FACTINFO" as "FACTINFO" where "FACTINFO"."ORGANIZATIONKEY" = "DIMORGANIZATION"."ORGANIZATIONKEY" and "DIMORGANIZATION"."EDUBUREAUNAME" = 'Tedsiud School' group by "DIMORGANIZATION"."EDUBUREAUNAME"]
Version:
Pentaho 7.x
Kylin 2.x
The text was updated successfully, but these errors were encountered:
I have tried the same steps without luck. I have also updated "mondrian.spi.Dialect" with the value "mondrian.spi.impl.KylinDialect".
But there is also another unresolved problem with master branch. Code doesn't honor "allowsJoinOn" feature. Please refer to: https://jira.pentaho.com/browse/MONDRIAN-955. I have modified it, but it keeps generating SQL in the same way.
Also i think case #480 is unresolved and they're closing.
Due to Kylin can only accept sql with explicit join, I have tried to apply the patch of kylin dialect for mondrian-4.4-lagunitas https://github.com/mustangore/kylin-mondrian-interaction ,then I put the jar in {Pentaho_Home}/tomcat/webapps/pentaho/WEB-INF/lib, but it occurs error: java.lang.NoSuchFieldException: cubes.
Then I find the latest mondrian(8.1) and apply the patch of mondrian-4.4-lagunitas, but it doesn't work at all.
My mdx is :
WITH
SET [~ROWS] AS
{[DimOrganization.default].[EducationBureau].Members}
SELECT
NON EMPTY {[Measures].[RunTime]} ON COLUMNS,
NON EMPTY [~ROWS] ON ROWS
FROM [RunInfoCube]
And the sql translated is :
sql=[select "DIMORGANIZATION"."EDUBUREAUNAME" as "c0", sum("FACTINFO"."RUNTIME") as "m0" from "DEFAULT"."DIMORGANIZATION" as "DIMORGANIZATION", "DEFAULT"."FACTINFO" as "FACTINFO" where "FACTINFO"."ORGANIZATIONKEY" = "DIMORGANIZATION"."ORGANIZATIONKEY" and "DIMORGANIZATION"."EDUBUREAUNAME" = 'Tedsiud School' group by "DIMORGANIZATION"."EDUBUREAUNAME"]
Version:
Pentaho 7.x
Kylin 2.x
The text was updated successfully, but these errors were encountered: