Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
nyurik committed Oct 9, 2023
1 parent 2f1f17d commit 30fa977
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ The hashing window functions will only work if the starting point of the window
```sql
SELECT coalesce(
(SELECT sha256_concat_hex(v)
OVER (ORDER BY zoom_level, tile_column, tile_row ROWS
OVER (ORDER BY v ROWS
BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING)
FROM tiles
FROM tbl
LIMIT 1),
sha256_hex('')
);
Expand Down

0 comments on commit 30fa977

Please # to comment.