Skip to content

Commit 35a10b8

Browse files
committed
remove unknown slices dependency
1 parent 8b68e17 commit 35a10b8

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

example/reference/connector.go

+8-8
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"fmt"
77
"reflect"
88
"regexp"
9-
"slices"
9+
"sort"
1010
"strings"
1111

1212
"github.com/hasura/ndc-sdk-go/connector"
@@ -417,28 +417,28 @@ func evalAggregate(aggregate *schema.Aggregate, paginated []map[string]any) (any
417417
}
418418
}
419419

420-
func evalAggregateFunction(function string, values []any) (*int64, error) {
420+
func evalAggregateFunction(function string, values []any) (*int, error) {
421421
if len(values) == 0 {
422422
return nil, nil
423423
}
424424

425-
var intValues []int64
425+
var intValues []int
426426
for _, value := range values {
427427
switch v := value.(type) {
428428
case int:
429-
intValues = append(intValues, int64(v))
429+
intValues = append(intValues, v)
430430
case int16:
431-
intValues = append(intValues, int64(v))
431+
intValues = append(intValues, int(v))
432432
case int32:
433-
intValues = append(intValues, int64(v))
433+
intValues = append(intValues, int(v))
434434
case int64:
435-
intValues = append(intValues, v)
435+
intValues = append(intValues, int(v))
436436
default:
437437
return nil, schema.BadRequestError(fmt.Sprintf("%s: column is not an integer, got %+v", function, reflect.ValueOf(v).Kind()), nil)
438438
}
439439
}
440440

441-
slices.Sort(intValues)
441+
sort.Ints(intValues)
442442

443443
switch function {
444444
case "min":

0 commit comments

Comments
 (0)