MCPcopy Index your code
hub / github.com/questdb/questdb / append

Method append

core/src/main/java/io/questdb/std/Files.java:101–103  ·  view source on GitHub ↗
(long fd, long address, long len)

Source from the content-addressed store, hash-verified

99 }
100
101 public static long append(long fd, long address, long len) {
102 return append(toOsFd(fd), address, len);
103 }
104
105 public static long ceilPageSize(long size) {
106 return ((size + PAGE_SIZE - 1) / PAGE_SIZE) * PAGE_SIZE;

Callers 8

createTempFileMethod · 0.95
writeRandomFileMethod · 0.95
flushMethod · 0.95
toStdOutMethod · 0.95
appendMethod · 0.95
flushMethod · 0.95

Calls 1

toOsFdMethod · 0.95

Tested by 3

createTempFileMethod · 0.76
writeRandomFileMethod · 0.76