Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

handle repository.size column being NULL in migration v263 #28336

Merged
merged 7 commits into from
Dec 5, 2023
Merged
Changes from 5 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
7 changes: 6 additions & 1 deletion models/migrations/v1_21/v263.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,12 @@
return err
}

_, err = sess.Exec(`UPDATE repository SET git_size = size - lfs_size`)
, err = sess.Exec(`UPDATE repository SET size = 0 WHERE size IS NULL`)

Check failure on line 35 in models/migrations/v1_21/v263.go

View workflow job for this annotation

GitHub Actions / lint-backend

syntax error: unexpected comma, expected }) (typecheck)

Check failure on line 35 in models/migrations/v1_21/v263.go

View workflow job for this annotation

GitHub Actions / lint-backend

syntax error: unexpected comma, expected } (typecheck)

Check failure on line 35 in models/migrations/v1_21/v263.go

View workflow job for this annotation

GitHub Actions / lint-backend

expected statement, found ',' (typecheck)

Check failure on line 35 in models/migrations/v1_21/v263.go

View workflow job for this annotation

GitHub Actions / lint-go-gogit

syntax error: unexpected comma, expected }) (typecheck)

Check failure on line 35 in models/migrations/v1_21/v263.go

View workflow job for this annotation

GitHub Actions / lint-go-gogit

syntax error: unexpected comma, expected } (typecheck)

Check failure on line 35 in models/migrations/v1_21/v263.go

View workflow job for this annotation

GitHub Actions / lint-go-gogit

expected statement, found ',' (typecheck)

Check failure on line 35 in models/migrations/v1_21/v263.go

View workflow job for this annotation

GitHub Actions / lint-go-windows

syntax error: unexpected comma, expected }) (typecheck)

Check failure on line 35 in models/migrations/v1_21/v263.go

View workflow job for this annotation

GitHub Actions / lint-go-windows

syntax error: unexpected comma, expected } (typecheck)

Check failure on line 35 in models/migrations/v1_21/v263.go

View workflow job for this annotation

GitHub Actions / lint-go-windows

expected statement, found ',' (typecheck)

Check failure on line 35 in models/migrations/v1_21/v263.go

View workflow job for this annotation

GitHub Actions / test-e2e

syntax error: unexpected comma, expected }

Check failure on line 35 in models/migrations/v1_21/v263.go

View workflow job for this annotation

GitHub Actions / backend

syntax error: unexpected comma, expected }

Check failure on line 35 in models/migrations/v1_21/v263.go

View workflow job for this annotation

GitHub Actions / checks-backend

expected statement, found ','

Check failure on line 35 in models/migrations/v1_21/v263.go

View workflow job for this annotation

GitHub Actions / test-sqlite

syntax error: unexpected comma, expected }

Check failure on line 35 in models/migrations/v1_21/v263.go

View workflow job for this annotation

GitHub Actions / test-pgsql

syntax error: unexpected comma, expected }

Check failure on line 35 in models/migrations/v1_21/v263.go

View workflow job for this annotation

GitHub Actions / test-mssql

syntax error: unexpected comma, expected }

Check failure on line 35 in models/migrations/v1_21/v263.go

View workflow job for this annotation

GitHub Actions / test-mysql

syntax error: unexpected comma, expected }

Check failure on line 35 in models/migrations/v1_21/v263.go

View workflow job for this annotation

GitHub Actions / test-unit

syntax error: unexpected comma, expected }
thenaterhood marked this conversation as resolved.
Show resolved Hide resolved
if err != nil {
return err
}

_, err = sess.Exec(`UPDATE repository SET git_size = size - lfs_size WHERE size > lfs_size`)
if err != nil {
return err
}
Expand Down
Loading