Skip to content

Commit

Permalink
address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
scgkiran committed Jul 29, 2024
1 parent ddac909 commit af108cd
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
---
aggregate_functions:
- name: "count"
description: Count a set of values
description: Count a set of values. Result is returned as a decimal instead of i64.
impls:
- args:
- name: x
Expand All @@ -15,7 +15,7 @@ aggregate_functions:
intermediate: decimal<38,0>
return: decimal<38,0>
- name: "count_star"
description: "Count a set of records (not field referenced)"
description: "Count a set of records (not field referenced). Result is returned as a decimal instead of i64."
impls:
- options:
overflow:
Expand All @@ -30,7 +30,7 @@ aggregate_functions:
HyperLogLog. This function provides an alternative to the COUNT (DISTINCT expression) function, which
returns the exact number of rows that contain distinct values of an expression. APPROX_COUNT_DISTINCT
processes large amounts of data significantly faster than COUNT, with negligible deviation from the exact
result.
result. Result is returned as a decimal instead of i64.
impls:
- args:
- name: x
Expand Down

0 comments on commit af108cd

Please sign in to comment.