Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/questdb/questdb
/ checkExtend
Method
checkExtend
core/src/main/java/io/questdb/std/str/Path.java:487–492 ·
view source on GitHub ↗
(int extra)
Source
from the content-addressed store, hash-verified
485
}
486
487
private
void
checkExtend(
int
extra) {
488
int
requiredCapacity = size() + extra;
489
if
(requiredCapacity > capacity) {
490
extend(requiredCapacity);
491
}
492
}
493
494
@NotNull
495
private
Path putByte0(byte b) {
Callers
5
prefix
Method · 0.95
put
Method · 0.95
putAscii
Method · 0.95
putNonAscii
Method · 0.95
zeroPad
Method · 0.95
Calls
2
size
Method · 0.95
extend
Method · 0.95
Tested by
no test coverage detected