Remove unused partition_offset_table (#2288)

This commit is contained in:
S7evinK 2022-03-21 10:47:41 +01:00 committed by GitHub
parent e47dfe4786
commit 8336ce972e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 2 additions and 166 deletions

View file

@ -70,8 +70,5 @@ func NewDatabase(dbProperties *config.DatabaseOptions) (*shared.Database, error)
CrossSigningKeysTable: csk,
CrossSigningSigsTable: css,
}
if err = d.PartitionOffsetStatements.Prepare(db, d.Writer, "keyserver"); err != nil {
return nil, err
}
return d, nil
}