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

Function hasDynamicType

src/DataTypes/DataTypeDynamic.cpp:1058–1065  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1056}
1057
1058bool hasDynamicType(const DataTypePtr & type)
1059{
1060 bool result = false;
1061 auto check = [&](const IDataType & t) { result |= isDynamic(t); };
1062 check(*type);
1063 type->forEachChild(check);
1064 return result;
1065}
1066
1067}

Callers 3

Calls 2

checkFunction · 0.50
forEachChildMethod · 0.45

Tested by

no test coverage detected