Skip to content

Commit d166b52

Browse files
committed
Standardized panic messages
Signed-off-by: Zach Musgrave <zach@liquidata.co>
1 parent cc348d5 commit d166b52

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

memory/mergeable_index.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,11 +267,11 @@ func (m *MergedIndexLookup) Values(p sql.Partition) (sql.IndexValueIter, error)
267267
}
268268

269269
func (m *MergedIndexLookup) Indexes() []string {
270-
panic("implement me")
270+
panic("not implemented")
271271
}
272272

273273
func (m *MergedIndexLookup) ID() string {
274-
panic("implement me")
274+
panic("not implemented")
275275
}
276276

277277
func or(expressions ...sql.Expression) sql.Expression {

memory/unmergeable_index.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ func (u *UnmergeableIndexLookup) Indexes() []string {
159159
}
160160

161161
func (u *UnmergeableIndex) Has(partition sql.Partition, key ...interface{}) (bool, error) {
162-
panic("unimplemented")
162+
panic("not implemented")
163163
}
164164

165165
func (u *UnmergeableIndex) ID() string {

0 commit comments

Comments
 (0)