File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/cubejs-schema-compiler/src/compiler Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ export class JoinGraph implements CompilerInterface {
123
123
} ;
124
124
125
125
const joinRequired =
126
- ( v ) => `primary key for '${ v } ' is required when join is defined in order to make aggregates work properly` ;
126
+ ( v : string ) => `primary key for '${ v } ' is required when join is defined in order to make aggregates work properly` ;
127
127
128
128
return cube . joins
129
129
. filter ( join => {
@@ -198,7 +198,7 @@ export class JoinGraph implements CompilerInterface {
198
198
return this . builtJoins [ key ] ;
199
199
}
200
200
201
- protected cubeFromPath ( cubePath ) {
201
+ protected cubeFromPath ( cubePath : JoinHint ) : string {
202
202
if ( Array . isArray ( cubePath ) ) {
203
203
return cubePath [ cubePath . length - 1 ] ;
204
204
}
You can’t perform that action at this time.
0 commit comments