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

Method run

core/src/main/java/io/questdb/tasks/LatestByTask.java:104–130  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

102 }
103
104 public boolean run() {
105 try {
106 if (!circuitBreaker.checkIfTripped()) {
107 GeoHashNative.latestByAndFilterPrefix(
108 frameMemoryPool,
109 keyBaseAddress,
110 keysMemorySize,
111 valueBaseAddress,
112 valuesMemorySize,
113 argsAddress,
114 unIndexedNullCount,
115 rowHi,
116 rowLo,
117 frameIndex,
118 valueBlockCapacity,
119 hashColumnIndex,
120 hashColumnType,
121 prefixesAddress,
122 prefixesCount
123 );
124 }
125 doneLatch.countDown();
126 return true;
127 } finally {
128 frameMemoryPool.close();
129 }
130 }
131}

Callers 1

doRunMethod · 0.95

Calls 4

checkIfTrippedMethod · 0.65
countDownMethod · 0.65
closeMethod · 0.65

Tested by

no test coverage detected