GoAdminGroup / go-admin

append possibly assigns to a wrong variable CRT-D0001
Bug risk
Minor
2 occurrences in this check
append result not assigned to the same slice
 538		if connection.Name() == db.DriverMssql {
 539			args = append(whereArgs, (params.PageInt-1)*params.PageSizeInt, params.PageInt*params.PageSizeInt)
 540		} else {
 541			args = append(whereArgs, params.PageSizeInt, (params.PageInt-1)*params.PageSizeInt) 542		}
 543	}
 544
append result not assigned to the same slice
 536		}
 537
 538		if connection.Name() == db.DriverMssql {
 539			args = append(whereArgs, (params.PageInt-1)*params.PageSizeInt, params.PageInt*params.PageSizeInt) 540		} else {
 541			args = append(whereArgs, params.PageSizeInt, (params.PageInt-1)*params.PageSizeInt)
 542		}