From 76642a2b73d92d3b67e061cece4689af44cc41f5 Mon Sep 17 00:00:00 2001 From: Erin Stellato <98599126+erinstellato-ms@users.noreply.github.com> Date: Fri, 25 Aug 2023 23:59:57 -0400 Subject: [PATCH] Revert "Remove SQLCMD button from preview (#24224)" (#24228) This reverts commit d3b84a3646facb7845633649d6ac7a4400fcaca7. --- src/sql/workbench/contrib/query/browser/queryEditor.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sql/workbench/contrib/query/browser/queryEditor.ts b/src/sql/workbench/contrib/query/browser/queryEditor.ts index 934f860134..fa2f454012 100644 --- a/src/sql/workbench/contrib/query/browser/queryEditor.ts +++ b/src/sql/workbench/contrib/query/browser/queryEditor.ts @@ -337,11 +337,11 @@ export class QueryEditor extends EditorPane { { element: Taskbar.createTaskbarSeparator() }, { action: this._estimatedQueryPlanAction }, { action: this._toggleActualExecutionPlanMode }, - { action: this._parseQueryAction }, - { action: this._toggleSqlcmdMode } + { action: this._parseQueryAction } ); if (previewFeaturesEnabled) { content.push( + { action: this._toggleSqlcmdMode }, { action: this._exportAsNotebookAction } ); }