Skip to content

Commit 9dcd38c

Browse files
authored
Merge pull request #9 from AOSC-Dev/fix-list-json
Fix list.json
2 parents 772c78b + 73a124f commit 9dcd38c

File tree

3 files changed

+1
-31
lines changed

3 files changed

+1
-31
lines changed

Cargo.lock

Lines changed: 0 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ tokio = { version = "^1", features = ["macros", "rt-multi-thread"] }
1616
tracing = "0.1"
1717
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
1818
sqlx = { version = "0.6", features = [
19-
"sqlite",
2019
"postgres",
2120
"runtime-tokio-rustls",
2221
"time"

src/sql.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ SELECT
148148
p.commit_time,
149149
p.committer,
150150
dpkg.dpkg_version dpkg_version,
151-
group_concat(DISTINCT dpkg.reponame) dpkg_availrepos,
151+
array_to_string(array_agg(DISTINCT dpkg.reponame), ',') dpkg_availrepos,
152152
coalesce(
153153
CASE
154154
WHEN dpkg.dpkg_version IS NOT null THEN (CASE WHEN

0 commit comments

Comments
 (0)