Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/bytebase/bytebase
/ equalOrGreater
Function
equalOrGreater
backend/plugin/parser/plsql/restore.go:405–413 ·
view source on GitHub ↗
(a, b *storepb.Position)
Source
from the content-addressed store, hash-verified
403
}
404
405
func
equalOrGreater(a, b *storepb.Position) bool {
406
if
a.Line > b.Line {
407
return
true
408
}
409
if
a.Line == b.Line && a.Column >= b.Column {
410
return
true
411
}
412
return
false
413
}
Callers
1
extractSQL
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected