Duplicate Result sets (#3620)

* remove debouncing and echoing to fix rendering bug

* fix access of internal member

* fix issue with using splice rather than slice

* fix compile issues
This commit is contained in:
Anthony Dresser
2019-01-10 13:44:14 -08:00
committed by GitHub
parent a0d84f383c
commit 18f7662209
3 changed files with 33 additions and 50 deletions

View File

@@ -391,10 +391,8 @@ export class QueryModelService implements IQueryModelService {
queryRunner.addListener(QREvents.RESULT_SET, resultSet => {
this._fireQueryEvent(ownerUri, resultSetEventType, resultSet);
});
queryRunner.onResultSetUpdate(resultSetSummaries => {
resultSetSummaries.forEach(resultSet => {
this._fireQueryEvent(ownerUri, resultSetEventType, resultSet);
});
queryRunner.onResultSetUpdate(resultSetSummary => {
this._fireQueryEvent(ownerUri, resultSetEventType, resultSetSummary);
});
queryRunner.addListener(QREvents.BATCH_START, batch => {
let link = undefined;