Clean up database/query package

This commit is contained in:
Daniel 2019-09-20 22:01:17 +02:00
parent ac6d9db456
commit 60dea8092f
7 changed files with 37 additions and 39 deletions

View file

@ -28,7 +28,7 @@ func newIntCondition(key string, operator uint8, value interface{}) *intConditio
case int32:
parsedValue = int64(v)
case int64:
parsedValue = int64(v)
parsedValue = v
case uint:
parsedValue = int64(v)
case uint8: