Skip to content

Commit d55470d

Browse files
Merge pull request ClickHouse#80723 from ClickHouse/alexey-milovidov-patch-8
Update JSON.md
2 parents 3e67eb8 + 9fd23ff commit d55470d

File tree

1 file changed

+2
-2
lines changed
  • docs/en/interfaces/formats/JSON

1 file changed

+2
-2
lines changed

docs/en/interfaces/formats/JSON/JSON.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The `JSON` format returns the following:
2323
| `meta` | Column names and types. |
2424
| `data` | Data tables |
2525
| `rows` | The total number of output rows. |
26-
| `rows_before_limit_at_least` | The minimal number of rows there would have been without LIMIT. Output only if the query contains LIMIT. If the query contains `GROUP BY`, rows_before_limit_at_least is the exact number of rows there would have been without a `LIMIT`. |
26+
| `rows_before_limit_at_least` | The lower estimate of the number of rows there would have been without LIMIT. Output only if the query contains LIMIT. This estimate is calculated from the blocks of data processed in the query pipeline before the limit transform, but could then be discarded by the limit transform. If the blocks didn't even reach the limit transform in the query pipeline, they don't participate in the estimation. |
2727
| `statistics` | Statistics such as `elapsed`, `rows_read`, `bytes_read`. |
2828
| `totals` | Total values (when using WITH TOTALS). |
2929
| `extremes` | Extreme values (when extremes are set to 1). |
@@ -105,4 +105,4 @@ the types from metadata in input data will be compared with the types of the cor
105105
## See Also {#see-also}
106106

107107
- [JSONEachRow](/interfaces/formats/JSONEachRow) format
108-
- [output_format_json_array_of_rows](/operations/settings/settings-formats.md/#output_format_json_array_of_rows) setting
108+
- [output_format_json_array_of_rows](/operations/settings/settings-formats.md/#output_format_json_array_of_rows) setting

0 commit comments

Comments
 (0)