Skip to content

Commit 45c3e2f

Browse files
committed
rename getResultInternal → prepareResultTransformData
1 parent 17d7ea8 commit 45c3e2f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/cubejs-api-gateway/src/gateway.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1582,11 +1582,11 @@ class ApiGateway {
15821582
}
15831583

15841584
/**
1585-
* Convert adapter's result and other request parameters to a final
1585+
* Prepare adapter's result and other transform parameters for a final
15861586
* result object.
15871587
* @internal
15881588
*/
1589-
private async getResultInternal(
1589+
private async prepareResultTransformData(
15901590
context: RequestContext,
15911591
queryType: QueryType,
15921592
normalizedQuery: NormalizedQuery,
@@ -1765,7 +1765,7 @@ class ApiGateway {
17651765
metaConfigResult, normalizedQuery
17661766
);
17671767

1768-
return this.getResultInternal(
1768+
return this.prepareResultTransformData(
17691769
context,
17701770
queryType,
17711771
normalizedQuery,
@@ -1943,7 +1943,7 @@ class ApiGateway {
19431943
sqlQueries[index],
19441944
);
19451945

1946-
return this.getResultInternal(
1946+
return this.prepareResultTransformData(
19471947
context,
19481948
queryType,
19491949
normalizedQuery,

0 commit comments

Comments
 (0)