Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: uber-go/dosa
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 93e4312b2d0fa38bb440a5112ec562f2a980ae35
Choose a base ref
..
head repository: uber-go/dosa
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 425d52a393b0b9931c673a92dfdd17bda87dabaa
Choose a head ref
Showing with 0 additions and 7 deletions.
  1. +0 −7 connectors/memory/memory.go
7 changes: 0 additions & 7 deletions connectors/memory/memory.go
Original file line number Diff line number Diff line change
@@ -720,19 +720,12 @@ func getStartingPoint(ei *dosa.EntityInfo, token string) (start string, startPar
func isNilInterface(v dosa.FieldValue) bool {
switch v := v.(type) {
case *dosa.UUID:
return v == nil
case *string:
return v == nil
case *int64:
return v == nil
case *int32:
return v == nil
case *float64:
return v == nil
case *[]byte:
return v == nil
case *time.Time:
return v == nil
case *bool:
return v == nil
}