aboutsummaryrefslogtreecommitdiffstats
path: root/modules/doctor/dbconsistency.go
diff options
context:
space:
mode:
authorKN4CK3R <admin@oldschoolhack.me>2023-09-23 14:57:39 +0200
committerGitHub <noreply@github.com>2023-09-23 12:57:39 +0000
commitbcb78e70ca81293a705b467e9ce2b77ab04a799e (patch)
tree6bce3e9f68b9d6deab2aa00ad40895e5d2f28cb9 /modules/doctor/dbconsistency.go
parent0ee7cbf725f45650136be45f8e0f74d395f73b5c (diff)
downloadgitea-bcb78e70ca81293a705b467e9ce2b77ab04a799e.tar.gz
gitea-bcb78e70ca81293a705b467e9ce2b77ab04a799e.zip
Quote table `release` in sql queries (#27205)
Fixes #27174 `release` is a reserved keyword in MySql. I can't reproduce the issue on my setup and we have a test for that code but it seems there can be setups where it fails. https://github.com/go-gitea/gitea/blob/a101dbaa7952e359843c6d8303ca24a0e63c865c/tests/integration/repo_activity_test.go#L45-L46
Diffstat (limited to 'modules/doctor/dbconsistency.go')
-rw-r--r--modules/doctor/dbconsistency.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/doctor/dbconsistency.go b/modules/doctor/dbconsistency.go
index 541fc736f4..5486873556 100644
--- a/modules/doctor/dbconsistency.go
+++ b/modules/doctor/dbconsistency.go
@@ -101,7 +101,7 @@ func checkDBConsistency(ctx context.Context, logger log.Logger, autofix bool) er
},
// find releases without existing repository
genericOrphanCheck("Orphaned Releases without existing repository",
- "release", "repository", "release.repo_id=repository.id"),
+ "release", "repository", "`release`.repo_id=repository.id"),
// find pulls without existing issues
genericOrphanCheck("Orphaned PullRequests without existing issue",
"pull_request", "issue", "pull_request.issue_id=issue.id"),