Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'internal/praefect/datastore/repository_store.go')
-rw-r--r--internal/praefect/datastore/repository_store.go7
1 files changed, 0 insertions, 7 deletions
diff --git a/internal/praefect/datastore/repository_store.go b/internal/praefect/datastore/repository_store.go
index 94234cea6..8e750d4d8 100644
--- a/internal/praefect/datastore/repository_store.go
+++ b/internal/praefect/datastore/repository_store.go
@@ -213,7 +213,6 @@ func (rs *PostgresRepositoryStore) MarkStorageUnverified(ctx context.Context, vi
return result.RowsAffected()
}
-//nolint:stylecheck // This is unintentionally missing documentation.
func (rs *PostgresRepositoryStore) GetGeneration(ctx context.Context, repositoryID int64, storage string) (int, error) {
const q = `
SELECT generation
@@ -234,7 +233,6 @@ AND storage = $2
return gen, nil
}
-//nolint:stylecheck // This is unintentionally missing documentation.
func (rs *PostgresRepositoryStore) IncrementGeneration(ctx context.Context, repositoryID int64, primary string, secondaries []string) error {
const q = `
WITH updated_replicas AS (
@@ -288,7 +286,6 @@ SELECT
return nil
}
-//nolint:stylecheck // This is unintentionally missing documentation.
func (rs *PostgresRepositoryStore) SetGeneration(ctx context.Context, repositoryID int64, storage, relativePath string, generation int) error {
const q = `
WITH repository AS (
@@ -352,7 +349,6 @@ ON CONFLICT (virtual_storage, relative_path, storage) DO UPDATE
return nil
}
-//nolint:stylecheck // This is unintentionally missing documentation.
func (rs *PostgresRepositoryStore) GetReplicatedGeneration(ctx context.Context, repositoryID int64, source, target string) (int, error) {
const q = `
SELECT storage, generation
@@ -487,7 +483,6 @@ FROM (
return nil
}
-//nolint:stylecheck // This is unintentionally missing documentation.
func (rs *PostgresRepositoryStore) DeleteRepository(ctx context.Context, virtualStorage, relativePath string) (string, []string, error) {
var (
replicaPath string
@@ -571,7 +566,6 @@ WHERE repository_id = (SELECT repository_id FROM repository)
return nil
}
-//nolint:stylecheck // This is unintentionally missing documentation.
func (rs *PostgresRepositoryStore) RenameRepository(ctx context.Context, virtualStorage, relativePath, storage, newRelativePath string) error {
const q = `
WITH repo AS (
@@ -657,7 +651,6 @@ func (rs *PostgresRepositoryStore) getConsistentStorages(ctx context.Context, qu
return replicaPath, consistentStorages, nil
}
-//nolint:stylecheck // This is unintentionally missing documentation.
func (rs *PostgresRepositoryStore) RepositoryExists(ctx context.Context, virtualStorage, relativePath string) (bool, error) {
const q = `
SELECT true