Skip to content

Commit 3181838

Browse files
committed
go 1.26
1 parent 116ee36 commit 3181838

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

checks_cfg_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -325,8 +325,7 @@ func configsEqual(a, b *ChecksFileConfig) bool {
325325
}
326326

327327
for j, checkA := range ruleA.Checks {
328-
checkB := ruleB.Checks[j]
329-
if !checksEqual(&checkA, &checkB) {
328+
if !checksEqual(&checkA, new(ruleB.Checks[j])) {
330329
return false
331330
}
332331
}

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/DataBridgeTech/dbqcore
22

3-
go 1.25.0
3+
go 1.26.0
44

55
require (
66
github.com/ClickHouse/clickhouse-go/v2 v2.43.0

0 commit comments

Comments
 (0)