Skip to content

Instantly share code, notes, and snippets.

View tuarrep's full-sized avatar

Nicolas Perraut tuarrep

View GitHub Profile
@tuarrep
tuarrep / query.sql
Created April 22, 2024 18:48
UUIDv7 polyfill
-- Based off IETF draft, https://datatracker.ietf.org/doc/draft-peabody-dispatch-new-uuid-format/
create or replace function uuid_generate_v7()
returns uuid
as $$
declare
unix_ts_ms bytea;
uuid_bytes bytea;
begin
unix_ts_ms = substring(int8send(floor(extract(epoch from clock_timestamp()) * 1000)::bigint) from 3);