From c877aa5620ebf8df06c601a25b03f79fb75bd092 Mon Sep 17 00:00:00 2001 From: Steven McCanne Date: Sun, 3 Nov 2024 13:55:51 -0800 Subject: [PATCH] add newline before LIMIT for example SQL in README --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8e25837d48..2668bb227a 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,8 @@ from the current GitHub API: FROM 'https://data.gharchive.org/2015-01-01-15.json.gz' |> SELECT union(repo.name) AS repo, actor.login AS user GROUP BY user - ORDER BY len(repo) DESC LIMIT 5 + ORDER BY len(repo) DESC + LIMIT 5 |> FORK ( => FROM f"https://api.github.com/users/${user}" |> SELECT VALUE {user:login,created_at:time(created_at)}