mirror of https://gitee.com/bigwinds/arangodb
Added a dummy to insert External VPackSlice references in AqlItemBlock.
This commit is contained in:
parent
6e7f9ef49c
commit
03dbc4a745
|
@ -134,6 +134,16 @@ class AqlItemBlock {
|
|||
v._type = AqlValue::SHAPED;
|
||||
}
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief fill a slot in the item block with an external VelocyPack value.
|
||||
/// This value should not be freed.
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
void setExternal(size_t index, RegisterId varNr,
|
||||
arangodb::velocypack::Slice external) {
|
||||
THROW_ARANGO_EXCEPTION(TRI_ERROR_NOT_IMPLEMENTED);
|
||||
}
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief eraseValue, erase the current value of a register and freeing it
|
||||
/// if this was the last reference to the value
|
||||
|
|
Loading…
Reference in New Issue