Returning start/end and elapsed time with batch summaries (#92)

Returning start/end and elapsed timestamps for batches with the batch summary.
This commit is contained in:
Benjamin Russell
2016-10-13 12:14:22 -07:00
committed by GitHub
parent 2f876714ed
commit 2eeed98a63
3 changed files with 54 additions and 0 deletions

View File

@@ -10,6 +10,21 @@ namespace Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts
/// </summary>
public class BatchSummary
{
/// <summary>
/// Localized timestamp for how long it took for the execution to complete
/// </summary>
public string ExecutionElapsed { get; set; }
/// <summary>
/// Localized timestamp for when the execution completed.
/// </summary>
public string ExecutionEnd { get; set; }
/// <summary>
/// Localized timestamp for when the execution started.
/// </summary>
public string ExecutionStart { get; set; }
/// <summary>
/// Whether or not the batch was successful. True indicates errors, false indicates success
/// </summary>