@malloydata/db-bigquery 0.0.236-dev250214000926 → 0.0.236-dev250221002909
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -56,7 +56,7 @@ export declare class BigQueryConnection extends BaseConnection implements Connec
|
|
|
56
56
|
private projectId;
|
|
57
57
|
private queryOptions?;
|
|
58
58
|
private config;
|
|
59
|
-
private location
|
|
59
|
+
private location?;
|
|
60
60
|
constructor(option: BigQueryConnectionOptions, queryOptions?: QueryOptionsReader);
|
|
61
61
|
constructor(name: string, queryOptions?: QueryOptionsReader, config?: BigQueryConnectionConfiguration);
|
|
62
62
|
get dialectName(): string;
|
|
@@ -119,7 +119,7 @@ class BigQueryConnection extends connection_1.BaseConnection {
|
|
|
119
119
|
this.projectId = config.projectId || this.bigQuery.projectId;
|
|
120
120
|
this.queryOptions = queryOptions;
|
|
121
121
|
this.config = config;
|
|
122
|
-
this.location = config.location
|
|
122
|
+
this.location = config.location;
|
|
123
123
|
}
|
|
124
124
|
get dialectName() {
|
|
125
125
|
return 'standardsql';
|
|
@@ -514,7 +514,7 @@ class BigQueryConnection extends connection_1.BaseConnection {
|
|
|
514
514
|
query: sqlCommand,
|
|
515
515
|
dryRun,
|
|
516
516
|
});
|
|
517
|
-
const url = `https://console.cloud.google.com/bigquery?project=${this.billingProjectId}&j=bq:${
|
|
517
|
+
const url = `https://console.cloud.google.com/bigquery?project=${this.billingProjectId}&j=bq:${job.location}:${job.id}&page=queryresults`;
|
|
518
518
|
return url;
|
|
519
519
|
}
|
|
520
520
|
runSQLStream(sqlCommand, { rowLimit, abortSignal } = {}) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@malloydata/db-bigquery",
|
|
3
|
-
"version": "0.0.236-
|
|
3
|
+
"version": "0.0.236-dev250221002909",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"@google-cloud/bigquery": "^7.3.0",
|
|
26
26
|
"@google-cloud/common": "^5.0.1",
|
|
27
27
|
"@google-cloud/paginator": "^5.0.0",
|
|
28
|
-
"@malloydata/malloy": "^0.0.236-
|
|
28
|
+
"@malloydata/malloy": "^0.0.236-dev250221002909",
|
|
29
29
|
"gaxios": "^4.2.0"
|
|
30
30
|
}
|
|
31
31
|
}
|