Skip to content

Commit a3f5a92

Browse files
authored
Merge pull request #3 from miketheman/patch-1
fix: remove empty parens
2 parents 35a1b4f + e11fba5 commit a3f5a92

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sql/uuidv7-sql--1.0.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ AS $$
1818
53, 1), 'hex')::uuid;
1919
$$ LANGUAGE sql volatile;
2020

21-
COMMENT ON FUNCTION uuidv7() IS
21+
COMMENT ON FUNCTION uuidv7 IS
2222
'Generate a uuid-v7 value with a 48-bit timestamp (millisecond precision) and 74 bits of randomness';
2323

2424

@@ -42,7 +42,7 @@ AS $$
4242
from (select extract(epoch from $1)*1000 as t_ms) s
4343
$$ LANGUAGE sql volatile;
4444

45-
COMMENT ON FUNCTION uuidv7_sub_ms() IS
45+
COMMENT ON FUNCTION uuidv7_sub_ms IS
4646
'Generate a uuid-v7 value with a 60-bit timestamp (sub-millisecond precision) and 62 bits of randomness';
4747

4848
/* Extract the timestamp in the first 6 bytes of the uuidv7 value.

0 commit comments

Comments
 (0)