mirror of
https://github.com/minio/minio.git
synced 2025-11-06 20:33:07 -05:00
select: fix int overflow of math.MaxInt64 on ARM (#6317)
This commit is contained in:
committed by
Nitish Tiwari
parent
0aee722e3f
commit
8601f29d95
@@ -296,7 +296,7 @@ func TestMyParser(t *testing.T) {
|
||||
if alias != table.alias {
|
||||
t.Error()
|
||||
}
|
||||
if myLimit != table.myLimit {
|
||||
if myLimit != int64(table.myLimit) {
|
||||
t.Error()
|
||||
}
|
||||
if !reflect.DeepEqual(table.aggFuncs, aggFunctionNames) {
|
||||
|
||||
Reference in New Issue
Block a user