Skip to content

Commit cbc153a

Browse files
Make minor formatting changes to the SQL
1 parent 218e9cc commit cbc153a

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed
Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
WITH x AS (
2-
SELECT n FROM (VALUES (0),(1),(2),(3),(4),(5),(6),(7),(8),(9)) v(n)
1+
WITH f AS (
2+
SELECT n
3+
FROM (VALUES (0),(1),(2),(3),(4),(5),(6),(7),(8),(9)) v(n)
34
)
4-
SELECT ROW_NUMBER() OVER (ORDER BY (SELECT NULL)) AS rownum, gen_random_uuid() as uuid
5-
FROM x ones, x tens, x hundreds
5+
SELECT ROW_NUMBER() OVER (ORDER BY (SELECT NULL)) AS rownum, gen_random_uuid() AS uuid
6+
FROM f ones, f tens, f hundreds
67
ORDER BY 1;

0 commit comments

Comments
 (0)