MCPcopy Create free account
hub / github.com/apache/arrow / load_null_count

Function load_null_count

cpp/gdb_arrow.py:226–232  ·  view source on GitHub ↗

Load a null count from a gdb.Value of an integer (either atomic or not).

(val)

Source from the content-addressed store, hash-verified

224
225
226def load_null_count(val):
227 """
228 Load a null count from a gdb.Value of an integer (either atomic or not).
229 """
230 if get_basic_type(val.type).code != gdb.TYPE_CODE_INT:
231 val = load_atomic(val)
232 return val
233
234
235def format_null_count(val):

Callers 1

format_null_countFunction · 0.85

Calls 1

load_atomicFunction · 0.85

Tested by

no test coverage detected