mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Store query history items as data, not tree node (#20195)
This commit is contained in:
13
extensions/query-history/src/queryHistoryItem.ts
Normal file
13
extensions/query-history/src/queryHistoryItem.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
import * as azdata from 'azdata';
|
||||
|
||||
export interface QueryHistoryItem {
|
||||
readonly queryText: string,
|
||||
readonly connectionProfile: azdata.connection.ConnectionProfile | undefined,
|
||||
readonly timestamp: Date,
|
||||
readonly isSuccess: boolean
|
||||
}
|
||||
Reference in New Issue
Block a user