[sqllab] add support for results backends (#1377)

* [sqllab] add support for results backends

Long running SQL queries (beyond the scope of a web request) can now use
a k/v store to hold their result sets.

* Addressing comments, fixed js tests

* Fixing mysql has gone away

* Adressing more comments

* Touchups
This commit is contained in:
Maxime Beauchemin
2016-10-20 23:40:24 -07:00
committed by GitHub
parent 7dfe891cc1
commit 6fb3b305ad
27 changed files with 788 additions and 365 deletions

View File

@@ -238,3 +238,19 @@ div.tablePopover:hover {
margin-bottom: 5px;
padding: 5px 10px;
}
.QueryTable .label {
margin-top: 5px;
}
.ResultsModal .modal-body {
min-height: 600px;
}
.modal-body {
overflow: auto;
}
a.Link {
cursor: pointer;
}