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

Method comment

base/poco/XML/src/XMLWriter.cpp:451–459  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

449
450
451void XMLWriter::comment(const XMLChar ch[], int start, int length)
452{
453 if (_unclosedStartTag) closeStartTag();
454 prettyPrint();
455 writeMarkup("<!--");
456 while (length-- > 0) writeXML(ch[start++]);
457 writeMarkup("-->");
458 _contentWritten = false;
459}
460
461
462void XMLWriter::startDTD(const XMLString& name, const XMLString& publicId, const XMLString& systemId)

Callers 9

handleCommentMethod · 0.45
handleCommentMethod · 0.45
CreateDatabaseToStringFunction · 0.45
CONV_FNFunction · 0.45
CreateTableToStringFunction · 0.45
viewsHandleMethod · 0.45
listViewDetailsMethod · 0.45
viewHandleMethod · 0.45
createTableMetadataMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected