Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/bytebase/bytebase
/ equalOrGreater
Function
equalOrGreater
backend/plugin/parser/mysql/restore.go:372–380 ·
view source on GitHub ↗
(a, b *storepb.Position)
Source
from the content-addressed store, hash-verified
370
}
371
372
func
equalOrGreater(a, b *storepb.Position) bool {
373
if
a.Line > b.Line {
374
return
true
375
}
376
if
a.Line == b.Line && a.Column >= b.Column {
377
return
true
378
}
379
return
false
380
}
Callers
1
extractStatement
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected