Merge branch 'vdimir-play' of github.com:ClickHouse/ClickHouse into vdimir-play

This commit is contained in:
Alexey Milovidov 2022-05-02 03:27:18 +02:00
commit cdf858c6af

View File

@ -275,7 +275,6 @@
td.transposed
{
max-width: none;
/* The content is cut unless you hover. */
overflow: auto;
white-space: pre-wrap;
}
@ -417,8 +416,6 @@
/// This is to avoid race conditions.
let request_num = 0;
let last_response = null;
/// Save query in history only if it is different.
let previous_query = '';
@ -558,7 +555,6 @@
function clear()
{
last_response = null;
let table = document.getElementById('data-table');
while (table.firstChild) {
table.removeChild(table.lastChild);
@ -608,7 +604,6 @@
{
clear();
last_response = response;
let stats = document.getElementById('stats');
const seconds = response.statistics.elapsed.toFixed(3);
const rows = response.statistics.rows_read;