File tree Expand file tree Collapse file tree
extensions/ql-vscode/src/data-extensions-editor Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,7 +28,10 @@ import { App } from "../common/app";
2828import { showResolvableLocation } from "../databases/local-databases/locations" ;
2929import { decodeBqrsToExternalApiUsages } from "./bqrs" ;
3030import { redactableError } from "../common/errors" ;
31- import { readQueryResults , runQuery } from "./external-api-usage-queries" ;
31+ import {
32+ readQueryResults ,
33+ runExternalApiQueries ,
34+ } from "./external-api-usage-queries" ;
3235import { ExternalApiUsage , Usage } from "./external-api-usage" ;
3336import { ModeledMethod } from "./modeled-method" ;
3437import { ExtensionPack } from "./shared/extension-pack" ;
@@ -304,7 +307,7 @@ export class DataExtensionsEditorView extends AbstractWebview<
304307 async ( progress ) => {
305308 try {
306309 const cancellationTokenSource = new CancellationTokenSource ( ) ;
307- const queryResult = await runQuery ( this . mode , {
310+ const queryResult = await runExternalApiQueries ( this . mode , {
308311 cliServer : this . cliServer ,
309312 queryRunner : this . queryRunner ,
310313 databaseItem : this . databaseItem ,
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ export async function prepareExternalApiQuery(
5656 return true ;
5757}
5858
59- export async function runQuery (
59+ export async function runExternalApiQueries (
6060 mode : Mode ,
6161 {
6262 cliServer,
You can’t perform that action at this time.
0 commit comments