fix link error about foundationdb

(cherry picked from commit 72ee868729)
This commit is contained in:
fredwang 2024-10-09 02:15:10 +00:00 committed by Fred Wang
parent 00ecc01f52
commit 9a8ca90cdd
1 changed files with 1 additions and 1 deletions

View File

@ -351,7 +351,7 @@ private:
{
MetaCommand cmd = MetaCommand::parse(command);
std::string full_key = name_space.empty() ? cmd.key : Catalog::escapeString(name_space) + '_' + cmd.key;
size_t key_offset = name_space.empty() ? 0 : name_space.size() + 1;
size_t key_offset = name_space.empty() ? 0 : Catalog::escapeString(name_space).size() + 1;
switch (cmd.type)
{
case MetaCommandType::HELP: