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 {
123123 } ;
124124
125125 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` ;
127127
128128 return cube . joins
129129 . filter ( join => {
@@ -198,7 +198,7 @@ export class JoinGraph implements CompilerInterface {
198198 return this . builtJoins [ key ] ;
199199 }
200200
201- protected cubeFromPath ( cubePath ) {
201+ protected cubeFromPath ( cubePath : JoinHint ) : string {
202202 if ( Array . isArray ( cubePath ) ) {
203203 return cubePath [ cubePath . length - 1 ] ;
204204 }
You can’t perform that action at this time.
0 commit comments