Skip to content

Commit

Permalink
Merge pull request #2513 from szarnyasg/update-bitstring-docs
Browse files Browse the repository at this point in the history
Update description of bitstring_agg() functions
  • Loading branch information
szarnyasg committed Mar 17, 2024
2 parents 814fb1d + f106402 commit dc4a94e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/sql/functions/bitstring.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ These aggregate functions are available for `BIT` type.
| `bit_and(arg)` |Returns the bitwise AND operation performed on all bitstrings in a given expression. | `bit_and(A)` |
| `bit_or(arg)` |Returns the bitwise OR operation performed on all bitstrings in a given expression. | `bit_or(A)` |
| `bit_xor(arg)` |Returns the bitwise XOR operation performed on all bitstrings in a given expression. | `bit_xor(A)` |
| `bitstring_agg(arg, min, max)` |Returns a bitstring with bits set for each distinct value. | `bitstring_agg(A, 1, 42)` |
| `bitstring_agg(arg)` |Returns a bitstring with bits set for each distinct value. | `bitstring_agg(A)` |
| `bitstring_agg(arg, min, max)` |Returns a bitstring with bits set for each distinct position defined in `arg`. All positions must be within the range [`min`, `max`] or an "Out of Range Error" will be thrown. | `bitstring_agg(A, 1, 42)` |
| `bitstring_agg(arg)` |Returns a bitstring with bits set for each distinct position defined in `arg`. | `bitstring_agg(A)` |

### Bitstring Aggregation

Expand Down

0 comments on commit dc4a94e

Please sign in to comment.