Skip to content

Commit 77903d6

Browse files
authored
Spec: Fix missing negative in binary/fixed hash examples (#2840)
1 parent 5ca3910 commit 77903d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

site/docs/spec.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -845,8 +845,8 @@ The 32-bit hash implementation is 32-bit Murmur3 hash, x86 variant, seeded with
845845
| **`timestamptz`** | `hashLong(microsecsFromUnixEpoch(v))` | `2017-11-16T14:31:08-08:00``-2047944441` |
846846
| **`string`** | `hashBytes(utf8Bytes(v))` | `iceberg``1210000089` |
847847
| **`uuid`** | `hashBytes(uuidBytes(v))` [3] | `f79c3e09-677c-4bbd-a479-3f349cb785e7``1488055340` |
848-
| **`fixed(L)`** | `hashBytes(v)` | `00 01 02 03``188683207` |
849-
| **`binary`** | `hashBytes(v)` | `00 01 02 03``188683207` |
848+
| **`fixed(L)`** | `hashBytes(v)` | `00 01 02 03``-188683207` |
849+
| **`binary`** | `hashBytes(v)` | `00 01 02 03``-188683207` |
850850

851851
The types below are not currently valid for bucketing, and so are not hashed. However, if that changes and a hash value is needed, the following table shall apply:
852852

0 commit comments

Comments
 (0)