Skip to content

Commit 0afbd56

Browse files
committed
WIP
1 parent 6eb6794 commit 0afbd56

File tree

3 files changed

+0
-20
lines changed

3 files changed

+0
-20
lines changed

coderd/database/dbauthz/dbauthz.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -898,10 +898,6 @@ func (q *querier) customRoleCheck(ctx context.Context, role database.CustomRole)
898898
return nil
899899
}
900900

901-
func (q *querier) GetWorkspaceBuildStats(ctx context.Context, arg database.GetWorkspaceBuildStatsParams) ([]database.GetWorkspaceBuildStatsRow, error) {
902-
panic("not implemented")
903-
}
904-
905901
func (q *querier) AcquireLock(ctx context.Context, id int64) error {
906902
return q.db.AcquireLock(ctx, id)
907903
}

coderd/database/dbmem/dbmem.go

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -991,15 +991,6 @@ func (q *FakeQuerier) getOrganizationByIDNoLock(id uuid.UUID) (database.Organiza
991991
return database.Organization{}, sql.ErrNoRows
992992
}
993993

994-
func (q *FakeQuerier) GetWorkspaceBuildStats(ctx context.Context, arg database.GetWorkspaceBuildStatsParams) ([]database.GetWorkspaceBuildStatsRow, error) {
995-
err := validateDatabaseType(arg)
996-
if err != nil {
997-
return nil, err
998-
}
999-
1000-
panic("not implemented")
1001-
}
1002-
1003994
func (*FakeQuerier) AcquireLock(_ context.Context, _ int64) error {
1004995
return xerrors.New("AcquireLock must only be called within a transaction")
1005996
}

coderd/database/dbmetrics/dbmetrics.go

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

0 commit comments

Comments
 (0)