/* Write the bytes of the prefix followed by the child name. */
TupleOutput tupleOutput = new TupleOutput();
tupleOutput.writeFast(prefix.getData(),
prefix.getOffset(),
prefix.getSize());
tupleOutput.writeString(namePart);
/* Return the tuple as an entry. */
DatabaseEntry entry = new DatabaseEntry();
TupleBinding.outputToEntry(tupleOutput, entry);
return entry;