MCPcopy Create free account
hub / github.com/ClickHouse/ClickHouse / isNull

Method isNull

base/poco/JSON/src/Array.cpp:125–133  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

123
124
125bool Array::isNull(unsigned int index) const
126{
127 if (index < _values.size())
128 {
129 Dynamic::Var value = _values[index];
130 return value.isEmpty();
131 }
132 return true;
133}
134
135
136bool Array::isObject(unsigned int index) const

Callers 3

createClientSessionMethod · 0.45
findStartMethod · 0.45
setValueMethod · 0.45

Calls 2

sizeMethod · 0.45
isEmptyMethod · 0.45

Tested by

no test coverage detected