mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-23 09:35:39 -05:00
Notebooks: Fix query results not displaying table rows (#13488)
* fix PQSQL queries not displaying rows * comment * change comment and fix unit test
This commit is contained in:
@@ -527,6 +527,10 @@ export class SQLFuture extends Disposable implements FutureInternal {
|
||||
this._dataToSaveMap.set(key, data);
|
||||
this._rowsMap.set(key, []);
|
||||
this.sendIOPubMessage(data, set);
|
||||
// If rows are returned in the initial result set, make sure to convert and send to notebook
|
||||
if (set.rowCount > 0) {
|
||||
this.handleResultSetUpdate(set);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user