Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,17 @@ denoland/deno 31550 12833 2.459 2018-08-03T00:26:45
GitSquared/edex-ui 14151 5797 2.441 2017-10-14T15:55:21
MathewSachin/Captura 3392 1392 2.437 2015-09-12T12:31:42
Aircoookie/WLED 2767 1141 2.425 2017-12-17T08:36:13
tiangolo/fastapi 17962 7474 2.403 2018-12-08T10:05:29
edent/SuperTinyIcons 3747 1559 2.403 2017-11-12T01:57:38
tiangolo/fastapi 17962 7474 2.403 2018-12-08T10:05:29
remoteintech/remote-jobs 6819 2858 2.386 2017-09-09T13:12:05
retejs/rete 2541 1075 2.364 2018-05-31T03:06:05
Anuken/Mindustry 5439 2322 2.342 2017-05-12T17:52:31
Dreamacro/clash 8836 3850 2.295 2018-06-10T14:41:49
debauchee/barrier 5731 2505 2.288 2018-02-23T12:36:21
ryansolid/solid 3249 1433 2.267 2018-05-26T14:28:51
wilsonfreitas/awesome-quant 2362 1053 2.243 2016-05-10T10:19:52
TheAlgorithms/Go 2905 1299 2.236 2017-07-11T04:34:48
JanDeDobbeleer/oh-my-posh 2748 1229 2.236 2018-04-12T04:42:01
TheAlgorithms/Go 2905 1299 2.236 2017-07-11T04:34:48
The-Art-of-Hacking/h4cker 5791 2622 2.209 2018-10-06T12:02:56
TheCherno/Hazel 2852 1292 2.207 2018-10-20T04:01:11
FreeCAD/FreeCAD 3897 1777 2.193 2015-07-04T23:06:13
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ cockroachdb/cockroach 28390 1049
tensorflow/tensorflow 28380 16377
Zhycrin/Time 28104 1
rust-lang/rust 28036 6283
ikedaosushi/tech-news 27774 6
ansible/ansible 27774 13050
ikedaosushi/tech-news 27774 6

Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ cockroachdb/cockroach 28390 1049 21147
tensorflow/tensorflow 28380 16377 173681
Zhycrin/Time 28104 1 1
rust-lang/rust 28036 6283 53027
ikedaosushi/tech-news 27774 6 15
ansible/ansible 27774 13050 51144
ikedaosushi/tech-news 27774 6 15

Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ FROM
) t
GROUP BY repo_name
HAVING (stars > 100) AND (forks > 100)
ORDER BY ratio DESC
ORDER BY ratio DESC, repo_name
LIMIT 50
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ FROM
) t
GROUP BY repo_name
HAVING (min(created_at) <= '2019-01-01 00:00:00') AND (stars2019 >= 1000)
ORDER BY yoy DESC
ORDER BY yoy DESC, repo_name
LIMIT 50
Original file line number Diff line number Diff line change
@@ -1 +1 @@
SELECT repo_name, count() AS c, count(distinct actor_login) AS u FROM github_events WHERE event_type = 'IssuesEvent' AND action = 'opened' GROUP BY repo_name ORDER BY c DESC LIMIT 50
SELECT repo_name, count() AS c, count(distinct actor_login) AS u FROM github_events WHERE event_type = 'IssuesEvent' AND action = 'opened' GROUP BY repo_name ORDER BY c DESC, repo_name LIMIT 50
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ FROM
WHERE event_type IN ('IssuesEvent', 'WatchEvent')
) t
GROUP BY repo_name
ORDER BY c DESC
ORDER BY c DESC, repo_name
LIMIT 50
3 changes: 3 additions & 0 deletions regression-test/suites/query_p0/cache/partition_cache.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ suite("partition_cache") {
"storage_format" = "V2"
)
"""

sql "sync"

sql """ INSERT INTO ${tableName} VALUES
("2022-05-27",0),
("2022-05-28",0),
Expand Down