mirror of
https://github.com/simon987/pg_hamming.git
synced 2025-04-21 03:06:46 +00:00
18 lines
314 B
Markdown
18 lines
314 B
Markdown
# PostgreSQL hamming distance
|
|
|
|
Hamming distance for fixed-length `bytea` datatype (8-byte, 32-byte and 128-byte).
|
|
|
|
|
|
### Compiling from source (CMake)
|
|
|
|
```bash
|
|
cmake .
|
|
make
|
|
```
|
|
|
|
Will break catastrophically if function arguments are not exactly the correct length.
|
|
|
|
See [hamming.c](hamming.c) for more information
|
|
|
|
|