MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / beginBlr

Method beginBlr

src/common/classes/BlrWriter.cpp:86–96  ·  view source on GitHub ↗

Write out a string of blr as part of a ddl string, as in a view or computed field definition.

Source from the content-addressed store, hash-verified

84
85// Write out a string of blr as part of a ddl string, as in a view or computed field definition.
86void BlrWriter::beginBlr(UCHAR verb)
87{
88 if (verb)
89 appendUChar(verb);
90
91 baseOffset = blrData.getCount();
92
93 // put in a place marker for the size of the blr, since it is unknown
94 appendUShort(0);
95 appendVersion();
96}
97
98// Complete the stuffing of a piece of blr by going back and inserting the length.
99void BlrWriter::endBlr()

Callers

nothing calls this directly

Calls 1

getCountMethod · 0.45

Tested by

no test coverage detected