Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#pragma once
#include <memory>
namespace DB
{
class ICommand;
using CommandPtr = std::shared_ptr<ICommand>;
}