Revert "feat: add docs"

This reverts commit dfe0beb53b.
This commit is contained in:
Robert Schulze 2024-09-26 10:31:20 +00:00
parent 399225dc9c
commit c278b24131
No known key found for this signature in database
GPG Key ID: 26703B55FB13728A

View File

@ -688,36 +688,6 @@ SELECT kostikConsistentHash(16045690984833335023, 2);
└───────────────────────────────────────────────┘
```
## ripeMD160
**Syntax**
```sql
ripeMD160('input')
```
**Parameters**
- `input`: Input string. [String](../data-types/string.md)
**Returned value**
- A [UInt256](../data-types/int-uint.md) hash value of type [FixedString(20)](../data-types/fixedstring.md).
**Example**
Query:
```sql
SELECT hex(ripeMD160('The quick brown fox jumps over the lazy dog'));
```
```response
┌─hex(ripeMD160('The quick brown fox jumps over the lazy dog'))─┐
│ 37F332F68DB77BD9D7EDD4969571AD671CF9DD3B │
└───────────────────────────────────────────────────────────────┘
```
## murmurHash2_32, murmurHash2_64
Produces a [MurmurHash2](https://github.com/aappleby/smhasher) hash value.