Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sql: fix some format mistakes #1277

Merged
merged 10 commits into from
Apr 25, 2019
Prev Previous commit
Next Next commit
Remove unnecessary space
  • Loading branch information
IzabelWang authored Apr 25, 2019
commit e0ac4827305235edcb17d3e612815369c31ace7f
10 changes: 5 additions & 5 deletions sql/slow-query.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,11 +157,11 @@ tidb > select query, query_time, stats from INFORMATION_SCHEMA.`SLOW_QUERY` wher
+-----------------------------+-------------+---------------------------------+
| query | query_time | stats |
+-----------------------------+-------------+---------------------------------+
| select * from t1 where a=1; | 0.302558006 | t1: pseudo |
| select * from t1 where a=2; | 0.401313532 | t1: pseudo |
| select * from t1 where a>2; | 0.602011247 | t1: pseudo |
| select * from t1 where a>3; | 0.50077719 | t1: pseudo |
| select * from t1 join t2; | 0.931260518 | t1: 407872303825682445,t2: pseudo |
| select * from t1 where a=1; | 0.302558006 | t1:pseudo |
| select * from t1 where a=2; | 0.401313532 | t1:pseudo |
| select * from t1 where a>2; | 0.602011247 | t1:pseudo |
| select * from t1 where a>3; | 0.50077719 | t1:pseudo |
| select * from t1 join t2; | 0.931260518 | t1:407872303825682445,t2: pseudo |
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why leave one space for this line?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry & addressed~

+-----------------------------+-------------+---------------------------------+
```

Expand Down