Disable the vscode SQL notebook controller since it breaks query editor. (#22061)

This commit is contained in:
Cory Rivera
2023-02-28 12:18:38 -08:00
committed by GitHub
parent 0413b95343
commit 2ca093f15f

View File

@@ -22,7 +22,7 @@ import { IconPathHelper } from './iconHelper';
import * as nls from 'vscode-nls';
import { INotebookConvertService } from './notebookConvert/notebookConvertService';
import { registerTableDesignerCommands } from './tableDesigner/tableDesigner';
import { SqlNotebookController } from './sqlNotebook/sqlNotebookController';
// import { SqlNotebookController } from './sqlNotebook/sqlNotebookController';
import { registerObjectManagementCommands } from './objectManagement/commands';
import { TelemetryActions, TelemetryReporter, TelemetryViews } from './telemetry';
@@ -115,7 +115,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<IExten
registerTableDesignerCommands(appContext);
registerObjectManagementCommands(appContext);
context.subscriptions.push(new SqlNotebookController());
// context.subscriptions.push(new SqlNotebookController()); Temporarily disabled due to breaking query editor
context.subscriptions.push(TelemetryReporter);