-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtuid6.sql
243 lines (213 loc) · 3.87 KB
/
tuid6.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
-- assumes pgcrypto loaded already
-- version 6 of tuid
-- ignores the uuid version bit because nobody actually cares about them.
create or replace function tuid6()
returns uuid as
$$
declare
r bytea;
ts bigint;
ret varchar;
begin
r := gen_random_bytes(10);
ts := extract(epoch from clock_timestamp() at time zone 'utc') * 1000;
ret := lpad(to_hex(ts), 12, '0') ||
lpad(encode(r, 'hex'), 20, '0');
return ret :: uuid;
end;
$$ language plpgsql;
create or replace function tuid6_from_tz(tz timestamptz)
returns uuid
language sql
as
$$
select
case
when tz is null
then null
else
(lpad(to_hex((extract(epoch from tz at time zone 'utc') * 1000) :: bigint), 12, '0') || '00000000000000000000')::uuid
end;
$$;
create or replace function tuid6_tz(tuid uuid)
returns timestamptz
language sql
as
$$
with
t as (
select tuid::varchar as x
)
select
case
when tuid is null
then null
else (
'x'
|| substr(t.x, 1, 8) -- xxxxxxxx-0000-0000-0000-000000000000
|| substr(t.x, 10, 4) -- 00000000-xxxx-0000-0000-000000000000
)::bit(48)::bigint * interval '1 millisecond' + timestamptz 'epoch'
end
from
t;
$$;
create function tz_to_iso(tz timestamp with time zone) returns character varying
language sql
immutable
as
$$
select to_char(tz, 'YYYY-MM-DD"T"HH24:mi:ssZ')
$$;
create function to_b64u(val bytea) returns text
language sql
immutable
as
$$
select replace(translate(encode(val, 'base64'), '/+', '_-'), '=', '');
$$;
create function from_b64u(val text) returns bytea
language sql
immutable
as
$$
select decode(rpad(translate(val, '_-', '/+'), (ceil(length(val)::float8/4.0)*4)::int, '='), 'base64');
$$;
create function tuid6_to_compact(tuid uuid)
returns varchar
language sql
as
$$
select
case
when tuid is null
then null
else
to_b64u(decode(replace(tuid::text, '-', ''), 'hex'))
end;
$$;
create function tuid6_from_compact(compact varchar)
returns uuid
language sql
as
$$
select
case
when compact is null
then null
else
encode(from_b64u(compact), 'hex')::uuid
end;
$$;
create function stuid_to_compact(stuid bytea)
returns varchar
language sql
as
$$
select
case
when stuid is null
then null
else
to_b64u(stuid)
end;
$$;
create function stuid_from_compact(compact varchar)
returns bytea
language sql
as
$$
select
case
when compact is null
then null
else
from_b64u(compact)
end;
$$;
create or replace function stuid()
returns bytea
language plpgsql
as
$$
declare
ct bigint;
ret bytea;
begin
ct := extract(epoch from clock_timestamp() at time zone 'utc') * 1000;
ret := decode(lpad(to_hex(ct), 12, '0'), 'hex') || gen_random_bytes(26);
return ret;
end;
$$;
create function stuid_tz(stuid bytea)
returns timestamptz
language sql
as
$$
select
case
when stuid is null
then null
else
(substr(stuid::text, 2, 13))::bit(48)::bigint * interval '1 millisecond' + timestamptz 'epoch'
end;
$$;
create function tuid_zero()
returns uuid
immutable
language sql as
'select
''00000000-0000-0000-0000-000000000000'' :: uuid';
create function max(uuid, uuid)
returns uuid as
$$
begin
if $1 is null and $2 is null
then
return null;
end if;
if $1 is null
then
return $2;
end if;
if $2 is null
then
return $1;
end if;
if $1 < $2 then
return $2;
end if;
return $1;
end;
$$ language plpgsql;
create aggregate max (uuid)
(
sfunc = max,
stype = uuid
);
create function min(uuid, uuid)
returns uuid as
$$
begin
if $1 is null and $2 is null
then
return null;
end if;
if $1 is null
then
return $2;
end if;
if $2 is null
then
return $1;
end if;
if $1 > $2 then
return $2;
end if;
return $1;
end;
$$ language plpgsql;
create aggregate min (uuid)
(
sfunc = min,
stype = uuid
);