Skip to content

Commit 95c35da

Browse files
committed
fix misaligned codeblocks
1 parent 313fb48 commit 95c35da

File tree

4 files changed

+69
-69
lines changed

4 files changed

+69
-69
lines changed

docs/dictionary/index.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ WHERE table IN ('votes')
102102
GROUP BY table
103103

104104
┌─table───────────┬─compressed_size─┬─uncompressed_size─┬─ratio─┐
105-
│ votes │ 1.25 GiB │ 3.79 GiB 3.04
105+
│ votes 1.25 GiB 3.79 GiB │ 3.04
106106
└─────────────────┴─────────────────┴───────────────────┴───────┘
107107
```
108108

@@ -215,11 +215,11 @@ FORMAT PrettyCompactMonoBlock
215215

216216

217217
┌───────Id─┬─Title─────────────────────────────────────────────────────────┬─Location──────────────┐
218-
52296928 │ Comparision between two Strings in ClickHouse │ Spain │
219-
52345137 │ How to use a file to migrate data from mysql to a clickhouse? │ 中国江苏省Nanjing Shi │
220-
61452077 │ How to change PARTITION in clickhouse │ Guangzhou, 广东省中国 │
221-
55608325 │ Clickhouse select last record without max() on all table │ Moscow, Russia │
222-
55758594 │ ClickHouse create temporary table │ Perm', Russia │
218+
52296928 │ Comparision between two Strings in ClickHouse │ Spain │
219+
52345137 │ How to use a file to migrate data from mysql to a clickhouse? │ 中国江苏省Nanjing Shi
220+
61452077 │ How to change PARTITION in clickhouse │ Guangzhou, 广东省中国
221+
55608325 │ Clickhouse select last record without max() on all table │ Moscow, Russia │
222+
55758594 │ ClickHouse create temporary table │ Perm', Russia │
223223
└──────────┴───────────────────────────────────────────────────────────────┴───────────────────────┘
224224
225225
5 rows in set. Elapsed: 0.033 sec. Processed 4.25 million rows, 82.84 MB (130.62 million rows/s., 2.55 GB/s.)
@@ -239,11 +239,11 @@ ORDER BY c DESC
239239
LIMIT 5
240240
241241
┌─location───────────────┬──────c─┐
242-
│ India │ 787814 │
243-
│ Germany │ 685347 │
244-
│ United States │ 595818 │
242+
│ India │ 787814 │
243+
│ Germany │ 685347 │
244+
│ United States │ 595818 │
245245
│ London, United Kingdom │ 538738 │
246-
│ United Kingdom │ 537699 │
246+
│ United Kingdom │ 537699 │
247247
└────────────────────────┴────────┘
248248
249249
5 rows in set. Elapsed: 0.763 sec. Processed 59.82 million rows, 239.28 MB (78.40 million rows/s., 313.60 MB/s.)

docs/managing-data/drop_partition.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -49,23 +49,23 @@ FROM system.parts
4949
WHERE `table` = 'posts'
5050

5151
┌─partition─┐
52-
2008
53-
2009
54-
2010
55-
2011
56-
2012
57-
2013
58-
2014
59-
2015
60-
2016
61-
2017
62-
2018
63-
2019
64-
2020
65-
2021
66-
2022
67-
2023
68-
2024
52+
2008
53+
2009
54+
2010
55+
2011
56+
2012
57+
2013
58+
2014
59+
2015
60+
2016
61+
2017
62+
2018
63+
2019
64+
2020
65+
2021
66+
2022
67+
2023
68+
2024
6969
└───────────┘
7070

7171
17 rows in set. Elapsed: 0.002 sec.

docs/materialized-view/incremental-materialized-view.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -57,16 +57,16 @@ ORDER BY day ASC
5757
LIMIT 10
5858

5959
┌─────────────────day─┬─UpVotes─┬─DownVotes─┐
60-
2008-07-31 00:00:00 6 0
61-
2008-08-01 00:00:00 182 50
62-
2008-08-02 00:00:00 436 107
63-
2008-08-03 00:00:00 564 100
64-
2008-08-04 00:00:001306 259
65-
2008-08-05 00:00:001368 269
66-
2008-08-06 00:00:001701 211
67-
2008-08-07 00:00:001544 211
68-
2008-08-08 00:00:001241 212
69-
2008-08-09 00:00:00 576 46
60+
2008-07-31 00:00:0060
61+
2008-08-01 00:00:0018250
62+
2008-08-02 00:00:00436107
63+
2008-08-03 00:00:00564100
64+
2008-08-04 00:00:00 1306 259
65+
2008-08-05 00:00:00 1368 269
66+
2008-08-06 00:00:00 1701 211
67+
2008-08-07 00:00:00 1544 211
68+
2008-08-08 00:00:00 1241 212
69+
2008-08-09 00:00:0057646
7070
└─────────────────────┴─────────┴───────────┘
7171

7272
10 rows in set. Elapsed: 0.133 sec. Processed 238.98 million rows, 2.15 GB (1.79 billion rows/s., 16.14 GB/s.)
@@ -121,7 +121,7 @@ FROM up_down_votes_per_day
121121
FINAL
122122

123123
┌─count()─┐
124-
5723
124+
5723
125125
└─────────┘
126126
```
127127

