Skip to content

Commit

Permalink
Remove parts reference from tutorial, as that concept is not required…
Browse files Browse the repository at this point in the history
… there.
  • Loading branch information
tom-clickhouse committed Dec 20, 2024
1 parent e0ffdcc commit 6accaf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/en/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ Now that you have a table created, let's add the NYC taxi data. It is in CSV fil
You should see about 2M rows (1,999,657 rows, to be precise).
:::note
Notice how quickly and how few rows ClickHouse had to process to determine the count? You can get back the count in 0.001 seconds with only 6 rows processed. (6 just happens to be the number of **parts** that the `trips` table currently has, and parts know how many rows they have.)
Notice how quickly and how few rows ClickHouse had to process to determine the count? You can get back the count in 0.001 seconds with only 6 rows processed.
:::
4. If you run a query that needs to hit every row, you will notice considerably more rows need to be processed, but the run time is still blazing fast:
Expand Down

0 comments on commit 6accaf7

Please sign in to comment.