-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
31 lines (25 loc) · 1.22 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<title>Ti-Explain</title>
<script src="ti-explain.js"></script>
<link rel="stylesheet" href="ti-explain.css">
<head>
<body>
<h1>
<!-- img src="https://docs.pingcap.com/static/1d8632a2b41f24161ffae995844556f2/pingcap-logo.svg" width="106px" -->
Ti-Explain</h1>
This tool will try to help you to understand the EXPLAIN output of TiDB.<br>
See also <a href="https://docs.pingcap.com/tidb/dev/explain-walkthrough">the explain walkthrough</a> in the docs for more background.<br>
This tool is available on <a href="https://dveeden.github.io/ti-explain/">https://dveeden.github.io/ti-explain/</a>.<br>
The code is available on <a href="https://github.com/dveeden/ti-explain">https://github.com/dveeden/ti-explain</a>.<br>
Paste the output of "EXPLAIN" or "EXPLAIN ANALYZE" into the text field below and click "Check Explain".<br>
<textarea rows="10" cols="120" id="explaintext"></textarea><br />
<button onclick="checkExplain()">Check Explain</button>
<button onclick="clearExplain()">Clear</button>
<button onclick="loadExample()">Load Example</button>
<div id="tree"><pre id="treepre"></pre></div>
<div id="simple"><table id="simpletable" class="simpletable"></table></div>
<div id="content"></div>
</body>
</html>