@@ -151,16 +151,16 @@ GROUP BY Day
151151
ORDER BY Day ASC
152152
LIMIT 10
153153
┌────────Day─┬─UpVotes─┬─DownVotes─┐
154-
2008-07-31 6 0
155-
2008-08-01182 50
156-
2008-08-02436 107
157-
2008-08-03564 100
158-
2008-08-041306 259
159-
2008-08-051368 269
160-
2008-08-061701 211
161-
2008-08-071544 211
162-
2008-08-081241 212
163-
2008-08-09576 46
154+
2008-07-3160
155+
2008-08-01 182 50
156+
2008-08-02 436 107
157+
2008-08-03 564 100
158+
2008-08-04 1306 259
159+
2008-08-05 1368 269
160+
2008-08-06 1701 211
161+
2008-08-07 1544 211
162+
2008-08-08 1241 212
163+
2008-08-09 576 46
164164
└────────────┴─────────┴───────────┘
165165

166166
10 rows in set. Elapsed: 0.010 sec. Processed 8.97 thousand rows, 89.68 KB (907.32 thousand rows/s., 9.07 MB/s.)
@@ -189,18 +189,18 @@ GROUP BY Day
189189
ORDER BY Day DESC
190190
LIMIT 10
191191

192-
┌─────────────────Day─┬────────Score_99th─┬────AvgCommentCount─┐
192+
┌─────────────────Day─┬────────Score_99th─┬────AvgCommentCount─┐
193193
1. │ 2024-03-31 00:00:005.237000000000081.3429811866859624
194-
2. │ 2024-03-30 00:00:00 51.3097158891616976
194+
2. │ 2024-03-30 00:00:0051.3097158891616976
195195
3. │ 2024-03-29 00:00:005.788999999999761.2827635327635327
196-
4. │ 2024-03-28 00:00:00 71.277746158224246
196+
4. │ 2024-03-28 00:00:0071.277746158224246
197197
5. │ 2024-03-27 00:00:005.7389999999995781.2113264918282023
198-
6. │ 2024-03-26 00:00:00 61.3097536945812809
199-
7. │ 2024-03-25 00:00:00 61.2836721018539201
198+
6. │ 2024-03-26 00:00:0061.3097536945812809
199+
7. │ 2024-03-25 00:00:0061.2836721018539201
200200
8. │ 2024-03-24 00:00:005.2789999999999961.2931667891256429
201201
9. │ 2024-03-23 00:00:006.2530000000001561.334061135371179
202202
10. │ 2024-03-22 00:00:009.3109999999996941.2388059701492538
203-
└─────────────────────┴───────────────────┴────────────────────┘
203+
└─────────────────────┴───────────────────┴────────────────────┘
204204

205205
10 rows in set. Elapsed: 0.113 sec. Processed 59.82 million rows, 777.65 MB (528.48 million rows/s., 6.87 GB/s.)
206206
Peak memory usage: 658.84 MiB.

docs/use-cases/observability/managing-data.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -388,11 +388,11 @@ ORDER BY c DESC
388388
LIMIT 5
389389

390390
┌─Status─┬────────c─┐
391-
20038319300
392-
3041360912
393-
302799340
394-
404420044
395-
301270212
391+
20038319300
392+
3041360912
393+
302799340
394+
404420044
395+
301270212
396396
└────────┴──────────┘
397397

398398
5 rows in set. Elapsed: 0.137 sec. Processed 41.46 million rows, 82.92 MB (302.43 million rows/s., 604.85 MB/s.)
@@ -411,11 +411,11 @@ ORDER BY c DESC
411411
LIMIT 5
412412

413413
┌─Status─┬────────c─┐
414-
20038319300
415-
3041360912
416-
302799340
417-
404420044
418-
301270212
414+
20038319300
415+
3041360912
416+
302799340
417+
404420044
418+
301270212
419419
└────────┴──────────┘
420420

421421
5 rows in set. Elapsed: 0.073 sec. Processed 41.46 million rows, 82.92 MB (565.43 million rows/s., 1.13 GB/s.)
@@ -436,11 +436,11 @@ ORDER BY c DESC
436436
LIMIT 5
437437

438438
┌─Status─┬────────c─┐
439-
20039259996
440-
3041378564
441-
302820118
442-
404429220
443-
301276960
439+
20039259996
440+
3041378564
441+
302820118
442+
404429220
443+
301276960
444444
└────────┴──────────┘
445445

446446
5 rows in set. Elapsed: 0.068 sec. Processed 42.46 million rows, 84.92 MB (620.45 million rows/s., 1.24 GB/s.)

0 commit comments

Comments
 (0)