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

Method load

base/poco/Util/src/XMLConfiguration.cpp:129–138  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

127
128
129void XMLConfiguration::load(Poco::XML::InputSource* pInputSource, unsigned long namePoolSize)
130{
131 poco_check_ptr (pInputSource);
132
133 Poco::XML::DOMParser parser(namePoolSize);
134 parser.setFeature(Poco::XML::XMLReader::FEATURE_NAMESPACES, false);
135 parser.setFeature(Poco::XML::DOMParser::FEATURE_FILTER_WHITESPACE, true);
136 Poco::XML::AutoPtr<Poco::XML::Document> pDoc = parser.parse(pInputSource);
137 load(pDoc);
138}
139
140
141void XMLConfiguration::load(Poco::XML::InputSource* pInputSource)

Callers

nothing calls this directly

Calls 6

loadFunction · 0.85
documentElementMethod · 0.80
ownerDocumentMethod · 0.80
setFeatureMethod · 0.45
parseMethod · 0.45
nodeTypeMethod · 0.45

Tested by

no test coverage detected