Skip to content

Commit cf1dd35

Browse files
authored
chore(bigquery-driver): Fix tests after revert read-only implementation as LIMIT 1 generate too much usage (#6524)
* chore(bigquery-driver): Fix tests after revert read-only implementation as LIMIT 1 generate too much usage * chore(bigquery-driver): Fix tests after revert read-only implementation as LIMIT 1 generate too much usage
1 parent 26ce041 commit cf1dd35

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

packages/cubejs-bigquery-driver/src/BigQueryDriver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import {
2020
} from '@google-cloud/bigquery';
2121
import { Bucket, Storage } from '@google-cloud/storage';
2222
import {
23-
BaseDriver, DownloadTableCSVData,
23+
BaseDriver, DownloadQueryResultsOptions, DownloadQueryResultsResult, DownloadTableCSVData,
2424
DriverInterface, QueryOptions, StreamTableData,
2525
} from '@cubejs-backend/base-driver';
2626
import { Query } from '@google-cloud/bigquery/build/src/bigquery';

packages/cubejs-testing-drivers/fixtures/bigquery.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,19 @@
6666
]
6767
},
6868
"skip": [
69+
"---------------------------------------",
70+
"Driver tests ",
71+
"---------------------------------------",
72+
"must download query from the data source via memory",
73+
"must download query from the data source via stream",
74+
6975
"---------------------------------------",
7076
"Core tests ",
7177
"---------------------------------------",
78+
"for the Customers.RollingExternal",
79+
"for the Customers.RollingInternal",
80+
"for the ECommerce.SimpleAnalysisExternal",
81+
"for the ECommerce.SimpleAnalysisInternal",
7282
"for the ECommerce.TimeAnalysisExternal",
7383
"for the ECommerce.TimeAnalysisInternal",
7484

0 commit comments

Comments
 (0)