Skip to content

Commit

Permalink
Update query-graphs to commit 70413033e (#102)
Browse files Browse the repository at this point in the history
This commit integrates the latest changes from the query-graphs project into TLV.
Since the last update, rendering of Hyper query plans was significantly
improved in query-graphs. In particular:
* Uncommon operators (tablefunction, explicitscan etc.) are rendered much nicer
* Crosslinks were added connecting, e.g., explicitscans to their corresponding
  scanned operator and earlyprobes to the corresponding join.
  • Loading branch information
vogelsgesang authored and rickcole committed Oct 4, 2018
1 parent 85e85c4 commit a4015a1
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 11 deletions.
19 changes: 17 additions & 2 deletions resources/query-graphs/query-graphs.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ html, body {
font-size: 13px;
font-weight: bold;
font-family: Monaco, Consolas, monospace;
background-color: #fff;
background-color: rgba(255, 255, 255, 0.85);
padding: 12px;
border: thin solid #eee;
border-radius: 5px;
Expand Down Expand Up @@ -150,7 +150,7 @@ html, body {
font-size: 13px;
font-weight: bold;
font-family: Monaco, Consolas, monospace;
background-color: #fff;
background-color: rgba(255, 255, 255, 0.85);
padding: 12px;
border: thin solid #eee;
border-radius: 5px;
Expand All @@ -175,6 +175,19 @@ html, body {
stroke-width: 1;
}

.crosslink {
fill: none;
stroke: #ccc;
stroke-width: 0.5;
stroke-dasharray: 4 4;
}

.crosslink-highlighted {
fill: none;
stroke: hsl(309, 84%, 36%);
stroke-width: 1.0;
}

.link-and-arrow {
marker-start: url(#arrow);
stroke-dasharray: 5 3;
Expand Down Expand Up @@ -233,6 +246,8 @@ rect.table-border {
}
text.table-text {
text-anchor: middle;
font-size: 7px;
font-weight: bold;
font-family: Monaco, Consolas, monospace;
stroke: none;
fill: hsl(0, 0%, 40%);
Expand Down
Loading

0 comments on commit a4015a1

Please sign in to comment.