Skip to content

Commit 5459a68

Browse files
committed
Query -> Statement
Signed-off-by: worksofliam <[email protected]>
1 parent d0276db commit 5459a68

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/views/results/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -239,13 +239,13 @@ async function runHandler(options?: StatementInfo) {
239239

240240
const textDoc = await vscode.workspace.openTextDocument({ language: statementDetail.qualifier, content });
241241
await vscode.window.showTextDocument(textDoc);
242-
resultSetProvider.setLoadingText(`Query executed with ${data.length} rows returned.`, false);
242+
resultSetProvider.setLoadingText(`Statement executed with ${data.length} rows returned.`, false);
243243
break;
244244
}
245245

246246
} else {
247-
vscode.window.showInformationMessage(`Query executed with no data returned.`);
248-
resultSetProvider.setLoadingText(`Query executed with no data returned.`);
247+
vscode.window.showInformationMessage(`Statement executed with no data returned.`);
248+
resultSetProvider.setLoadingText(`Statement executed with no data returned.`);
249249
}
250250
}
251251

0 commit comments

Comments
 (0)