We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46eeeb9 commit f51003bCopy full SHA for f51003b
packages/cubejs-backend-native/js/ResultWrapper.ts
@@ -72,7 +72,11 @@ export class ResultWrapper {
72
73
private getArray(): ResultRow[] {
74
if (!this.cache) {
75
- this.cache = getCubestoreResult(this.nativeReference);
+ if (this.isNative) {
76
+ this.cache = getCubestoreResult(this.nativeReference);
77
+ } else {
78
+ this.cache = this.jsResult;
79
+ }
80
this.cached = true;
81
}
82
return this.cache;
0 commit comments